刚刚安装了 nginx,现在出现绑定错误 - 地址已在使用中

发布于 2024-10-05 09:58:52 字数 383 浏览 3 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

旧夏天 2024-10-12 09:58:53

查看

  • 您的 nginx.conf 文件
  • sites-enabled 中的任何站点(通常在 nginx 目录下)

并搜索 >server 部分,listen

  server {
    listen   80;

此处您可以将端口更改为 81,而不是 80。

注意:

  • 您还可以在其中包含 server { Listen } 部分直接你的 nginx.conf
  • 如果你在 Linux 下,配置通常在 /etc/nginx (nginx.conf) 和 sites-enabled位于该目录下。
  • 对于 Apache (Linux),使用 service apache stopservice httpd stop/etc/init.d/apache stop (或 httpd)应该可以停止该进程,或者尝试 killall httpdkillall apache (或 apache2)来停止 Apache。

Look either into

  • your nginx.conf file
  • or any of the sites in sites-enabled (usually under the nginx directory)

and search the server part, listen

  server {
    listen   80;

here you can change the port for 81 for instance instead of 80.

Notes:

  • you may also have the server { listen } part within your nginx.conf directly
  • if you are under Linux, the configuration is usually in /etc/nginx (nginx.conf) and sites-enabled is below that directory.
  • regarding Apache (Linux), using either service apache stop or service httpd stop or /etc/init.d/apache stop (or httpd) should work to stop the process, or try killall httpd or killall apache (or apache2) to stop Apache.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文