PDA

View Full Version : Trying to stop a server


TheSavior
18-06-2006, 19:05
I have installed the server on freebsd. Then i wanted to stop it, and stupidly enough, i just deleted the directory. I reinstalled teamspeak and it says the server is running, i use the command:
sh teamspeak2-server_startscript stop

but it says that there is no server running
then i used:
sh teamspeak2-server_startscript start

and it said there was already a server running.

Any ideas how to fix this?

Express
19-06-2006, 03:16
Here is what you do:
ps aux|grep server_linux
user 7531 0.0. 0.1 20765 1944 ? SM 02:08 0:00 ./server_linux -P
user 14422 0.0. 0.0 1452 352 pts/1 S 03:12 0:00 grep server_linux
It is the first line you will stop from running:

kill 7531
You will now be able to use

./teamspeak2-server_startscript start

Hope this works for you aswell :)

TheSavior
19-06-2006, 05:40
yep, thanks