以下是LNMP常见错误代码及处理方法:
502 Bad Gateway
systemctl status php-fpm
,未运行则启动:systemctl start php-fpm
。fastcgi_pass
指向正确(如127.0.0.1:9000
或正确sock路径),修改后重启Nginx:systemctl restart nginx
。www-data
或nobody
)。500 Internal Server Error
/var/log/php-fpm/error.log
),定位代码错误。error_reporting(E_ALL)
和ini_set('display_errors', 1)
显示错误。403 Forbidden
location
块的权限设置(如allow
/deny
),确保允许访问。www-data
)对网站目录有读写权限:chown -R www-data:www-data /path/to/site
。端口被占用
netstat -tuln | grep 端口号
找到占用进程,终止进程:kill -9 进程ID
。配置文件错误
nginx -t
和php-fpm -t
检查配置文件语法,修正错误后重启服务。其他通用问题
/var/log/nginx/error.log
)、PHP错误日志(/var/log/php-fpm/error.log
)是排查问题的关键。pm.max_children
参数或优化服务器配置。具体错误需结合日志信息进一步分析,若无法解决可提供详细错误日志寻求帮助。