侧边栏壁纸
博主头像
Mick

The you you are.

  • 累计撰写 37 篇文章
  • 累计创建 31 个标签
  • 累计收到 3 条评论

目 录CONTENT

文章目录

nginx: [error] open() "/run/nginx.pid" failed (2: No such file or directory) 解决办法

原因

执行以下命令后,Nginx 会创建 nginx.pid 文件

sudo nginx

但是这个文件会在输入以下命令后自动删除

sudo nginx -s stop

解决办法

重新启动 nginx 服务

sudo nginx

如果出现 “nginx: [emerg] still could not bind()” 错误,这是因为服务器的80端口被占用,通常是安装了其他的网页服务器。
如果曾经安装过 Apache2 , 我们可以使用

/etc/init.d/apache2 stop
0

评论区