So I installed TS3 and it seems to stop after giving me admin password but it does not give me a token as its suppose to. Ive reinstalled centos and re-tried a few times and same problem every install! Any suggestions? Its simply not giving me a token.
0 •
Comments
Do you have a license?
- Spam
- Abuse
- Troll
0 • Disagree Agree ThanksO.o
My former wow guild used it free. I guess I didnt even consider needing a license. Is there not a free license for personal use 1 per server up to like 100 slot?
- Spam
- Abuse
- Troll
0 • Disagree Agree Thanks@Zen The license is not required if I remember correctly. @wrhoton Stupid question, but you have enough memory? It seems very strange that TS3 doesn't show you the token.
- Spam
- Abuse
- Troll
0 • Disagree Agree ThanksI'm pretty sure its needed. Go sign up for a non-for-profit 500 slot and they'll email you with a license attached within a few hours, if not they'll ask you more about your reasoning for request and a simple explanation on what you plan on using it for is all that is needed.
I've installed teamspeak countless times and it kicks me off if I don't have my license in the directory.
- Spam
- Abuse
- Troll
0 • Disagree Agree ThanksOriginally I created a vps for myself with 768mb ram then I increased that to 2gb. Im 99% sure we installed it in the past with only 512mb.
So heres what I understand it "should" show
I M P O R T A N T
loginname= "serveradmin", password= "ostsOuyX"
(HOWEVER, its not showing the 2nd part below)
I M P O R T A N T
token=A3Omx+Yy0mKtNMZ7UOa2cLbkEWyB5fwgwLcT5C+A
- Spam
- Abuse
- Troll
0 • Disagree Agree ThanksThat's strange because I've hosted a TS3 server for a friend and I never requested a license and everything was working fine.
@wrhoton Correct. The logs doesn't say anything?
- Spam
- Abuse
- Troll
0 • Disagree Agree ThanksDo you have the right version downloaded?
- Spam
- Abuse
- Troll
0 • Disagree Agree Thanks[#wget teamspeak.gameserver.gamed.de/ts3/releases/3.0.6.1/teamspeak3-server_linux-x86-3.0.6.1.tar.gz #tar zxvf teamspeak3-server_linux-x86-3.0.6.1.tar.gz #cd teamspeak3-server_linux-x86
./ts3server_startscript.sh start
(I also created a user as to not install as admin)
- Spam
- Abuse
- Troll
0 • Disagree Agree ThanksTS3 server uses shared memory to make sure that you're only running one server if you're using it without a license. So you need a tmpfs mounted at /dev/shm. Run the following as root:
mount -t tmpfs tmpfs /dev/shmIt should work fine after that. Add
tmpfs /dev/shm tmpfs defaults 0 0to your /etc/fstab file to have it automatically mounted at boot.Unless otherwise specified, opinions posted are my own, not those of any person or company I work for
- Spam
- Abuse
- Troll
0 • Disagree Agree ThanksAnother idea that might help you is, I've found that if the permissions aren't exactly 777 problems like this occur.
Another thing Ive found is, although the server says not to run it as root, if you don't, it may not work.
I know it's weird, but its just something that I have seen in the past.
Chmod the directory and all files to 777, run as root, and post results.
(Make sure it's a fresh install and has not been run by any other user!)
- Spam
- Abuse
- Troll
0 • Disagree Agree ThanksTeamspeak 3 will run fine on 128mb (probably even far less) and you don't need a license.
- Spam
- Abuse
- Troll
0 • Disagree Agree Thanks@gsrdgrdghd is right.
I'm currenty running one on a YDGH vps. Just download, extract, chmod, run as root and pastie results here.
- Spam
- Abuse
- Troll
0 • Disagree Agree ThanksMaybe thats what im doing wrong is the chmod.. Im a newb when it comes to linux/ssh... Corey handles most of the 'actual' tech side. I handle basic support/customer service/sales/billing/advertising ect...
Here is all I have been running (on a fresh centos install)
[
wget teamspeak.gameserver.gamed.de/ts3/releases/3.0.6.1/teamspeak3-server_linux-x86-3.0.6.1.tar.gz
tar zxvf teamspeak3-server_linux-x86-3.0.6.1.tar.gz
cd teamspeak3-server_linux-x86
./ts3server_startscript.sh start ]
So it seems I am missing the chmod step O.o
- Spam
- Abuse
- Troll
0 • Disagree Agree ThanksThere should be a log file in the teamspeak logs directory. What does that say about the issue?
Unless otherwise specified, opinions posted are my own, not those of any person or company I work for
- Spam
- Abuse
- Troll
0 • Disagree Agree Thanksdont run as root.
i have some essential telnet commands for teamspeak here:
http://sjc.lt/u
- Spam
- Abuse
- Troll
0 • Disagree Agree ThanksIf it starts i don't think the chmod is set wrong. Have you tried a different distro?
btw many people do the first start with the minimal script:
./ts3server_minimal_runscript.sh createinifile=1- Spam
- Abuse
- Troll
0 • Disagree Agree Thanksshouldn't be the distro. I've ran ts3 on centos before. paste the whole shebang here when you try to run the startscript:
http://pastie.org
- Spam
- Abuse
- Troll
0 • Disagree Agree Thanksusing minimal runscript :
2012-08-06 11:12:12.578056|WARNING |Accounting | | Unable to find valid lic ense key, falling back to limited functionality 2012-08-06 11:12:12.578698|ERROR |Accounting | | failed to register local accounting service 2012-08-06 11:12:12.578733|ERROR |ServerLibPriv | | Server() error while sta rting servermanager, error: instance check error
- Spam
- Abuse
- Troll
0 • Disagree Agree ThanksYeah... do what I said in my first post, it should fix your problem right up.
Unless otherwise specified, opinions posted are my own, not those of any person or company I work for
- Spam
- Abuse
- Troll
0 • Disagree Agree ThanksI received same error last time and this time when doing what your post said:
[root@twisted teamspeak3-server_linux-x86]# mount -t tmpfs tmpfs /dev/shm mount: mount point /dev/shm does not exist [root@twisted teamspeak3-server_linux-x86]# cd / [root@twisted /]# mount -t tmpfs tmpfs /dev/shm mount: mount point /dev/shm does not exist [root@twisted /]#
- Spam
- Abuse
- Troll
0 • Disagree Agree ThanksCreate /dev/shm then.
mkdir /dev/shmthenmount -t tmpfs tmpfs /dev/shmUnless otherwise specified, opinions posted are my own, not those of any person or company I work for
- Spam
- Abuse
- Troll
0 • Disagree Agree Thankscan you
ls -lthe teamspeak dir and paste it here? Do you have the licensekey.dat file?- Spam
- Abuse
- Troll
0 • Disagree Agree ThanksNickM that seems to have done the trick! :)
gsrdgrdghd I also used the minimal as you suggested!
Thanks to everyone here who posted very much appreciated.
- Spam
- Abuse
- Troll
0 • Disagree Agree ThanksYou don't need a licensekey.dat file unless you're actually using a license. Without a license, you can have up to 32 people on at a time.
Unless otherwise specified, opinions posted are my own, not those of any person or company I work for
- Spam
- Abuse
- Troll
0 • Disagree Agree ThanksGreat! Don't forget to add it to your fstab so that the tmpfs gets mounted automatically after a reboot.
Unless otherwise specified, opinions posted are my own, not those of any person or company I work for
- Spam
- Abuse
- Troll
0 • Disagree Agree ThanksI should be able to simply connect now right? It gave me the token but now its still saying error connecting (using teamspeak3 client)
- Spam
- Abuse
- Troll
0 • Disagree Agree Thanksare you using the right port? Is that port blocked?
- Spam
- Abuse
- Troll
0 • Disagree Agree ThanksNo ports blocked, using default port 9987
- Spam
- Abuse
- Troll
0 • Disagree Agree Thankshttp://pastie.org/4399288
Trying to connect to 108.166.185.12:9987
- Spam
- Abuse
- Troll
0 • Disagree Agree ThanksYeah you should be able to connect to the server right away. If you want, you can PM me your server's IP and I can try connecting.
EDIT: From the log you posted, it looks like you exited the server. Use ts3server_startscript.sh instead of the minimal one, and it should fork to the background.
Unless otherwise specified, opinions posted are my own, not those of any person or company I work for
- Spam
- Abuse
- Troll
0 • Disagree Agree Thanks