5

で乗客をスタンドアロンで起動しようとするpassenger start -p 80と、すでに実行されていると表示されますが、実行するとpassenger stop -p 80取得しますAccording to the PID file '/var/crm/tmp/pids/passenger.80.pid', Phusion Passenger Standalone doesn't seem to be running. が、停止しようとすると、実行されていないことを示し、Webからアクセスできないためではありません。

[root@technetium crm]# passenger start -p 80
*** ERROR ***
The address 0.0.0.0:80 is already in use by another process, perhaps another
Phusion Passenger Standalone instance.

If you want to run this Phusion Passenger Standalone instance on another port,
use the -p option, like this:

  passenger start -p 81
4

1 に答える 1

8

実行するlsofnetstat -tlnp | grep 80、ポート80を使用しているアプリケーションを特定してみてください。それがわかったら、ps-elfのような操作を実行してそのプロセスを強制終了できます。

于 2012-04-18T03:30:36.757 に答える