Open Avskum opened 2 weeks ago
I've had this happen twice - once when the mod was causing the server to instantly crash on start and then the manager would retry always (you can check the error logs for this). The other case is when the mod pbo wasn't properly published to steam so the manager couldn't copy the files and the server would fail to start. You just gotta look at the logs / remove that mod if its causing trouble.
I have noticed, especially with sakhal, most mods will not work or will require a wipe to deploy. Each time I make a change I also have to set facl's to get consistent results. The mgmt app seems to get windosey and puts things in a group called "users" which is common in windows, so you need to create that group on the linux server, and add all of your users into it, the dayz user included.
sudo bash
#add user group and add users into it
groupadd users
usermod -a -G users <your user name>
usermod -a -G users dayz
#kill server manager
systemctl disable dayz-server-manager.service && systemctl stop dayz-server-manager.service
#kill dayzserver process using htop
#make changes, economy, mod etc, remove storage folder if wipe is required**
** rm -R /storage-1 in your running mission folder
systemctl enable dayz-server-manager.service && systemctl start dayz-server-manager.service
#wait 60 seconds, then run the command below
chmod -R 777 /dayz && chown -R dayz:dayz /dayz && setfacl -m g:users:rwx -R /dayz && setfacl -m g:<your users group name here>:rwx -R /dayz && setfacl -m g:dayz:rwx -R /dayz
#check status, if good open server manager
systemctl status dayz-server-manager.service
I added mod via GUI and its in config properly, sadly the server is not starting and is in endless loop.