FTP je skraćenica od File Transfer Protocol. Napisao ga je Abhay Bhushan i objavio kao RFC 114 16. travnja 1971. Podržavaju ga svi operativni sustavi i preglednici. Izgrađen je na arhitekturi klijent-poslužitelj.
Kako instalirati i konfigurirati FTP poslužitelj u Redhat / Centos Linux
Korak 1: Za postavljanje ftp poslužitelja koristit ćemo localhost za naš stroj.
Korak 2: Instalirajte vsftpd (vrlo siguran FTP daemon) paket.
yum install -y vsftpd
Korak 3: Pokrenite FTP poslužitelj kada je sustav uključen.
systemctl enable vsftpd.service
Korak 4: Provjerite status ftp poslužitelja
systemctl status vsftpd.service
Korak 5: Konfigurirajte vsftpd paket. Mi ćemo urediti /etc/vsftpd/vsftpd.conf
.
Change the line which contain anonymous_enable=NO to anonymous_enable=YES
This will give permit any one to access FTP server with authentication.
Change the following to YES
local_enable=YES
write_enable=YES
Step 6: Start the FTP Server
systemctl start vsftpd.service
Step 7: Install the FTP Client
yum install -y lftpd
Step 8: Connect ftp to localhost
lftp localhost