'/ opt'에서 승객 지원으로 nginx를 설치 한 후 왜 'init.d'에서 시작하지 않습니까?


15

나는 튜토리얼 http://craiccomputing.blogspot.com/2010/10/passenger-3-nginx-and-rvm-on-mac-os-x.html을 겪었고 모든 것이 정상이었습니다. 오류가 없었습니다.

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.

그러나 나는 그것을 시작할 수 없습니다.

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

디렉토리 opt/nginx가 존재하고 그 안에 파일이 있습니다. Localhost:80작동하지 않습니다.

어떤 제안?

답변:


3

nginx 를 설치하는 일반적인 방법 은 apt-get(또는 Synaptic 또는 SW Center) 를 통하는 것이며 /optAFAIK에는 아무 것도 넣지 않습니다 . 이 경우 간단히 다음을 발행하여 중지 / 시작할 수 있습니다.

sudo service nginx start|stop|restart (etc)

nginx설치 한 경우 디렉토리에 /opt닿지 않았을 것입니다 /etc/init.d...


1
'nginx : 인식 할 수없는 서비스'라고
표시됨

1
sudo apt-get install nginx
ish

1
왜? 그것은 이전에 '승객 지원을 가진 Nginx가 성공적으로 설치되었습니다.'라고 말했습니다.
Alex Malex

2
Mac 용 튜토리얼을 따르고 있는데 , 이는 nginx바로 시작 sudo하고 멈춤 이라고 명시되어 있는데 killall왜 서비스로 설치되지 않았는지 묻습니다!?
ish

2
OP가 바닐라 nginx가 아닌 nginx + 승객에 대해 묻는다고 생각합니다.
user10962

20

Rails + NGINX + Passenger + RVM 설정을 설치하는 일반적인 방법은 일반적으로 nginx를 / opt / nginx에 배치하는 것과 관련이 있지만 실제로 init.d 시작 파일을 생성하지는 않습니다. 이 블로그 게시물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

후손을 위해 다음은 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

주의해야 할 사항 : nginx.pid 위치를 변경 한 경우 (기본값은 / opt / nginx / log, 내 것을 / var / run로 변경 한 경우)이 파일에서 변경해야합니다. 상단 근처에서 변수로 선언하십시오.

PIDPATH=/var/run/$NAME.pid

그리고 pid의 경로가있는 곳을 $ PIDPATH로 바꾸십시오. (원래 경로를 유지하더라도 스크립트를 더 읽기 쉽게 만듭니다).


1

Brightbox Wiki에 언급 된 Brightbox PPA를 사용하는 것이 좋습니다 . 이 같은 모든 정상적인 서비스 나눠 수 있습니다 또는 상자 밖으로합니다.service nginx start/etc/init.d/nginx start

이것은 정확하게 나를 위해 잘 작동합니다 (12.04 LTS).


1
좋은 조언. 참고 : init 파일의 URL이 (으)로 영구적으로 이동되었습니다 https://www.linode.com/docs/assets/660-init-deb.sh.
Teemu Leisti
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.