1

I am use Ubuntu Linux, and when I run command netstat -lt, then show:

tcp        0      0 *:ftp                   *:*                     LISTEN

then I run command sudo service vsftpd stop, and run command netstat -lt again, the terminal will not show ftp server, but after a while, I am run command netstat -lt again, the terminal will show ftp server again:

tcp        0      0 *:ftp                   *:*                     LISTEN

How strange it is! How can I stop ftp server?

Alfred Huang
  • 17,654
  • 32
  • 118
  • 189

1 Answers1

0

You may have another ftpd service.

Try with this:

# ps -ef | grep ftpd

And search for ftpd daemons.

PCpractico
  • 439
  • 2
  • 9