VSFTP Login Woes
Here is my vsftpd.conf:
#
#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:
530 Login incorrect.
Login failed.
Anything look outrageously incorrect in there, or am I missing something?
2 Replies
anonymous_enable=NO
local_enable=YES
write_enable=YES
local_umask=022
# You may specify an explicit list of local users to chroot() to their home
# directory. If chroot_local_user is YES, then this list becomes a list of
# users to NOT chroot().
chroot_list_enable=YES
I'd have a look through your config file for the last one, and make sure you're not running vsftpd chrooted.