-
pure-ftpd qustion
Hi people!
We have pure-ftp server running on our linux machine. What I would like to know is if I can kick some user connected to this ftp server and if so how? I've tried to find this in man but haven't succeded. Anyone can help??
Thanx in advance.
-
try:
ps -ef | grep <username>
There should be an entry like:
<username> 6666 2222 0 00:00 00:00:00 /usr/sbin/ftpd
and kill the PID:
kill 6666
-
Question:
Is it kill 6666 or kill -9 6666?
-
Quote:
Originally posted here by Infiltrator
Question:
Is it kill 6666 or kill -9 6666?
kill -9 is kill with extreme predjudice :D
Try it without the -9 first & then with it if it didn't work
Steve
-
thanx
Thank you SoggyBottom.. It works perfectly:)