How can I stop phusion passenger standalone?

11,134

Solution 1

Try this

passenger stop -p 8000

or

passenger stop --pid-file tmp/pids/passenger.pid

Solution 2

passenger stop --pid-file tmp/pids/passenger.8000.pid

And

passenger stop --pid-file tmp/pids/passenger.8001.pid

will stop both the servers on these two ports.

Share:
11,134
Asish Bhattarai
Author by

Asish Bhattarai

Languages and Frameworks I do.. Ruby Rails Javascript Angular.js Node.js Express Swift

Updated on June 17, 2022

Comments

  • Asish Bhattarai
    Asish Bhattarai almost 2 years

    I don't know how to stop phusion passenger standalone. I have 2 instances running one at port 8000 and other at 8001. Can anybody give me idea how can I stop passenger on each proxy. cause I just need one at 8001. And because there are two instances, it's taking up double memory. Please help me, I am on dreamhost vps.

  • Marcio Mangar
    Marcio Mangar almost 11 years
    Just mentioning that using the -p you should be in the same directory that started the process.