2

I have a problem with start ProFTPD.
the command window displays this message when I start ProFTPD.

asil@asil-PC:~$ sudo /opt/lampp/lampp start
Starting XAMPP for Linux 7.0.9-0...
XAMPP: Starting Apache...already running.
XAMPP: Starting MySQL...ok.
XAMPP: Starting ProFTPD...fail.
XAMPP:  Another FTP daemon is already running
ASIL
  • 182

1 Answers1

2

ProFTPD have to access Port 21 as it is service default port and its clearly saying that some other service using that port already.

you can see what service using that port by using , mostly probably another FTP service like vsftpd etc

netstat -peanutl | grep :21

you can kill that service and try starting ProFTPD.

else you can change default port to someother port with syntax in configuration file.

Port <Port_number>

Read this link

Raja G
  • 105,327
  • 107
  • 262
  • 331