From the course: Linux: File Sharing Services

Unlock the full course today

Join today to access over 22,700 courses taught by industry experts or purchase this course individually.

Configure the FTP server

Configure the FTP server - Linux Tutorial

From the course: Linux: File Sharing Services

Start my 1-month free trial

Configure the FTP server

- [Voiceover] In order to allow FTP clients to connect to a server and send and receive files we'll need to install and configure FTP server software. Let's see what's available in our distros repository for this. I'll type yum search ftp here on my CentOS system. On Ubuntu, I'd type apt-cache search namesonly ftp and pipe that to last. The first entry here is called just FTP, which I can see is the client. That's not what I want right now. I want a server, or, in the case of this software, a daemon. Software rich runs in the background and processes commands. Here is vsftpd, that looks promising. You may have some other options depending on which distro you are using, but vsftpd is available on both CentOS and Ubuntu, so I'll use that. I'll install it with my package manager. sudo yum install vsftpd or, on Ubuntu, sudo apt-install vsftpd Alright, with that installed, the next thing we need to do is configure the server. The settings for vsftpd are stored in the vsftpd.conf file…

Contents