ajp/1.3端口未在Apache Tomcat中显示

huangapple 未分类评论51阅读模式
标题翻译

ajp/1.3 port no is not showing in apache tomcat

问题

我在使用Eclipse IDE和Apache Tomcat运行我的网页程序,但在更改端口号时,我没有找到ajp/1.3端口。我想在过去解决错误时尝试过更改它,现在它不在了。我尝试重新安装Apache Tomcat,但仍然没有出现。

ajp/1.3端口未在Apache Tomcat中显示
ajp/1.3端口未在Apache Tomcat中显示
请帮助我。

英文翻译

I was running my web program in eclipse ide using apache tomcat but while changing my port number I didn't find ajp/1.3 port, I think in past while solving an error I tried to change it and now it's not there, I tried to reinstall apache tomcat but still, it's not coming.

ajp/1.3端口未在Apache Tomcat中显示
ajp/1.3端口未在Apache Tomcat中显示
please help me

答案1

得分: 0

前往Tomcat服务器的conf($Tomcat_Home/conf)目录,检查server.xml文件中是否存在AJP连接器。如果不存在,在HTTP连接器之后添加以下条目:

<Connector port="8009" protocol="AJP/1.3" redirectPort="8443" />
英文翻译

Go to the Tomcat server conf($Tomcat_Home/conf) directory and check the AJP connector available or not in server.xml. If not the add below entry in server.xml after HTTP connector.

&lt;Connector port=&quot;8009&quot; protocol=&quot;AJP/1.3&quot; redirectPort=&quot;8443&quot; /&gt;

huangapple
  • 本文由 发表于 2020年5月30日 15:12:23
  • 转载请务必保留本文链接:https://java.coder-hub.com/62099082.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定