Hi all. I am setting up VSFTP on my 'node, and I have the server up and running and responding to connections, but I am having an issue with logins. I have the .conf file set to allow no anonymous, but to allow local accounts to auth. I can ssh into my 'node, and the root login for instance works fine, but when I try to ftp in with any account, vsftp dumps me with a 530 login error when I am FOR SURE using the correct local login...
Here is my vsftpd.conf:
Code:
#
#VSFTPD Configuration (modified 09/30/05)
#
#
# User Level (anonymous vs. local):
anonymous_enable=NO
local_enable=YES
#
# FTP Access Rights:
local_umask=022
write_enable=YES
#
# Logging:
xferlog_enable=YES
xferlog_std_format=NO
vsftpd_log_file=/proj/logs/vsftpd.log
#
# Connection Rules:
connect_from_port_20=YES
idle_session_timeout=600
data_connection_timeout=600
#
# FTP Settings:
ls_recurse_enable=YES
force_dot_files=YES
#
# Messages:
ftpd_banner=VSFTP - Linode Server.
dirmessage_enable=YES
The error I get upon entering my username then password is:
Code:
530 Login incorrect.
Login failed.
Anything look outrageously incorrect in there, or am I missing something?