Scientific Linux 6
Sponsored Link

FTPサーバー構築 - Pure-FTPd2011/03/19

 
Pure-FTPd をインスとトールして、ファイル転送用にFTPサーバー構築します。
[1] Pure-FTPd のインストールと設定
[root@www ~]#
yum --enablerepo=epel -y install pure-ftpd
 
# EPELからインストール
[root@www ~]#
vi /etc/pure-ftpd/pure-ftpd.conf
# 77行目:変更 (Anonymous禁止)

NoAnonymous      
yes
# 143行目:コメント解除

UnixAuthentication       yes
[root@www ~]#
/etc/rc.d/init.d/pure-ftpd start

Starting proftpd:
[  OK  ]

[root@www ~]#
chkconfig pure-ftpd on
関連コンテンツ