起動(Standalone)

インストール後、実行する以下の様なエラーが出ます。

# /usr/local/sbin/proftpd
- no such group 'nogroup'
- Fatal: Group: Unknown group 'nogroup'.

以下の設定ファイルを修正します。

# vi /usr/local/etc/proftpd.conf

設定内容は以下の通りです。

# Set the user and group under which the server will run.
User nobody
Group nobody

↓(変更)
# Set the user and group under which the server will run.
User nobody
Group nogroup

以下ののコマンドで起動を確認します。

# ps -axu

nobody 13740 0.0 0.3 2356 1204 ? S 11:45 0:00 proftpd: (accepting connections)


また、以下ののコマンドで21番ポートが空いているか確認します。

# netstat -nap

tcp 0 0 0.0.0.0:21 0.0.0.0:* LISTEN 13740/proftpd: (acc



コメント