August 7th in Linux/Unix by .

Install FTP Server for Centos/RHEL

If you are buying a new vps or dedicated server you might install DNS server, LAMP and mail server. But if you want to upload php scripts or html files then ftp is a much for easy uploading or downloading the files in the server.

There are 3 popular open source FTP servers worth considering….

PureFTP (fast)
ProFTP (secure and easy to configure)
VsFTP

You will also need a free FTP client software like Filezilla which is free to download.

I prefer ProFTP as it is not only secure but also easy to install. I heard that pureftp is a fast ftp server but its configuration is a bit cumbersome. We will install pureftp in our new server and all local users will be able to upload to ther /home/ directory.

If you are running RHEL or Centos, then

yum install proftpd

then

/etc/init.d/proftpd start

and the configuration file of the ftp server is located in /etc/proftpd.conf. Now we will create local users in our server.

adduser guest

then update the password of guest to new one

passwd -u guest

All you have to do is open filezilla, enter domain name or IP with username and password and connect to port 21. You will be able to upload files in /home/guest directory

filezilla.PNG

Thats it!

Similar Posts:

Leave A Comment.