Deploying a Rails app using Capistrano to an Ubuntu VM running Apache with Passenger enabled.
I followed this tutorial: https://www.phusionpassenger.com/library/install/apache/install/oss/trusty/ with a few changes given that I'm on 17.04, not 14.04 LTS.
passenger-config validate-install
says everything looks fine with both Passenger and Apache. passenger-memory-stats
shows both Passenger and Apache processes.
I have sudo apache2ctl restart
ed several times, with no warnings. But passenger-status
, and therefore the passenger-config restart-app
that Capistrano runs, reports that Passenger "doesn't seem to be running." So my deploy stops.
There's only one Ruby on the machine, ruby-2.4.1 installed using ruby-install. I have apt-get update
and upgrade
d in case of version mismatches.
Apache logs don't show any errors, certainly none related to Passenger.
Why would Passenger internally disagree, saying that it's both configured properly and there are processes running, but then later saying that it's not running?
1 Answers
Answers 1
Sorry to harp on this but did you run passenger-config validate-install
on the ubuntu server (not osx)? Same for passenger-memory-stats
and sudo apache2ctl restart
.
Based on /tmp
not having a passenger.randomstring
dir, it sounds like you are confusing local and remote commands. /tmp
is the default location for PassengerInstanceRegistryDir
s on Ubuntu so if Passenger is running there should be a dir in /tmp
that starts with passenger.
.
0 comments:
Post a Comment