nginx 의 Job for nginx. service failed because the control process exited with error code. See "systemct

4852 단어 nginx
ngnix 시작 실패:
systemctl restart nginx

오 류 는 다음 과 같다. 
Job for nginx.service failed because the control process exited with error code. See "systemctl status nginx.service" and "journalctl -xe" for details.

시작 에 실 패 했 을 확률 이 높 은 이 유 는 설정 파일 에 문제 가 있 기 때 문 입 니 다.중요 한 것 은 이 명령 을 통 해 Nginx 설정 이 성 공 했 는 지 확인 할 수 있 습 니 다.
nginx -t

결 과 는 다음 과 같다.
[root@fuyun /]# nginx -t
nginx: [emerg] duplicate location "/" in /etc/nginx/nginx.conf:51
nginx: configuration file /etc/nginx/nginx.conf test failed

설 정 된 51 줄 이 중복 되 었 음 을 설명 합 니 다.
나 는 ngnix. conf 를 열 어 중복 항목 을 삭제 하고 터미널 입력:
vi /etc/nginx/nginx.conf

편집 열기:
#user  nobody;
worker_processes  1;

#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#pid        logs/nginx.pid;


events {
    worker_connections  1024;
}

http {
    include       mime.types;
    default_type  application/octet-stream;

    #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
    #                  '$status $body_bytes_sent "$http_referer" '
    #                  '"$http_user_agent" "$http_x_forwarded_for"';

    #access_log  logs/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;

    #gzip  on;

    server {
        listen       80;
         server_name  _;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
             root   /usr/local/nginx/html;
             index  index.php index.html index.htm;
}
        location ~*^.+$ {
            root   /root/sites/jd/;
            index  index.html index.htm;
        }
        location / {
            root   html;
            index  index.html index.htm;
        }
        #error_page  404              /404.html;
                # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }

        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ \.php$ {
        #    proxy_pass   http://127.0.0.1;
        #}

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        location ~ \.php$ {
            root           /usr/local/nginx/html;
            fastcgi_pass   127.0.0.1:9000;
            fastcgi_index  index.php;
              fastcgi_param SCRIPT_FILENAME /usr/local/nginx/html/$fastcgi_script_name;
            include        fastcgi_params;
        }
        location ~ \.html$ {
            root           /usr/local/nginx/html;
            fastcgi_pass   127.0.0.1:9000;
            fastcgi_index  index.html;
        fastcgi_param SCRIPT_FILENAME /usr/local/nginx/html/$fastcgi_script_name;
            include        fastcgi_params;
        }

        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        #location ~ /\.ht {
        #    deny  all;
        #}
    }
    
    # another virtual host using mix of IP-, name-, and port-based configuration
    #
    #server {
    #    listen       8000;
    #    listen       somename:8080;
    #    server_name  somename  alias  another.alias;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}


    # HTTPS server
    #
    #server {
    #    listen       443 ssl;
    #    server_name  localhost;
    #    ssl_certificate      cert.pem;
    #    ssl_certificate_key  cert.key;

    #    ssl_session_cache    shared:SSL:1m;
    #    ssl_session_timeout  5m;

    #    ssl_ciphers  HIGH:!aNULL:!MD5;
    #    ssl_prefer_server_ciphers  on;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}

}

볼 수 있 는 이 location 이 중복 되 었 습 니 다.
location / {
            root   html;
            index  index.html index.htm;
        }

삭제 한 다음 nginx - t 명령 을 다시 실행 합 니 다.
[root@fuyun /]# nginx -t
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful

이것 이 바로 ok 입 니 다. 그리고 nginx 서 비 스 를 다시 시작 할 수 있 습 니 다. 터미널 입력:
systemctl restart nginx

알림 이 없 으 면 재 부팅 에 성 공 했 음 을 설명 하고 프로필 을 다시 불 러 옵 니 다.
service nginx reload

결과:
[root@fuyun /]# service nginx reload
Reloading nginx configuration (via systemctl):             [  OK  ]
[root@fuyun /]# 

이 ok 이면 마음껏 방문 할 수 있 습 니 다.

좋은 웹페이지 즐겨찾기