Après avoir installé nginx avec le support Passenger dans '/ opt', pourquoi ne démarre-t-il pas à partir de 'init.d'?


15

J'ai parcouru un tutoriel http://craiccomputing.blogspot.com/2010/10/passenger-3-nginx-and-rvm-on-mac-os-x.html et tout allait bien. Il n'y a eu aucune erreur.

Nginx with Passenger support was successfully installed.

The Nginx configuration file (/opt/nginx/conf/nginx.conf)
must contain the correct configuration options in order for Phusion Passenger
to function correctly.

This installer has already modified the configuration file for you! The
following configuration snippet was inserted:

  http {
      ...
      passenger_root /home/alex/.rvm/gems/ruby-1.9.3-p194/gems/passenger-3.0.14;
      passenger_ruby /home/alex/.rvm/wrappers/ruby-1.9.3-p194/ruby;
      ...
  }

After you start Nginx, you are ready to deploy any number of Ruby on Rails
applications on Nginx.

Mais je ne peux pas le démarrer.

alex@ubuntu:~$ sh -x /etc/init.d/nginx start
sh: 0: Can't open /etc/init.d/nginx

sudo /etc/init.d/nginx start
sudo: /etc/init.d/nginx: command not found

Le répertoire opt/nginxexiste et contient des fichiers. Localhost:80ne fonctionne pas non plus.

Aucune suggestion?

Réponses:


3

La façon normale d'installer nginx est via apt-get(ou Synaptic ou SW Center) et cela ne met rien /opt, AFAIK. Dans ce cas, vous pouvez l'arrêter / démarrer en émettant simplement:

sudo service nginx start|stop|restart (etc)

Si vous vous nginxétiez installé /opt, je doute qu'il aurait touché le /etc/init.drépertoire ...


1
Il dit 'nginx: service non reconnu'
Alex Malex

1
sudo apt-get install nginx
ish

1
Pourquoi? il a précédemment déclaré que «Nginx avec prise en charge des passagers a été installé avec succès».
Alex Malex

2
Vous suivez un didacticiel pour Mac , qui indique clairement démarrer nginxdirectement sudoet arrêter avec killall, puis vous demandez pourquoi il n'est pas installé en tant que service!?
ish

2
Je crois qu'OP pose des questions sur nginx + passager, pas sur vanilla nginx.
user10962

20

La manière habituelle d'installer une configuration Rails + NGINX + Passenger + RVM implique généralement que nginx soit placé dans / opt / nginx, mais en fait, il ne crée pas le fichier de démarrage init.d. Cet article de blog montre comment vous pouvez facilement en récupérer un sur Linode :

wget -O init-deb.sh https://www.linode.com/docs/assets/660-init-deb.sh
sudo mv init-deb.sh /etc/init.d/nginx
sudo chown root:root /etc/init.d/nginx
sudo chmod +x /etc/init.d/nginx
sudo /usr/sbin/update-rc.d -f nginx defaults

Pour la postérité, voici le script de Linode:

#! /bin/sh

### BEGIN INIT INFO
# Provides:          nginx
# Required-Start:    $all
# Required-Stop:     $all
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: starts the nginx web server
# Description:       starts nginx using start-stop-daemon
### END INIT INFO

PATH=/opt/nginx/sbin:/sbin:/bin:/usr/sbin:/usr/bin
DAEMON=/opt/nginx/sbin/nginx
NAME=nginx
DESC=nginx

test -x $DAEMON || exit 0

# Include nginx defaults if available
if [ -f /etc/default/nginx ] ; then
        . /etc/default/nginx
fi

set -e

case "$1" in
  start)
        echo -n "Starting $DESC: "
        start-stop-daemon --start --quiet --pidfile /opt/nginx/logs/$NAME.pid \
                --exec $DAEMON -- $DAEMON_OPTS
        echo "$NAME."
        ;;
  stop)
        echo -n "Stopping $DESC: "
        start-stop-daemon --stop --quiet --pidfile /opt/nginx/logs/$NAME.pid \
                --exec $DAEMON
        echo "$NAME."
        ;;
  restart|force-reload)
        echo -n "Restarting $DESC: "
        start-stop-daemon --stop --quiet --pidfile \
                /opt/nginx/logs/$NAME.pid --exec $DAEMON
        sleep 1
        start-stop-daemon --start --quiet --pidfile \
                /opt/nginx/logs/$NAME.pid --exec $DAEMON -- $DAEMON_OPTS
        echo "$NAME."
        ;;
  reload)
          echo -n "Reloading $DESC configuration: "
          start-stop-daemon --stop --signal HUP --quiet --pidfile     /opt/nginx/logs/$NAME.pid \
              --exec $DAEMON
          echo "$NAME."
          ;;
      *)
            N=/etc/init.d/$NAME
            echo "Usage: $N {start|stop|restart|reload|force-reload}" >&2
            exit 1
            ;;
    esac

    exit 0

Une chose à surveiller: si vous avez changé votre emplacement nginx.pid (par défaut / opt / nginx / log, j'ai changé le mien en / var / run), vous devrez le changer dans ce fichier. Vers le haut, déclarez-le simplement comme une variable:

PIDPATH=/var/run/$NAME.pid

Et remplacez n'importe où qui a le chemin du pid par $ PIDPATH. (Même si vous conservez le chemin d'origine, cela rend le script plus lisible).


1

Je recommande d'utiliser le Brightbox PPA mentionné dans le wiki Brightbox . Cela permet de remettre tous les services normaux comme service nginx startou /etc/init.d/nginx starthors de la boîte.

Cela fonctionne bien pour moi en précis (12.04 LTS).


1
Bon conseil. Remarque: l'URL du fichier init a été définitivement déplacée vers https://www.linode.com/docs/assets/660-init-deb.sh.
Teemu Leisti
En utilisant notre site, vous reconnaissez avoir lu et compris notre politique liée aux cookies et notre politique de confidentialité.
Licensed under cc by-sa 3.0 with attribution required.