Yolcu desteği ile nginx'i '/ opt' içine yükledikten sonra, neden 'init.d' den başlamıyor?


15

Bir eğitim http://craiccomputing.blogspot.com/2010/10/passenger-3-nginx-and-rvm-on-mac-os-x.html geçirdim ve her şey yolunda idi. Hata yoktu.

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.

Ancak başlayamıyorum.

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

Dizin opt/nginxvar ve içinde dosyalar var. Localhost:80da çalışmıyor.

Herhangi bir öneri?

Yanıtlar:


3

Yüklemek için normal yoldan nginx yoluyladır apt-get(Synaptic veya GB Merkezi veya) olması ve bir şey koymaz /optafaik. Bu durumda, basitçe şunu vererek durdurabilir / başlatabilirsiniz:

sudo service nginx start|stop|restart (etc)

Eğer senin nginxkendini yüklü /opt, ben dokundu olurdu şüphesiz /etc/init.ddizin ...


1
'Nginx: tanınmayan hizmet'
yazıyor

1
sudo apt-get install nginx
ish

1
Neden? daha önce 'Yolcu destekli Nginx başarıyla kuruldu' demişti.
Alex Malex

2
Mac için açık bir şekilde nginxdoğrudan başlangıç sudove bitiş ile başlayan bir öğretici izliyorsunuz killallve neden bir hizmet olarak yüklenmediğini soruyorsunuz !?
ish

2
OP'nin vanilya nginx değil, nginx + yolcu hakkında sorduğuna inanıyorum.
kullanıcı10962

20

Rails + NGINX + Passenger + RVM kurulumunun olağan yolu genellikle nginx'in / opt / nginx içine yerleştirilmesini içerir, ancak aslında init.d başlangıç ​​dosyasını oluşturmaz. Bu blog gönderisi Linode'den nasıl kolayca yakalayabileceğinizi gösteriyor :

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

Gelecek nesiller için Linode'un senaryosu:

#! /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

Dikkat edilmesi gereken bir şey: nginx.pid konumunuzu (varsayılan olarak / opt / nginx / log olarak değiştirdiyseniz, benimkini / var / run olarak değiştirdim), bu dosyada değiştirmeniz gerekir. En üste yakın bir yerde, onu değişken olarak beyan et:

PIDPATH=/var/run/$NAME.pid

Ve pid yolu olan herhangi bir yeri $ PIDPATH ile değiştirin. (Orijinal yolu koruyor olsanız bile, bu komut dosyasını daha okunabilir hale getirir).


1

Brightbox Wiki'de bahsedilen Brightbox PPA kullanmanızı tavsiye ederim . Bu, tüm normal hizmetlerinservice nginx start/etc/init.d/nginx start , kutuya veya kutudan çıkan .

Bu benim için iyi çalışıyor (12.04 LTS).


1
İyi tavsiye. Not: init dosyasının URL'si kalıcı olarak adresine taşındı https://www.linode.com/docs/assets/660-init-deb.sh.
Teemu Leisti
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.