Yes, Im A N00b To Settin Up Servers To.
ToMMy2DoPE
Join Date: 2004-02-08 Member: 26216Members
<div class="IPBDescription">port help with SSH</div> yeah, so i had my NS 3.0 server going a few minutes ago, and i knew shutting down SSH would turn it off, but i did it anyways. now when i go to reboot it, it gives me this:
Couldn't allocate dedicated server IP port 27015.
Question is, does anyone know the command to get rid of the previous hlds taking up that port?
Couldn't allocate dedicated server IP port 27015.
Question is, does anyone know the command to get rid of the previous hlds taking up that port?
Comments
<!--c1--></div><table border='0' align='center' width='95%' cellpadding='3' cellspacing='1'><tr><td><b>CODE</b> </td></tr><tr><td id='CODE'><!--ec1-->
ps -e | grep hlds
<!--c2--></td></tr></table><div class='postcolor'><!--ec2-->
Which should give you output like this:
<!--c1--></div><table border='0' align='center' width='95%' cellpadding='3' cellspacing='1'><tr><td><b>CODE</b> </td></tr><tr><td id='CODE'><!--ec1-->
6923 pts/0 00:00:00 hlds_run
6938 pts/0 00:59:53 hlds_amd
<!--c2--></td></tr></table><div class='postcolor'><!--ec2-->
and then kill it by PID number:
<!--c1--></div><table border='0' align='center' width='95%' cellpadding='3' cellspacing='1'><tr><td><b>CODE</b> </td></tr><tr><td id='CODE'><!--ec1-->
kill -9 6923
<!--c2--></td></tr></table><div class='postcolor'><!--ec2-->