Recursion
17-06-2009, 08:49 AM
Hey,
I thought that after installing a couple of teamservers for someone and wanting to get back onto the whole webdesign scene again that I would start off with a simple tutorial :).
For this I will be connecting to a VPS of mine (running CentOS) through SSH using PuTTY (http://chiark.greenend.org.uk/%7Esgtatham/putty/).
You'll want to start by downloading PuTTY from the link above and connecting to your VPS/Server as root.
First of all, you'll want to create a new user for your TeamSpeak server to run from, for security's sake, so what we'll do is create a user called "teamserver" with the home directory of "/home/teamserver":
useradd -d /home/teamserver teamserver
Now, switch to the "teamserver" user and change directory into "teamserver"'s home directory that you set, remember?
su teamserver
cd /home/teamserver
Now we're going to download the core TeamSpeak server files from the TeamSpeak website, you do this with the WGET command, when you do this it will save the .tar.bz2 file into the TeamSpeak home directory:
wget ftp://ftp.freenet.de/pub/4players/teamspeak.org/releases/ts2_server_rc2_20201.tar.bz2
And you'll want to untar them into it's own folder with:
tar -xjf ts2_server_rc2_20201.tar.bz2
Tip! You can just type in "ts2" and then press tab, Linux will then automatically fill in the file name for you!
That's pretty much it for installation, now you'll want to run the server. Remember that change directory command? Then start the server once you're inside the directory, remember, just type "./team" or something, press tab and Linux will fill the file name in so you just finish it off with start:
cd tss2_rc2
./teamspeak2-server_startscript start
Okay, so you can now connect to your TeamSpeak server et all, but you want to get at the Administrator's panel at http://URL:14534 only to find it asks for a password! Oh no! :( But this is easy. When you first ran your server, it created an Admin and SuperAdmin password. To view these just use the following while still in the server directory:
nano server.log
Look for these lines:
http://www.*****.co.uk/teamspeaktut.png
Here you can see it has created "admin" and "superadmin" users, where the yellow blobs are will be your passwords for the TeamSpeak administration panel.
To exit the NANO text editor use CTRL X and press N so that you don't save, you should now have a fully functioning TeamSpeak2 server! :)
If there's anything I have missed or I could do to make this better than please let me know! :)
I thought that after installing a couple of teamservers for someone and wanting to get back onto the whole webdesign scene again that I would start off with a simple tutorial :).
For this I will be connecting to a VPS of mine (running CentOS) through SSH using PuTTY (http://chiark.greenend.org.uk/%7Esgtatham/putty/).
You'll want to start by downloading PuTTY from the link above and connecting to your VPS/Server as root.
First of all, you'll want to create a new user for your TeamSpeak server to run from, for security's sake, so what we'll do is create a user called "teamserver" with the home directory of "/home/teamserver":
useradd -d /home/teamserver teamserver
Now, switch to the "teamserver" user and change directory into "teamserver"'s home directory that you set, remember?
su teamserver
cd /home/teamserver
Now we're going to download the core TeamSpeak server files from the TeamSpeak website, you do this with the WGET command, when you do this it will save the .tar.bz2 file into the TeamSpeak home directory:
wget ftp://ftp.freenet.de/pub/4players/teamspeak.org/releases/ts2_server_rc2_20201.tar.bz2
And you'll want to untar them into it's own folder with:
tar -xjf ts2_server_rc2_20201.tar.bz2
Tip! You can just type in "ts2" and then press tab, Linux will then automatically fill in the file name for you!
That's pretty much it for installation, now you'll want to run the server. Remember that change directory command? Then start the server once you're inside the directory, remember, just type "./team" or something, press tab and Linux will fill the file name in so you just finish it off with start:
cd tss2_rc2
./teamspeak2-server_startscript start
Okay, so you can now connect to your TeamSpeak server et all, but you want to get at the Administrator's panel at http://URL:14534 only to find it asks for a password! Oh no! :( But this is easy. When you first ran your server, it created an Admin and SuperAdmin password. To view these just use the following while still in the server directory:
nano server.log
Look for these lines:
http://www.*****.co.uk/teamspeaktut.png
Here you can see it has created "admin" and "superadmin" users, where the yellow blobs are will be your passwords for the TeamSpeak administration panel.
To exit the NANO text editor use CTRL X and press N so that you don't save, you should now have a fully functioning TeamSpeak2 server! :)
If there's anything I have missed or I could do to make this better than please let me know! :)