Ubuntu 22.04 LTSにProFTPD をインストールする方法
環境
OSバージョンを確認します
# cat /etc/lsb-release DISTRIB_ID=Ubuntu DISTRIB_RELEASE=22.04 DISTRIB_CODENAME=jammy DISTRIB_DESCRIPTION="Ubuntu 22.04 LTS"
ProFTPDのインストール手順
1.ProFTPDをインストールします
# apt -y install proftpd-basic
2.配置ファイルを設定します
# vi /etc/proftpd/proftpd.conf
17行目
修正前
ServerName “Debian"
修正後
ServerName “サーバー名"
39行目
修正前
#DefaultRoot ~
修正後
DefaultRoot ~
3.FTP 接続を禁止するユーザを追記します
# vi /etc/ftpusers cftuser
4.proftpdを再起動します
# systemctl restart proftpd