How do I kill amuleweb?
I don't think of amuleweb forking on crash or quit as a good workaround for it's stabilty problem. How do I kill it? Take a look at this:
user@host:~/bin/bin $ ps x | grep amuleweb
22420 pts/4 Sl+ 0:00 ./amuleweb
user@host:~/bin/bin $ kill -9 22420
user@host:~/bin/bin $ ps x | grep amuleweb
22424 pts/4 Sl+ 0:00 ./amuleweb
user@host:~/bin/bin $ killall amuleweb
user@host:~/bin/bin $ ps x | grep amuleweb
22429 pts/4 Sl+ 0:00 ./amuleweb
user@host:~/bin/bin $
What the?!
I also had amuled crashing, and without the daemon running, amuleweb goes nuts!
user@host:~/bin/bin $ while true; do ps x | grep amuleweb; sleep 1; done
19727 pts/4 R+ 0:00 ./amuleweb
19775 pts/4 R+ 0:00 ./amuleweb
19824 pts/4 R+ 0:00 ./amuleweb
19873 pts/4 R+ 0:00 ./amuleweb
19922 pts/4 R+ 0:00 ./amuleweb
19970 pts/4 R+ 0:00 ./amuleweb
20019 pts/4 R+ 0:00 ./amuleweb
20067 pts/4 R+ 0:00 ./amuleweb
[..]
So, how do kill the amuleweb processes?
edit: typo