来复盘一下:
我干的事:我rm了wordpress的conf文件,重新创建并编辑了它
之后:systemctl start nginx
Job for nginx.service failed because the control process exited with error code.
See "systemctl status nginx.service" and "journalctl -xe" for details.
和:nginx -s reload
nginx: [error] invalid PID number "" in "/run/nginx.pid"
开始轮流报错,解决一个出现下一个,并同时报销了我的rss阅读器域名(我猜测可能是因为端口冲突,但实在没有搞懂所以是乱猜的)
我做了什么:检查了分号,尝试直接杀掉进程,重启nginx,删掉wordpress那边的配置文件想让miniflux这边先恢复(中间研究过的太多了很难列出来了…)
目前的情况:ip+端口可以访问,域名瘫痪,如图所示,我是南方流泪獭獭
@[email protected] 看起来是找不到nginx进程,需要重新指定nginx.conf文件。
https://www.cnblogs.com/wxdblog/p/9729335.html
@juju 我之前执行过这个解决办法
nginx -t返回:nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful
因此输入nginx -c /etc/nginx/nginx.conf
返回如图结果,然后我就不知道怎么办了
@juju 443应该是毛象,80可能是wp,我昨天抄了个8000:80……
谢谢!我有思路了,我回家后再研究一下
@[email protected] 80和443端口都被占用了,
netstat -anp |grep 80
看看是什么程序占用了。参考这两个解决方法:
https://blog.csdn.net/worldzhy/article/details/103859631
https://www.cnblogs.com/tinywan/p/8127822.html