[ トラックバック(0) ]
Counter: 9637,
today: 1,
yesterday: 0
ProFTPD-1.2.9のインストールログ
xinetd経由での起動とします。
(解凍)
# tar xvfz proftpd-1.2.9.tar.gz -C /usr/local/src/
(インストール)
# cd /usr/local/src/proftpd-1.2.9/ # ./configure --sysconfdir=/etc --localstatedir=/var # make # make install
(設定)
# vi /etc/proftpd.conf ServerName "ProFTPD" ServerType inetd DefaultServer on Port 21 Umask 022 MaxInstances 30 User nobody Group nobody UseReverseDNS off TimesGMT off <Directory /> AllowOverwrite on </Directory>
# vi /etc/xinetd.d/ftp service ftp { disable = no socket_type = stream protocol = tcp wait = no user = root server = /usr/local/sbin/proftpd }
(起動)
# /etc/rc.d/init.d/xinetd restart
(確認)
$ ftp localhost Connected to localhost (127.0.0.1). 220 ProFTPD 1.2.9 Server (ProFTPD) [***.linuxexpert.ne.jp] Name (localhost:***): 331 Password required for ***. Password: 530 Login incorrect. Login failed. Remote system type is UNIX. Using binary mode to transfer files. ftp> bye 221 Goodbye.