简体   繁体   中英

Passenger process already running? but its not

Trying to start passenger standalone with passenger start -p 80 and it's saying its already running but when i do a passenger stop -p 80 i get According to the PID file '/var/crm/tmp/pids/passenger.80.pid', Phusion Passenger Standalone doesn't seem to be running. But it clearly is not because when i try stop it, it says its not running and i cant access it from the 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

try running lsof or netstat -tlnp | grep 80 netstat -tlnp | grep 80 to determine which application is using port 80. Once you have that figured out you can do something like ps -elf to kill that process.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM