Starting your first server: Difference between revisions

From Vice City Multiplayer
Jump to navigation Jump to search
Caution icon
This wiki is using an old backup from 2020
Some information may be old/missing
mNo edit summary
(There's a reason we don't just tell people how to run the server as root)
Line 46: Line 46:
* 7. Run the server using <pre>./mpsvrrel64</pre> For 32bit: <pre>./mpsvrrel32</pre>
* 7. Run the server using <pre>./mpsvrrel64</pre> For 32bit: <pre>./mpsvrrel32</pre>
To keep the server running after closing the terminal we'll use screen: <pre>screen ./mpsvrrel64</pre> For 32 bit: <pre>screen ./mpsvrrel32</pre>
To keep the server running after closing the terminal we'll use screen: <pre>screen ./mpsvrrel64</pre> For 32 bit: <pre>screen ./mpsvrrel32</pre>
IF YOU'RE THE ROOT USER USE <pre>screen ./mpsvrrel64 -allow-server-runas-root</pre>
TO CREATE A NEW DIRECTORY: mkdir vcmpserver
TO CREATE A NEW DIRECTORY: mkdir vcmpserver
IF YOU CAN'T UNZIP: sudo apt-get install unzip
IF YOU CAN'T UNZIP: sudo apt-get install unzip
</div>
</div>
|}
|}

Revision as of 07:24, 17 February 2015

Windows Server

Learn how to start a Windows server following these simple steps.


Linux Server

Learn how to start a Linux server following these simple steps.

  • 1. Open terminal.
  • 2. Locate the directory you want to extract the server
     cd /home/vcmpserver/
  • 3. Download the x64 server by pasting this in the terminal:
    wget https://s15.solidfilesusercontent.com/ZmZhODEzZjc0YTlmYTgxYmU1NjczMGYwNGFmZGMyZGQ5MjJiMTJjZToxWGt2SGE6TndoTW1hTF9jSGs3bVVObklsMUltMmlhZkJ3/d85d767723/vcmp04linux64.zip
Download the x86 server by pasting this in the terminal
wget https://s3.solidfilesusercontent.com/NDAwODdhNGRkNjI2MDFhMjAyZmMzM2QyMzllMmNhMGY1ZjNiNjU4ZDoxWGt2TGE6WkxpVC00Mk1WRTkxclVyMlBvemNjekFKdy1J/8d0f9b7fef/vcmp04linux32.zip
  • 4. Unzip the server by typing:
     unzip vcmp04linux64.zip
    For 32 bit:
     unzip vcmp04linux32.zip
  • 5. Open the server.conf file and change the server name using:
     nano server.conf
  • 6. Set permissions using
     chmod +x ./mpsvrrel64
    For 32 bit:
    .mpsvrrel64
  • 7. Run the server using
    ./mpsvrrel64
    For 32bit:
    ./mpsvrrel32
To keep the server running after closing the terminal we'll use screen:
screen ./mpsvrrel64
For 32 bit:
screen ./mpsvrrel32

TO CREATE A NEW DIRECTORY: mkdir vcmpserver IF YOU CAN'T UNZIP: sudo apt-get install unzip