刚刚安装了 nginx,现在出现绑定错误 - 地址已在使用中
我正在使用 apache 运行 vps。 刚刚安装了nginx。在端口 80 处收到地址已在使用错误,因为 apache 正在使用它。我是 linux/apache 的新手,所以是否可以更改 nginx 的端口以及如何更改?如果是,它会工作吗,因为我希望它自动提供静态文件,或者我应该让我的托管公司来做,因为我对这些不太了解。
是的,我使用本教程来安装它 http://library.linode。 com/web-servers/nginx/installation/centos-5
感谢帮助:)
提前致谢
i am running a vps with apache.
just installed nginx. got the address already in use error at port 80 because apache is using it. I am new to linux/apache stuff so is it possible to change the port of nginx and how ? if yes will it work as i want it to serve static files automaticaly or should i get my hosting company to do it instead since i don't know much about these.
and yes i used this tutorial to install it http://library.linode.com/web-servers/nginx/installation/centos-5
Help Appreciated :)
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看
nginx.conf
文件sites-enabled
中的任何站点(通常在nginx
目录下)并搜索
>server
部分,listen
此处您可以将端口更改为 81,而不是 80。
注意:
server { Listen }
部分直接你的nginx.conf
/etc/nginx
(nginx.conf) 和sites-enabled
位于该目录下。service apache stop
或service httpd stop
或/etc/init.d/apache stop
(或 httpd)应该可以停止该进程,或者尝试killall httpd
或killall apache
(或 apache2)来停止 Apache。Look either into
nginx.conf
filesites-enabled
(usually under thenginx
directory)and search the
server
part,listen
here you can change the port for 81 for instance instead of 80.
Notes:
server { listen }
part within yournginx.conf
directly/etc/nginx
(nginx.conf) andsites-enabled
is below that directory.service apache stop
orservice httpd stop
or/etc/init.d/apache stop
(or httpd) should work to stop the process, or trykillall httpd
orkillall apache
(or apache2) to stop Apache.