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.
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":
Now, switch to the "teamserver" user and change directory into "teamserver"'s home directory that you set, remember?Code:useradd -d /home/teamserver 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:Code:su teamserver cd /home/teamserver
And you'll want to untar them into it's own folder with:Code:wget ftp://ftp.freenet.de/pub/4players/teamspeak.org/releases/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!Code:tar -xjf ts2_server_rc2_20201.tar.bz2
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:
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!Code:cd tss2_rc2 ./teamspeak2-server_startscript startBut 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:
Look for these lines:Code:nano server.log
[IMG]http://www.*****.co.uk/teamspeaktut.png[/IMG]
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!![]()






.
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:
Reply With Quote




Nice tutorial for those new to linux out there, however there are thousands on the internet.

