Rocky Linux 9にFTPサーバーProFTPD をインストールをインストールする
環境
OSバージョンを確認します
# cat /etc/redhat-release Rocky Linux release 9.0 (Blue Onyx)
操作方法
1. EPEL, CRBリポジトリから ProFTPD をインストールします
# dnf --enablerepo=epel,crb -y install proftpd
2.配置ファイルの修正
# 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.FTP 接続を禁止したいユーザーを設定します
# vi /etc/ftpusers
例「arkuser」
4.proftpdを起動します
# systemctl enable --now proftpd Created symlink /etc/systemd/system/multi-user.target.wants/proftpd.service → /usr/lib/systemd/system/proftpd.service.
5.SELinux を有効にしている場合は、ブール値を変更します
# setsebool -P ftpd_full_access on
6.Firewalld を有効にしている場合は、FTP サービスを許可します
# firewall-cmd --add-service=ftp # firewall-cmd --runtime-to-permanent success