nginx.service - A high performance web server and a reverse proxy server

Own server reported 502 errors, check the status nginx error:

ubuntu@VM-0-13-ubuntu:/etc/nginx/sites-enabled$ service nginx status 
● nginx.service - A high performance web server and a reverse proxy server
   Loaded: loaded (/lib/systemd/system/nginx.service; enabled; vendor preset: enabled)
   Active: failed (Result: exit-code) since Wed 2020-02-26 00:26:39 CST; 4min 0s ago
     Docs: man:nginx(8)
  Process: 1853 ExecStartPre=/usr/sbin/nginx -t -q -g daemon on; master_process on; (code=exited, status=1/FAILURE)

Feb 26 00:26:39 VM-0-13-ubuntu systemd[1]: Starting A high performance web server and a reverse proxy server...
Feb 26 00:26:39 VM-0-13-ubuntu nginx[1853]: nginx: [emerg] "server" directive is not allowed here in /etc/nginx/sites-enabled/
Feb 26 00:26:39 VM-0-13-ubuntu nginx[1853]: nginx: configuration file /etc/nginx/nginx.conf test failed
Feb 26 00:26:39 VM-0-13-ubuntu systemd[1]: nginx.service: Control process exited, code=exited status=1
Feb 26 00:26:39 VM-0-13-ubuntu systemd[1]: nginx.service: Failed with result 'exit-code'.
Feb 26 00:26:39 VM-0-13-ubuntu systemd[1]: Failed to start A high performance web server and a reverse proxy server.

Search a good meal ... why not check out the first note of it, and so resolved then update ...

---------------------------- ------------------- gorgeous dividing line -----

Why not check out ,, because it is super junior their own errors

ubuntu@VM-0-13-ubuntu:~$ sudo nginx -t
nginx: [emerg] "server" directive is not allowed here in /etc/nginx/sites-enabled/default:31
nginx: configuration file /etc/nginx/nginx.conf test failed

Check their profiles, suggesting a problem with line 31, open to see themselves less wrote ...}

Plus nginx next reboot

ubuntu@VM-0-13-ubuntu:~$ sudo nginx -t
nginx: [emerg] "server" directive is not allowed here in /etc/nginx/sites-enabled/default:31
nginx: configuration file /etc/nginx/nginx.conf test failed

View the nginx state is active

ubuntu@VM-0-13-ubuntu:~$ service nginx status
● nginx.service - A high performance web server and a reverse proxy server
   Loaded: loaded (/lib/systemd/system/nginx.service; enabled; vendor preset: enabled)
   Active: active (running) since Wed 2020-02-26 02:07:42 CST; 17s ago
     Docs: man:nginx(8)
  Process: 2765 ExecStart=/usr/sbin/nginx -g daemon on; master_process on; (code=exited, status=0/SUCCESS)
  Process: 2754 ExecStartPre=/usr/sbin/nginx -t -q -g daemon on; master_process on; (code=exited, status=0/SUCCESS)
 Main PID: 2769 (nginx)
    Tasks: 2 (limit: 2124)
   CGroup: /system.slice/nginx.service
           ├─2769 nginx: master process /usr/sbin/nginx -g daemon on; master_process on;
           └─2772 nginx: worker process

Feb 26 02:07:42 VM-0-13-ubuntu systemd[1]: Starting A high performance web server and a reverse proxy server...
Feb 26 02:07:42 VM-0-13-ubuntu systemd[1]: nginx.service: Failed to parse PID from file /run/nginx.pid: Invalid argument
Feb 26 02:07:42 VM-0-13-ubuntu systemd[1]: Started A high performance web server and a reverse proxy server.

But still reported 502 wrong ,, ah? Re-check, found again update

 

Guess you like

Origin www.cnblogs.com/cxl-blog/p/12364952.html