Ubuntu 23.04 FTP ProFTPDをインストールする方法

環境
Ubuntu 23.04

概要
ProFTPD をインストールして、ファイル転送用に FTP サーバーを構築します。

操作方法
1.ProFTPD のインストールを行います
# apt -y install proftpd-basic

2.配置ファイルを設定します
# vi /etc/proftpd/proftpd.conf

# 11行目 : 必要なければ [off] に変更
UseIPv6 off
# 17行目 : サーバー名変更
ServerName "www.arkgame.com"
# 39行目 : コメント解除 (chroot のルートディレクトリ指定)
DefaultRoot ~
root@www:~# vi /etc/ftpusers
# FTP 接続を禁止するユーザを 1 行ずつ記載
testuser

3.proftpdを再起動します
# systemctl restart proftpd

4.Firewalld を有効にしている場合は、HTTP サービスの許可が必要です。HTTP は [80/TCP] を使用します。

# firewall-cmd --add-service=http
# firewall-cmd --runtime-to-permanent

 

Ubuntu 23.04

Posted by arkgame