Hello
I installed vsftpd on a machine running mandrake 10.1. I'm fairly new with linux. I would like users to be able to log in and access a directory. My conf file reads as follows:
anonymous_enable=NO
local_enable=YES
write_enable=YES
local_umask=022
dirmessage_enable=YES
xferlog_enable=YES
connect_from_port_20=YES
xferlog_std_format=YES
chroot_list_enable=YES
chroot_list_file=/etc/vsftpd.chroot_list
hide_ids=YES
ls_recurse_enable=YES
pam_service_name=vsftpd
userlist_enable=YES
listen=YES
tcp_wrappers=NO
When I try to ftp my machine it gives me the following error:
[root@localhost jason]# ftp localhost
Connected to localhost.
220 (vsFTPd 2.0.1)
530 Please login with USER and PASS.
530 Please login with USER and PASS.
KERBEROS_V4 rejected as an authentication type
Name (localhost:jason): jason
530 Permission denied.
Login failed.
ftp> quit
221 Goodbye.
[root@localhost jason]#
What files should I place the users I want to be able to log in into? Also, does each user need an account on the machine and when they log in what directory can they access? Finally, where do I place the passwords for the users to login with?
Thanks
