• Inviting everyone who uses WordPress management tools in Plesk
    The Plesk team is conducting a 60-minute research session that includes an interview and a moderated usability test.
    To participate, please use this link .
    Your experience will help shape product decisions and ensure the tools better support real-world use cases.

FTP service not available

J

Jerry Salvador

Guest
To all,

Need your help. I'm using Plesk 8.0 for linux. All the time, all services were working but
last Mar.2,2009 I encountered this error everytime ftp session was requested.

# ftp <server name>
Connected to *******.
- unknown option: a
Name (server name:jerry):

Everytime I entered my username it shows.

Name (server name:jerry): jerry
usage: proftpd [options]
Login failed.

ftp> bye
421 Service not available, remote server has closed connection

Already restarted inetd, as well as psa and the entire server.


What else do I need to check.

Please advise.

Thank you very much.
 
if inetd not working try to use the proftp

edit /etc/proftpd.conf

change Servetype from inetd to Standalone

kill first the current ftp process

linux:# lsof -i tcp:21
COMMAND PID USER FD TYPE DEVICE SIZE NODE NAME
inetd 25261 root 0u IPv4 452954 TCP *:ftp (LISTEN)

linux:# kill 25261

then run the proftp

linux:# /usr/sbin/proftpd

it should work...
 
Back
Top