前端开发--nginx番外篇
Centos7下Nginx开发使用(背景: 阿里云ECS Centos7)
安装和启动
- 安装教程
Centos7安装Nginx实战
需要主意的如下:
文中第四步 4.配置编译参数命令:(可以使用./configure --help查询详细参数)
如图 执行。./configure
启动后查看 (4).查看是否启动:
ps -ef grep nginx
语法错了ps -ef | grep nginx
也可以使用netstat -ntpl 查看 不过需要yum -y install net-tools
- 启动
centos7 ECS下启动
/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
最后如果还是无法访问的问题
- 检查防火墙
解决问题: 关闭防火墙 systemctl stop firewalld.service 等
解决参考文章 - 检查80端口
阿里云 安装好后 请求空白或者无法访问 80端口问题 输入命令无效
后检查 在阿里云后台安全组设置需要手动添加HTTP 80 端口
https://blog.csdn.net/qq_32953079/article/details/81975160
跳坑报错指南
一如本地nginx配置,线上Centos7也会报如下错误
nginx: [error] invalid PID number ; in /usr/local/nginx/logs/nginx.pid
具体情况如下:nginx 重新加载命令./nginx -s reload,出现
nginx: [error] invalid PID number "" in "/usr/local/nginx/logs/nginx.pid"问题。
解决办法:
第一步:执行命令 killall -9 nginx 杀掉nginx 进程
第二步:执行命令 /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf 重新加载配置文件
第三步:执行命令 ./nginx -s reload 重新启动nginx
想法、意识远比技术本身更有传授的价值!
多积累,肯动脑子,肯动手敲代码,多学习,提升自己的能力和对编程思想的理解能力才是最关键!