标题翻译
ajp/1.3 port no is not showing in apache tomcat
问题
我在使用Eclipse IDE和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.
答案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.
<Connector port="8009" protocol="AJP/1.3" redirectPort="8443" />
专注分享java语言的经验与见解,让所有开发者获益!
评论