• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS.

Why do I need to kill a process before I use proftpd?

T

thedust2010

Guest
Every time our server restarts we can't log in to FTP on our web server. To fix the problem, I use the command:

netstat -pant

Then I'll see a list of active processes:

tcp 0 0 0.0.0.0:143 0.0.0.0:* LISTEN 2102/couriertcpd
tcp 0 0 0.0.0.0:111 0.0.0.0:* LISTEN 1946/portmap
tcp 0 0 0.0.0.0:465 0.0.0.0:* LISTEN 2230/xinetd
tcp 0 0 0.0.0.0:21 0.0.0.0:* LISTEN 2230/xinetd
tcp 0 0 206.57.25.70:53 0.0.0.0:* LISTEN 2176/named
tcp 0 0 206.57.25.69:53 0.0.0.0:* LISTEN 2176/named

I'll then kill the process that is using port 21:

kill 2230

And then everything works fine. But why is this?? Anyone know why this is happening?
 
Back
Top