fugasjunior / arma-server-manager

A web administration tool for managing Arma 3, Arma Reforger and DayZ dedicated servers
GNU General Public License v3.0
52 stars 11 forks source link

How to add additional parameters #88

Closed jcastroa87 closed 9 months ago

jcastroa87 commented 9 months ago

Hello, thanks for this wonderful project.

I have a few problems to running server with mods, im trying to migrate a Windows Server to running on Ubuntu Server, on vanilla works normal, but when i try to replicate parameters, im not sure if im doing correctly, per example, on Windows we add parameters like this:

-hugePages -enableHT -maxMem=8124 -limitFPS=50 -name=serverProfile -bandwidthAlg=2 -loadMissionToMemory -malloc=mimalloc_v212

in Ubuntu i try to add like this:

hugePages=y;enableHT=y;limitFPS=50;loadMissionToMemory=y;malloc=mimalloc_v212;steamProtocolMaxDataSize=2048;
image

Thanks

fugasjunior commented 9 months ago

Hello, I believe what you're trying to do is to set the server launch parameters, which cannot be done in the "Additional options" field.

The additional options field (and all the fields before that) are used to generate the server config file. What you're trying to do is to set startup parameters.

This unfortunately cannot be done in the stable version of the manager. You could however try the v1.1.2-beta version which allows you to specify startup parameters. You might encounter some other problems as it's a beta version, but I'm trying to get to releasing a new stable version soon.

In your case, the settings could look something like this (you can ignore the "Additional options" field): image

jcastroa87 commented 9 months ago

Thanks a lot