侧边栏壁纸
博主头像
Mick

The you you are.

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

目 录CONTENT

文章目录

Nginx 出现 nginx - nginx: [emerg] bind() to [::]:80 failed (98: Address already in use) 的解决办法

错误的原因是因为 80 端口被占用。可以用命令来查看 80 端口的使用情况

lsof -i:PORT

如果是被 Apache 2 占用,下面方法可以解决。

sudo apachectl stop

or you can run this on Ubuntu

sudo /etc/init.d/apache2 stop
0

评论区