If you cannot cannot to FTP server or cannot FTP to the web host managed by cPanel/WHM (WebHost Manager), most like the FTP connection fails because the FTP server is not running on the server. There are a few troubleshooting steps that can be taken to verify this problem.

  1. Log into your server using SSH.
  2. At the command line shell, type su – or su – root to have root access, if your server forbids direct login by root.
  3. Run the following command:
    ftp localhost
  4. You will likely see the following fail message:

    ftp:connect:Connection refused

    This most likely mean that FTP server is not running, or the process has stalled and hanged. In this case, try to restart FTP server. WHM’s Restart Services section has the GUI restart button to easily restart FTP service. Beside, ensure that ftpd service is not disabled in Service Manager.

    If you manage to see login prompt and the FTP command connected to localhost(127.0.0.1), the unable to FTP error may be due to the firewall setting or IPTABLES configuration. If you recently made any changes to firewall, undo them to see if problem persists.

  5. You can also manually check if FTP server is running or not, and which port it’s listening to. In typical cPanel environment, normally the Pure-FTPd is installed as FTP server. So to check if Pure-FTPd is running, issue the following command:
    service pure-ftpd status

    You should see something like below if FTP server is running:


    pure-ftpd (pid 3302) is running...
    +------+---------+-------+------+--------------
    | PID | Login |For/Spd| What | File/IP |
    +------+---------+-------+------+--------------

  6. To verify which port Pure-FTPd is listening to, type following command. Normally FTP server should listen to port 21.
    lsof-i tcp:21

    You should see something similar to the following text:


    COMMAND PID USER FD TYPE DEVICE SIZE NODE NAME
    pure-ftpd 3302 root 4u IPv4 574378144 TCP *:ftp (LISTEN)

  7. If the remote FTP connection fails problem still exists, try to check the error for any hint on possible cause. To check the errors log for all message related to FTP, use following commands:
    less /var/log/messages | grep pure-ftpd
  8. You can now try to troubleshoot the errors, if any, that mentioned in the log file.