How To Set Up ProFTPD on CentOS 6

How To Set Up ProFTPD on CentOS 6

How To Set Up ProFTPD on CentOS 6
  1. Download the EPEL repository that will allow us to install proftpd daemon on our VPS.
    # rpm -Uvh http://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm
     
  2. Next, install proftpd  with yum
    yum install proftpd
     
  3. Once ProFTPD has been installed, we need to configure the FTP daemon with it's server name.
    vi /etc/proftpd.conf
    change “ServerName” with the hostname of the VPS
    ServerName                                      <myDomain.com>
    save and quit
     
  4. Then, to prevent any issues add the VPS hostname and IP address in /etc/hosts file.
    vi /etc/hosts
    append/modify hosts file to reflect a similar line as:
    10.10.10.10                                         <myServerHostname>
    save and quit
     
  5. Lastly, we need to restart FTP service for recent changes to take effect.
    # service proftpd restart
How To Connect To My FTP Server
  1. Open up an FTP client of your choosing ie. FileZilla
  2. Enter in the required fields:
    Host: “myDomain.com”
    Username: “FTP_username”
    Password: “FTP_password”
    Port: 21 for FTP and 22 for sFTP
  3. Hit Quickconnect button and your working directory should map to the remote home directory of the FTP server.
  4. That is it! You can start uploading and downloading web content to build your websites.
    • Related Articles

    • How To Set Up a Firewall Using FirewallD on CentOS 7

      Introduction Firewalld is a complete firewall solution available by default on CentOS 7 servers. In this guide, we will cover how to set up a firewall for your server and show you the basics of managing the firewall with the firewall-cmd ...
    • How To Install ejabberd on a CentOS 5 and CentOS 6 VPS

      About ejabberd Ejabberd is a very simple, stable, and powerful XMPP server written in Erlang. This tutorial will guide you through the installation process and basic setup on a CentOS VPS.   Installing ejabberd First we need to enable EPEL-Repository ...
    • How To Migrate from FirewallD to Iptables on CentOS 7

      Introduction Like most other Linux distributions, CentOS 7 uses the netfilter framework inside the Linux kernel in order to access packets that flow through the network stack. This provides the necessary interface to inspect and manipulate packets in ...
    • Set or Change DB Collation

      How to Set or Change the Database Collation using SQL Server Management studio Default MS SQL 2008 collations - http://puu.sh/lJvpI.txt Other collations - http://puu.sh/lJvG0.txt Before proceeding with any changes, first initiate a full backup of ...
    • How to Set Up Mail Programs

      Configuring Outlook Express To configure this email client with the POP before SMTP relay: Open Outlook Express. In the menu bar, go to the Tools drop-down menu and select Accounts. On the page that shows, click Add and select Mail. On the wizard ...