Linux Server

From GTA Connected
Revision as of 08:20, 8 July 2019 by Vortrex (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Downloading the Server

You'll need to download the linux server to your host before you can run it. You can do this by either making the host download it with something like wget, or download it from our downloads page, then upload it to your linux host via FTP or SFTP or similar protocol.

If you want to download it directly to the linux host, you can use wget. On the downloads page, find the linux server link, and right click it, and choose Copy Link Location or Copy Link. Your browser may have a different text for this option. Then, in your SSH terminal (we recommend putty, if you're on Windows) use wget SERVER_URL_HERE, replacing SERVER_URL_HERE with the link you copied of course. You can then unzip it with your linux hosts's tar command. Please see your distro's documentation or man pages for information on the tar command if you need help.

Running the Server

First, you'll need to make sure the required dependencies are installed. See the dependencies section below for more information on that.

After you have the dependencies installed, in order to run the server executable you need to first make sure it has execute permissions. To do this, use the command chmod +x Server from within your server's main directory. Once you have set execute permissions for the server executable, you may start the server with ./Server. This is the simplest way to run the server.

However, once you terminate your SSH connection to the server host, the GTAC server will stop running. To keep the server running, you can either nohup or use screen. There are other ways to keep the server running, but those two are the most common. Please refer to your distro's documentation for information information and/or examples available on using nohup and screen.

Dependencies

The linux server currently depends on OpenSSL and libcurl. The list here shows the required commands for a few linux distributions:

Debian/Ubuntu apt install openssl curl
RedHat/Fedora dnf install openssl curl
CentOS yum install openssl curl
openSUSE zypper install openssl curl
Arch Linux pacman -S openssl curl

Please note: you may or may not need to use sudo to install these, depending on your system configuration and current user permissions.

Server Manual

You can find the main server manual (applies to both Linux and Windows servers) on the server manual