Wednesday, March 2, 2022

How To install FTP Server (Pure-FTPd ) & Pure-FTPd Client On Rocky Linux 8.5

 in This Tutorial you will Learn " How To install FTP Server (Pure-FTPd ) & Pure-FTPd Client On Rocky Linux 8.5"
Pure-FTPd is a free open-source FTP server designed with security in mind.
Rocky Linux is an open-source enterprise operating system designed to be 100% bug-for-bug compatible with Red Hat Enterprise Linux.
_________________________________________________________________________________________
Server - Os:  Rocky Linux 8.5  64Bit      |    IP -192.168.1.20        |     Hostname - www.primaryhost.com
_________________________________________________________________________________________
cat /etc/system-release ; sestatus ; hostname ; hostname -I ; dnf groupinstall "Development Tools" -y
dnf install epel-release -y
dnf install pure-ftpd -y
gedit  /etc/pure-ftpd/pure-ftpd.conf &>/dev/null
NoAnonymous           yes
IPV4Only                     yes
IPV6Only                     yes
systemctl enable --now pure-ftpd ; systemctl start pure-ftpd
firewall-cmd --add-service=ftp ; firewall-cmd --runtime-to-permanent
_________________________________________________________________________________________
Pure-FTPd Client  (Rocky Linux) -  
cat /etc/system-release ; sestatus ; hostname -I ; dnf groupinstall "Development Tools" -y
dnf -y install lftp
lftp -u debs 192.168.1.20
_________________________________________________________________________________________


No comments:

Post a Comment