nginx 의 Job for nginx. service failed because the control process exited with error code. See "systemct
4852 단어 nginx
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 이면 마음껏 방문 할 수 있 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
간단! Certbot을 사용하여 웹 사이트를 SSL(HTTPS)화하는 방법초보자가 인프라 주위를 정돈하는 것은 매우 어렵습니다. 이번은 사이트를 간단하게 SSL화(HTTP에서 HTTPS통신)로 변경하는 방법을 소개합니다! 이번에는 소프트웨어 시스템 Nginx CentOS7 의 환경에서 S...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.