Error running 'Tomcat 9.0.24': p

2019-08-26  本文已影响0人  哈士奇会打字

idea 部署tomcat应用 报错: Error running 'Tomcat 9.0.24': port out of range:-1
在 tomcat的 conf/service.xml 中一定存在报错的配置
自己搜索了 -1之后,找到对应配置在如下代码块中,更改为正常端口后,问题解决

<Server port="-1" shutdown="SHUTDOWN">
  <Listener className="org.apache.catalina.startup.VersionLoggerListener" />
  <!-- Security listener. Documentation at /docs/config/listeners.html
  <Listener className="org.apache.catalina.security.SecurityListener" />
  -->
  <!--APR library loader. Documentation at /docs/apr.html -->
  <Listener className="org.apache.catalina.core.AprLifecycleListener" SSLEngine="on" />
  <!-- Prevent memory leaks due to use of particular java/javax APIs-->
  <Listener className="org.apache.catalina.core.JreMemoryLeakPreventionListener" />
  <Listener className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener" />
  <Listener className="org.apache.catalina.core.ThreadLocalLeakPreventionListener" />
上一篇下一篇

猜你喜欢

热点阅读