Estoy intentando agregar Passenger_root y Passenger_ruby a mi archivo nginx.conf, pero cuando intento reiniciar NGINX aparece el mensaje:
Starting nginx: nginx: [alert] Unable to start the Phusion Passenger watchdog
because its executable (/usr/lib/phusion-passenger/agents/PassengerWatchdog) does not
exist. This probably means that your Phusion Passenger installation is broken or
incomplete, or that your 'passenger_root' directive is set to the wrong value. Please
reinstall Phusion Passenger or fix your 'passenger_root' directive, whichever is
applicable. (-1: Unknown error)
nginx.
En mi archivo nginx.conf:
http {
passenger_root /home/deploy/.rvm/gems/ruby-2.0.0-p247/gems/passenger-4.0.14;
passenger_ruby /home/deploy/.rvm/wrappers/ruby-2.0.0-p247/ruby;
Ambos son caminos válidos.
Miré esta publicación:nginx-no-reconocer-opción-raíz-del-pasajeroy trató de correr
apt-get remove nginx
pero me dice que nginx no está instalado. Estoy usando RVM + Pasajero + Nginx
Instalé pasajero ejecutando gem install pasajero. Nginx estaba instalado previamente y intenté modificar la ruta a la nueva versión de pasajero en el archivo nginx.conf. ¿Necesito hacer algo adicional para que los dos funcionen juntos?
Si intento corrersudo pasajero-instalar-nginx-module
Entiendo el mensaje:
Nginx with Passenger support was successfully installed.
Please edit your Nginx configuration file (probably /opt/nginx/conf/nginx.conf),
and set the passenger_root and passenger_ruby configuration options in the
'http' block, like this:
http {
...
passenger_root /var/lib/gems/1.9.1/gems/passenger-3.0.19;
passenger_ruby /usr/bin/ruby1.9.1;
...
}
Esa es la antigua ruta de Ruby... si ejecuto rvm info, obtengo las rutas de Ruby2.0 adecuadas.