Hack BBS
[全部のスレッド一覧][新規投稿][記事の削除・変更]
[Home Page]
返信投稿はタイトルのリンクをクリックして下さい
スレッド【No.819】の中の記事をすべて表示しています
【No.819】のスレッド
04/06/22(火) 00:05:47 投稿者[素人] [No.819]のスレッド内
- 【No.819】 タイトル[ProFTPD inetd の設定]
この記事がスレッドの最初です
- proftpd-1.2.10-0vl0.1をインストールしてあります。
vi /etc/proftpd.confで
#ServerType standalone
ServerType inetd
に設定し、
vi /etc/inetd.confで
ftp stream tcp nowait root /usr/sbin/tcpd in.proftpd
を有効にして
service inet restart
してから
/etc/rc.d/init.d/proftpd restart
すると
ProFTPdを停止中: [失敗]
ProFTPdを起動中: hackkit - fatal: Socket operation on non-socket
hackkit - (Running from command line? Use `ServerType standalone' in config file!)
[失敗]
となります inetd では起動せず Standalone でしか起動しないのでしょうか?。
アドバイスをお願いします。
04/06/22(火) 00:18:20 投稿者[たつや] <http://linkstation.yi.org/>
[No.819]のスレッド内
- 【No.820】 タイトル[Re: ProFTPD inetd の設定]
【No.819】に対する返信
- >vi /etc/inetd.confで
>ftp stream tcp nowait root /usr/sbin/tcpd in.proftpd
>を有効にして
>service inet restart
inetd から起動するなら、ここまでで OK のはず。
>してから
>/etc/rc.d/init.d/proftpd restart
/etc/rc.d/init.d/proftpd は必要ありません。
/etc/rc.d/rc*.d の下のシンボリックリンクも削除しておいてください。
inetd の再起動後、netstat -a で ftp を LISTEN していることを確認
してみてください。
04/06/22(火) 02:32:38 投稿者[山下康成] <http://www.yamasita.jp>
[No.819]のスレッド内
- 【No.822】 タイトル[Re: ProFTPD inetd の設定]
【No.820】に対する返信
- >/etc/rc.d/rc*.d の下のシンボリックリンクも削除しておいてください。
手で削除するのではなく
# chkconfig --del proftpd
ですね。確認は
# chkconfig --list proftpd
proftpd 0:off 1:off 2:off 3:off 4:off 5:off 6:off
念のため、、、、
04/06/23(水) 19:37:38 投稿者[素人] [No.819]のスレッド内
- 【No.824】 タイトル[Re: ProFTPD inetd の設定]
【No.822】に対する返信
- vi /etc/proftpd.confの訂正
#ServerType standalone
を
ServerType inetd
に変更して保存
vi /etc/inetd.confの訂正
ftp stream tcp nowait root /usr/sbin/tcpd in.proftpd
を有効にする
proftpdの変更後の有効化
service inet restart
シンボリックリンクの削除
# chkconfig --del proftpd
確認は
# chkconfig --list proftpd
proftpd 0:off 1:off 2:off 3:on 4:on 5:on 6:off
と設定して無事繋がりました。
たつやサン、山下サンありがとうございました。
色々調べて試してみたのですが上手くいきませんでしたが貴兄らの
ご指導で上手くいきました。ありがとうございました。
04/06/23(水) 21:12:04 投稿者[山下康成] <http://www.yamasita.jp>
[No.819]のスレッド内
- 【No.826】 タイトル[Re: ProFTPD inetd の設定]
【No.824】に対する返信
- ># chkconfig --list proftpd
>proftpd 0:off 1:off 2:off 3:on 4:on 5:on 6:off
何かおかしいです。
ここに on が出てきてはいけません。全部 off でないと。
04/06/24(木) 04:50:43 投稿者[素人] [No.819]のスレッド内
- 【No.831】 タイトル[Re: ProFTPD inetd の設定]
【No.826】に対する返信
- >何かおかしいです。
>ここに on が出てきてはいけません。全部 off でないと。
# chkconfig --list proftpd
proftpd 0:off 1:off 2:off 3:off 4:off 5:off 6:off
ご指摘のとおりすべて off でした。