nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use) nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use) nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use) nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use) nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use) nginx: [emerg] still could not bind()
时间: 2023-07-26 08:36:15 浏览: 368
nginx启动服务提示98: Address already in use错误的解决
这个错误表示 Nginx 无法绑定 0.0.0.0:80 这个地址,因为该地址已经被其他进程占用了。在大多数情况下,这是因为另一个 HTTP 服务器(例如 Apache)已经在监听 80 端口。你可以使用以下命令查找占用 80 端口的进程:
```
sudo lsof -i:80
```
该命令将显示占用 80 端口的进程列表。确定占用该端口的进程后,你可以选择停止该进程或将 Nginx 监听其他端口。例如,你可以将 Nginx 的监听端口改为 8080,可以在配置文件中添加以下内容:
```
server {
listen 8080;
...
}
```
然后使用以下命令启动 Nginx:
```
./nginx -c /path/to/nginx.conf
```
这样,Nginx 将监听 8080 端口,你可以在浏览器中访问 http://localhost:8080/ 来测试 Nginx 是否正常工作。
阅读全文