1

当我在 Windows 中启动 jira 时,它在默认端口 8080 上成功启动,情况是我希望在同一端口上启动另一个应用程序,当我搜索 /conf/server.xml 时,我没有找到连接器端口设置,但是当我通过 jira 提供的 GUI 工具时,我能够获取端口设置,

所以我的问题是jira是如何实现这一点的,jira是否考虑了其他设置或其他什么。?

任何建议...

4

1 回答 1

0

Jira 确实尊重 conf/server.xml 文件。如果您需要更改端口号,则应在默认连接器中设置它(如果不存在,您可以添加它):

<Connector port="8082"
  maxThreads="150"
  minSpareThreads="25"
  maxSpareThreads="75"
  connectionTimeout="20000"

  enableLookups="false"
  maxHttpHeaderSize="8192"
  protocol="HTTP/1.1"
  useBodyEncodingForURI="true"
  redirectPort="8443"
  acceptCount="100"
  disableUploadTimeout="true"/>

有关 Jira 的 Atlassian Confluence 站点的更多信息:https ://confluence.atlassian.com/display/JIRA/Changing+JIRA 's+TCP+Ports。

此外,您可能需要考虑http://www.serverfault.com以了解未来的问题,stackoverflow 的兄弟进行系统管理问答。

于 2013-01-11T14:13:49.597 回答