Loginserver and gameserver process on linux

Have you created a useful tool? or Do you want to get help building one? This is the right place!
Forum rules
READ NOW: L2j Forums Rules of Conduct
Post Reply
User avatar
NoGeRa
Posts: 26
Joined: Wed Jun 24, 2009 9:23 pm
Location: Chile

Loginserver and gameserver process on linux

Post by NoGeRa »

Hi guys!!

I run l2jserver on linux(debian lenny) and this work fine, but if I want to shutdown the server I need to find the server's process and killing then, this work is a complicated.

there any way to close those processes faster and easier to find by console to kill them?

Sorry for my bad english.
User avatar
poltomb
L2j Veteran
L2j Veteran
Posts: 225
Joined: Wed Jul 13, 2005 7:13 am
Location: USA

Re: Loginserver and gameserver process on linux

Post by poltomb »

telnet
Vapulabe
Posts: 271
Joined: Wed Mar 19, 2008 10:16 am

Re: Loginserver and gameserver process on linux

Post by Vapulabe »

if you don't have any other java application : killall -HUP java ; sleep 30 ; killall java ; sleep 30 ; killall -KILL java

I don't know if L2J exists cleanly when it gets a SIGHUP or a SIGTERM... let L2J expert decide...

But when I stop it, it's usually because it leaked too much memory and don't respond... neither ingame nor to telnets.
blacksea
Posts: 458
Joined: Fri Oct 05, 2007 1:29 am

Re: Loginserver and gameserver process on linux

Post by blacksea »

telnet its best.. if you didnt config telnet use "ps aux" see "pid" and after "kill -9 pid"
User avatar
NoGeRa
Posts: 26
Joined: Wed Jun 24, 2009 9:23 pm
Location: Chile

Re: Loginserver and gameserver process on linux

Post by NoGeRa »

Ok, thx a lot =D
Post Reply