I have installed ftp and vsftpd on my CentOS 5.4 through yum install ftp
and yum install vsftpd
. I have also created one ftp user with adduser ftpuser
command.
And here comes my problem.
[root@localhost ~]# ftp localhost
Connected to localhost.localdomain.
220 (vsFTPd 2.0.5)
530 Please login with USER and PASS.
530 Please login with USER and PASS.
KERBEROS_V4 rejected as an authentication type
Name (localhost:root): ftpuser
331 Please specify the password.
Password:
230 Login successful.
Remote system type is UNIX.
Using binary mode to transfer files.
ftp> ls
227 Entering Passive Mode (127,0,0,1,103,134)
150 Here comes the directory listing.
226 Directory send OK.
ftp>
Once after I login to my ftp server with ftp localhost
command and try to see the files with ls command it is not showing any.
P.S: vsftpd service is running and I have placed some files in my ftp folder also. I have seen people asking the same question on various blogs but no where I got the answer. Please help me.