FTPサーバー構築 - Proftpd2011/03/12 |
ファイル転送用に ProFTPD をインストールして FTPサーバーを構築します。 |
|
[1] | Proftpd のインストールと設定をします。 |
root@www:~# aptitude -y install proftpd # Proftpd をinet経由で起動かスタンドアロンで起動か選択を求められる # ここではスタンドアロンを選択して進める root@www:~# vi /etc/proftpd/proftpd.conf # 10行目:必要なければ「off」に変更 UseIPv6 off # 14行目:サーバー名変更 ServerName "www" # 33行目:コメント解除 ( chrootのルートディレクトリ指定 ) DefaultRoot ~ root@www:~# vi /etc/ftpusers # FTP接続を禁止するユーザを1行ずつ列挙 test root@www:~# /etc/init.d/proftpd restart Stopping ftp server: proftpd. Starting ftp server: proftpd. |
Sponsored Link |