Ubuntu 23.04 ProFTPD をインストールする手順
環境
# lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description: Ubuntu 23.04 Release: 23.04 Codename: lunar
ProFTPDのインストール手順
1.ProFTPD をインストールします。
# apt -y install proftpd-basic
2. ProFTPD の設定を行います
# vi /etc/proftpd/proftpd.conf
1) IPv6を「off」変更
UseIPv6 off
2).サーバー名を変更する
ServerName "www.arkgame.com"
3).chroot のルートディレクトリ指定
DefaultRoot ~
3.FTP 接続を禁止するユーザを 記載する
arkuser
4.proftpdを再起動する
# systemctl restart proftpd