服务器nginx配置问题the page you are looking for is currently unavailable

假如我现在打开我的网站蓝码网,但是打不开网站,出现了如下的问题:

An error occurred.

Sorry, the page you are looking for is currently unavailable.

Please try again later.
If you are the system administrator of this resource then you should check theerror log for details.

Faithfully yours, nginx.


这个可能出现的问题原因之一是服务器里面有个叫 php-fpm 被停止了。

首先用
ps -ef|grep 9000
监听端口,如果发现 php-fpm被停止了,给启动一下就可以了。
去到对应的php/sbin目录下面执行:./php-fpm

其他常见的对应端口:
ngnx启动对应80端口
php-fpm 对应9000
mysql 对应 3306

你可能感兴趣的:(linux,linux,nginx)