Install VSFTPD di RHEL 8
Step by step :
- Install vsftpd# dnf install vsftpd
- Start dan Enable vsftpd
# systemctl start vsftpd# systemctl enable vsftpd# systemctl status vsftpd
- Open FTP port
# firewall-cmd –zone=public –permanent –add-port=21/tcp# firewall-cmd –zone=public –permanent –add-port=45073/tcp# firewall-cmd –reload
- Configure vsftpd.conf# vi /etc/vsftpd/vsftpd.conf
Output set :
anonymous_enable=NO
local_enable=YES
write_enable=YES
local_umask=022
dirmessage_enable=YES
xferlog_enable=YES
connect_from_port_20=YES
xferlog_std_format=YES
listen=NO
listen_ipv6=YES
pam_service_name=vsftpd - Set SELinux Boolean rule
# semanage boolean -m ftpd_full_access –on - Restart vsftpd# systemctl restart vsftpd
Di tulis oleh: Nanda Anubis