[学習] CentOS7 FTPサーバ構築

CentOS 7 (7.5)でFTPサーバーを構築する。
FTPサーバーには vsftpd を使用。

# yum install vsftpd ftp

/etc/vsftpd/vsftpd.conf編集
anonymous_enable=NO
ascii_upload_enable=YES
ascii_download_enable=YES

サービス有効化・起動
# systemctl enable vsftpd
# systemctl start vsftpd

ファイアウォール設定
firewall-cmd --permanent --add-port=21/tcp
firewall-cmd --reload

SELinux設定
setsebool -P ftp_home_dir on

0 件のコメント:

その他の記事