Status
Not open for further replies.

Sushant

Active Member
265
2009
38
0
Hi
I have an VPS with Centos 6. I want to create an ftp account in it and set this account to particular directory with quota limit. can anyone please help me on that.

Thanks
 
11 comments
Centos has vsftp available. But most panels like c, z, kloxo, directadmin, virtualmin come with that built in. DO you use any panel??
 
Hi i m not using any control panel i just want to do without control panel if possible and do you guys think can i install ftp server in windows...so i can transfer files from my pc to windows server using ftp?
 
vsftpd is installed by default with centos. If its not installed, then run the command
Code:
# yum install vsftpd

After installation then restart vsftpd
Code:
# /etc/init.d/vsftpd restart

Now your FTP server is up and running. Now add additional users to FTP server so that you can login into account to upload / download files.

To add a user called xyz and set the password, enter:
Code:
# adduser -c 'FTP USER Xyz' -m xyz
# passwd xyz

Now xyz can login using our ftp server. Make sure the following is set in vsftpd.conf

Code:
local_enable=YES

Restart the vftpd:
Code:
# /etc/init.d/vsftpd restart
 
hi installed pureftpd and i followed the whole procedure but still i m getting error 530 Login authentication failed. can you please help me.
 
Status
Not open for further replies.
Back
Top