# Sudo /etc/init.d/vsftpd restart
Rather than invoking init scripts through /etc/init.d, use the service(8)
utility, e.g. service vsftpd restart
Since the script you are attempting to invoke has been converted to an
Upstart job, you may also use the stop(8) and then start(8) utilities,
e.g. stop vsftpd ; start vsftpd. The restart(8) utility is also available.
vsftpd start/running, process 3237
それから私はこれを試しました
# service vsftpd start
vsftpd start/running, process 3275
# service vsftpd stop
stop: Unknown instance:
# service vsftpd restart
stop: Unknown instance:
vsftpd start/running, process 3315
# Sudo service vsftpd restart
stop: Unknown instance:
vsftpd start/running, process 3358
上記の再起動を試みると、vsftpの再評価を取得できませんでした。再起動する方法は?アドバイスを下さい
vsftpd
の各インスタンスを手動で停止または強制終了してから、再起動してください。サーバーのコピーが4つ実行されているようですが、最初のコピーはupstartによって管理されていません。 /etc/init.d/vsftpd stop
は良い出発点かもしれません。