AlmaLinux 8でFTP サーバーProFTPD をインストールする
環境
# cat /etc/redhat-release
AlmaLinux release 8.4 (Electric Cheetah)
インストール方法
1.ProFTPD をインストール
# dnf –enablerepo=epel -y install proftpd
2.ProFTPDを設定
# vi /etc/proftpd.conf 80行目 修正前 ServerName "ProFTPD server" 修正後 ServerName "サーバー名" 82行目 修正前 ServerAdmin root@localhost 修正後 ServerAdmin 管理者メールアドレス 116行目 # アクセスログを取得 ExtendedLog /var/log/proftpd/access.log WRITE,READ default # 認証ログを取得 ExtendedLog /var/log/proftpd/auth.log AUTH auth
3.自動起動有効
# systemctl enable --now proftpd Created symlink /etc/systemd/system/multi-user.target.wants/proftpd.service → /usr/lib/systemd/system/proftpd.service.
4.FTPサービスの許可
# firewall-cmd --add-service=ftp success # firewall-cmd --runtime-to-permanent success