AlmaLinux 9
Sponsored Link

FTP サーバー : ProFTPD インストール2023/03/07

 
ProFTPD をインストールして、ファイル転送用に FTP サーバーを構築します。
[1] ProFTPD をインストールして設定します。
# EPEL, CRB からインストール

[root@www ~]#
dnf --enablerepo=epel,crb -y install proftpd
[root@www ~]#
vi /etc/proftpd.conf
# 80行目 : 自身のサーバー名に変更
ServerName                      "www.srv.world"

# 82行目 : 必要に応じて管理者メールアドレス変更
ServerAdmin                     root@srv.world

# 116行目 : 追記 : アクセスログと認証ログを取得
ExtendedLog                     /var/log/proftpd/access.log WRITE,READ default
ExtendedLog                     /var/log/proftpd/auth.log AUTH auth

[root@www ~]#
vi /etc/ftpusers
# FTP 接続を禁止したいユーザーは当ファイルに一行ずつ記載

test
[root@www ~]#
systemctl enable --now proftpd

[2] SELinux を有効にしている場合は、ブール値の変更が必要です。
[root@www ~]#
setsebool -P ftpd_full_access on

[3] Firewalld を有効にしている場合は、FTP サービスの許可が必要です。
[root@www ~]#
firewall-cmd --add-service=ftp

success
[root@www ~]#
firewall-cmd --runtime-to-permanent

success
関連コンテンツ