In this tutorial, we’ll learn how to set up a Just Cause 2 multiplayer server.
Please be sure the system is fully updated before we get started. Afterwards, we’ll be creating a new user for the server. Make sure to use a password that is tough!
yum update -y
adduser jcmp
passwd jcmpLet us also open the necessary firewall ports.
firewall-cmd --zone=public --add-port=7777/udp --permanent
firewall-cmd --reloadNow we can install the required libs to run SteamCMD.
yum install glibc.i686 libstdc++.i686 -ySwitch to the user that we just created.
su jcmp
cd ~Time to download SteamCMD.
wget https://steamcdn-a.akamaihd.net/client/installer/steamcmd_linux.tar.gz
tar xf steamcmd_linux.tar.gzRun SteamCMD and install the server files.
./steamcmd.sh +login anonymous +force_install_dir ./jcmp +app_update 261140 validate +quitUpon success, the screen will read Success! App '261140' is fully installed.
Want to customize the name, description, and also the slots of the server?
To change the name of your server, edit the file default_config.lua.
nano ~/jcmp/default_config.luaTo change the name of your server, go to the line 28 and change it JC2-MP Server to your liking. I suggest that you change the player count and set an admin password, also, to minimize the potential lag on your server, and to administrate it correctly.
When you’re done editing the config, rename it to config.lua.
mv default_config.lua config.luaWhen it's time to update your server, because of Steam updates, there is an easy solution. First, create the file update_jcmp.txt.
nano /home/jcmp/update_jcmp.txtPopulate the following data.
login anonymous
force_install_dir ./jcmp
app_update 261140
quitNow, to update your server, simply run the following command:
cd ~
./steamcmd.sh +runscript update_jcmp.txtNavigate to the following folder and run your server.
cd /home/jcmp/jcmp
screen -dmS jcmp ./Jcmp-ServerThe server is now running in the background. To shut down the server, use the following command:
screen -S jcmp -X quitAnd that’s it! Enjoy your server!