Nginx service 500: Internal Server Error one of the reasons

Nginx service 500: Internal Server Error one of the reasons

500 (Internal Server Error) The server encountered an error and could not complete the request.
501 (Not Implemented) The server does not have the functionality to complete the request. For example, a server might return this code when the server does not recognize the request method.
502 (Bad Gateway) The server, while acting as a gateway or proxy, received an invalid response from an upstream server.
503 (Service Unavailable) The server is currently unavailable (either because it is overloaded or down for maintenance). Usually, this is only a temporary condition.
504 (Gateway Timeout) The server, acting as a gateway or proxy, did not receive a request from an upstream server in a timely manner.
505 (HTTP Version Not Supported) The server does not support the HTTP protocol version used in the request.
Nginx 500 error (Internal Server Error): A 500 error refers to an internal server error, which means that the server encountered an unexpected situation and was unable to fulfill the request.

In the case of high concurrent connections, Nginx is a good alternative to Apache server. Nginx can also be used as a layer 7 load balancing server. According to the test results, Nginx 0.6.31 + PHP 5.2.6 (FastCGI) can handle more than 30,000 concurrent connections, which is 10 times that of Apache under the same environment.

But many people will encounter 500 errors when using Nginx. According to my experience, there are the following situations.

1. Is there insufficient disk space?

Use df -k to check whether the hard disk space is full. Clearing up hard drive space can resolve 500 errors. If nginx has access log enabled, it is best to disable access log if it is not needed. The access log will take up a lot of hard disk space.

2. Is the nginx configuration file wrong?

This does not refer to syntax errors. If there are syntax errors in the nginx configuration file, it will be prompted when it is started. When configuring rewrite, some rules may not be handled properly and a 500 error may occur. Please check your rewrite rules carefully. A 500 error may also occur if some variables in the configuration file are not set correctly, such as referencing a variable that has no value.

3. If none of the above problems exist, it may be that the number of simulated concurrency is too large, and you need to adjust the concurrency setting number of nginx.conf

4. Another problem is that the Linux index node (inode) is full and causes failure. df -i

There could be many reasons, I just record the ones I encountered.

500, internal server error, may actually be an error caused at the code level.

First, check the ngnix or Apache error log, and then check the error log. You can basically find the cause of the error based on the error log, or search the error log on Google or Baidu.

Secondly, you can view the error log information of the framework, such as laravel.log.

sudo find / -name '*.log' 
or 
cd /var/log/nginx/ && ls 

cat /var/log/nginx/newdns.com-error.log 

Summary: The error I encountered this time was because my MySQL table did not have the `updated_at`, `created_at` fields, and was not set in the Laravel framework model

public $timestamps = false; , I wrote the wrong path when rewriting the exception handler Exception, which caused MySQL to throw an error. The framework exception handler could not handle it, so it ran to the server, causing the server to hang. I was devastated.

This is the end of this article about Nginx service 500: Internal Server Error, one of the reasons. For more information about Nginx service 500 error, please search 123WORDPRESS.COM’s previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Detailed explanation of PHP+nginx service 500 502 error troubleshooting ideas

<<:  Data storage implementation method in WeChat applet

>>:  Solve the MySQL login 1045 problem under centos

Recommend

How to use MySQL covering index and table return

Two major categories of indexes Storage engine us...

How to use tcpdump to capture packets in Linux system

Let me look at the example code first: 1. Common ...

React new version life cycle hook function and usage detailed explanation

Compared with the old life cycle Three hooks are ...

How to quickly copy large files under Linux

Copy data When copying data remotely, we usually ...

Analyze the difference between computed and watch in Vue

Table of contents 1. Introduction to computed 1.1...

Markup language - for

Click here to return to the 123WORDPRESS.COM HTML ...

MySQL explain obtains query instruction information principle and example

explain is used to obtain query execution plan in...

What is Software 404 and 404 Error and what is the difference between them

First of all, what is 404 and soft 404? 404: Simpl...

How to generate a free certificate using openssl

1: What is openssl? What is its function? What is...

Introduction and usage of Angular pipeline PIPE

Preface PIPE, translated as pipeline. Angular pip...

Detailed explanation of CSS style cascading rules

CSS style rule syntax style is the basic unit of ...

How to manually scroll logs in Linux system

Log rotation is a very common function on Linux s...

Tutorial on using $attrs and $listeners in Vue

Table of contents introduce Example Summarize int...

Bootstrap 3.0 learning notes button style

This article mainly explains the style of buttons...