Nginx 설정 부팅 / etc / init. d / nginx

1780 단어
배경
Nginx 패 키 지 를 다운로드 하고 컴 파일 하여 설치 합 니 다.
설치 디 렉 터 리: / usr / local / nginx
프로필: / usr / local / nginx / conf / nginx. conf
/ etc / init. d / nginx 파일 만 들 기
Nginx 홈 페이지 에 있 는 NGINX Init Scripts 에서 시작 스 크 립 트 를 선택 하 십시오. 저 는 CentOS 시스템 입 니 다. Red Hat NGINX Init Script 를 선택 하여 스 크 립 트 를 / etc / init. d / nginx 로 복사 합 니 다.
/ etc / init. d / nginx 접근 권한 설정
# !bin/bash
#(a+x     ==> all user can execute         )
chmod a+x /etc/init.d/nginx

소프트 연결 만 들 기
스 크 립 트 를 자세히 살 펴 보면 스 크 립 트 에 있 는 nginx 의 관련 경 로 는 이 컴퓨터 가 설치 한 경로 와 일치 하지 않 습 니 다.
nginx 파일
이 컴퓨터 경로
스 크 립 트 경로
nginx 실행 파일
/usr/bin/nginx
/usr/sbin/nginx
nginx. conf 프로필
/usr/local/nginx/conf/nginx.conf
/etc/nginx/nginx.conf
위 경로 에 따라 소프트 연결 만 들 기
# !bin/bash
ln -s /usr/bin/nginx /usr/sbin/nginx
ln -sfn /usr/local/nginx/conf/ /etc/nginx/

기본 시작 설정
# !bin/bash
vi /etc/rc.local

   /etc/init.d/nginx start

명령 을 실행 하 는 중 오류 가 발생 했 습 니 다.
1、 Job for nginx.service failed because the control process exited with error code. See "systemctl status nginx.service" and "journalctl -xe" for details
nginx 서 비 스 를 닫 으 면 됩 니 다.
2. 'Starting nginx (via systemctl) 에 계속 걸 려 있 습 니 다.
# !bin/bash

#     
service nginx status

  :Can't open PID file /run/nginx.pid (yet?) after start: ...ctory

#   nginx.conf  pid
pid  /etc/nginx/logs/nginx.pid;

#   nginx.pid
cd /etc/nginx && mkdir logs && touch logs/nginx.pid

#    /lib/systemd/system/nginx.service     /run/nginx.pid,   /etc/nginx/logs/nginx.pid

#     
systemctl daemon-reload

#   nginx  
killall -9 nginx

#       
service nginx start


좋은 웹페이지 즐겨찾기