如何配置 Hudson 在端口 80 上运行?

发布于 2024-11-09 03:54:12 字数 180 浏览 0 评论 0原文

我正在将 Hudson 设置为集成服务器,希望其他开发人员和堆栈持有者能够访问它。我不想通过特定端口传递 url,而是想将 Hudson 配置为侦听端口 80。

将 Hudson 安装为服务的默认端口是 8080。我想在服务器上将其更改为 80未运行 IIS 或 Apache 的 2008 R2 或 Windows 7 计算机。

I'm setting up Hudson as an integration server that I expect other developers and stackholders to access. Rather than have to pass around urls with a specific port, I'd like to configure Hudson to listen on port 80.

The default port from installing Hudson as a service is 8080. I'd like to change this to 80, on a Server 2008 R2 or windows 7 machine that isn't running IIS or Apache.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

日久见人心 2024-11-16 03:54:12

执行以下操作来重新配置端口:

  • 编辑 hudson.xml(位于您的 hudson 安装目录中)
    • 将第 44 行的参数字符串更改为引用端口 80(--httpPort=8080 更改为 --httpPort 80)
  • 根据您可能设置的插件,可能还有对 hudson url 的其他引用。通过在 hudson 目录中的“:8080”上进行文本搜索并删除端口号来找到这些内容。
  • 禁用“万维网发布服务”服务。默认情况下,该服务使用端口 80,这是我们要使用的端口。
  • 验证您的计算机是否配置为接受端口 80 上的外部连接(即打开防火墙端口)
  • 重新启动 Hudson 服务。

Do the following to reconfigure the port :

  • Edit hudson.xml (found in your hudson installation directory)
    • change the parameter string on line 44 to reference port 80 (--httpPort=8080 to --httpPort 80)
  • Depending on what plugins you may have set up, there may be other references to the hudson url. Find these by doing a text search in the hudson directory on ':8080' and removing the port number.
  • Disable the 'World Wide Web Publishing Service' service. By default, this service consumes port 80, which is the port we want to use.
  • Verify that your machine is configured to accept an external connection on port 80 (ie, open a firewall port)
  • Restart the Hudson service.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文