Run your own virtual server

From OBEY wiki
Revision as of 22:55, 26 February 2015 by Dez (Talk | contribs) (Step 3) Set up the server: correction to url)

Jump to: navigation, search

Are you a lazy bum that has no money? Me too! :D
Did you know you can run a virtual OBEY server for about as much money as you find on a sidewalk ?

Perfect... here's how!


Step 1) Register on a service

Make an account on DigitalOcean.com <-- follow this link to register, you will start with $10 in credit!

You will need to register a credit card to start an account (this protects them from anyone running 100 servers 24/7 for no reason).


Step 2) Create a new droplet.

VirtualServerHowTo1.jpeg
- Select at least 2 CPU for a decent multiplayer server.

- Select a region closest to where you want the best ping to occur

- Select Ubuntu (other distros probably work just fine too, but I haven't tested them)

- click "Create Droplet"


Step 3) Set up the server

- Select your droplet (every droplet is a server).
- Go to Access Tab, and click on Console Access
VirtualServerHowTo2.jpg


- When you see the black screen type root as a username and press enter
- Then check your email to type the password you should have received in the mail.
- Enter it and set a new one as prompted.
VirtualServerHowTo3.jpg

sudo apt-get install unzip //install zip/unzip functionality with this

adduser userName //make a new user (not good practice to do everything as root). it will ask you for details about the user, but you can leave the options blank by pressing <enter>. Then...
logout

and then log back in now as the user you just created (as will be good practice from now on)

mkdir OBEY21r0 //let's make a folder in the new user's home dir to contain the build we want to use

cd OBEY21r0 //navigate to the directory

wget http://www.obeygame.com/build/OBEY21r0_server.zip //download OBEY into it

unzip OBEY21r0_serer.zip //and unzip it

rm OBEY21r0_server.zip //(optional) if you want to delete the zip we downloaded, we don't need it anymore

Use nano text editor to configure your server settings...

nano serverSettings.txt //use ctrl + o (and press enter) to SAVE and ctrl + x to EXIT

Step 4) start a server

Then, from the directory where you have unzipped the build...

sh RUN_SERVER.sh

VirtualServerHowTo4.jpg
When you see this screen your server is now running!


HOW TO RUN SERVERS FOR MERE CENTS!!!

Now digitalocean.com charges us 3 cents an hour to run our server (running it constantly will come to $20 a month).
Every bunny knows that's a LOT of money (thats like 2 dropships!).

So to keep costs ultra low we just run the server when we want it.
digitalocean.com will charge us as long as we have a droplet (even if it's shut down), so to save money we delete our droplets when we don't want to be charged anything.
Now if we do that right now we will lose all our settings, so in order to not have to go through the setup again we create a snapshot.

logout
log back in as 'root'...
poweroff //shut down the server (droplet)

Then save a snapshot as shown (name it whatever you want)
...it might take 1 or 2 minutes to save.
VirtualServerHowTo5.jpg

Then we can delete our droplet to not be charged any cents!
VirtualServerHowTo6.jpg

When you want to start the server again start a new droplet, except this time use your snapshot!
VirtualServerHowTo7.jpg

log in
cd OBEY21r0 //Navigate to the location of OBEY
sh RUN_SERVER.sh //KILL BUNNIES

You can even run more than one at once now (at 3 cents per hour)

PRO-TIPS:

if you make a mistake use the command rm to delete stuff. For example:

rm fileName will delete fileName (rm = remove)

rm -r someDir/* will delete everything inside someDir recursively (be careful!)

pwd shows you where you are (pwd = present working directory)

ls shows you the contents of where you are (ls = list)

cd someDir climbs into someDir (cd = change directory)

cd .. climbs UP a directory level

- You can press TAB to auto-complete file and dir names

- If you are on Windows, check out PuTTy to log in, it's better than using the interface on the website, because you can copy/paste and it won't use bandwidth.

- NOTE: if you get an error that looks like "OBEY.x86 not found" when you try to run the server, it means you are are running a 32bit app on a 64bit os or visa versa

- You can add the new user to the 'super user' group so he can run admin tasks on the server instead of having to log in as root:

gpasswd -a userName sudo