Tomcat 中的 NIO 连接器
我尝试通过配置 server.xml 文件在 Tomcat 6.0 中启用 NIO 连接器,但每当我在浏览器中时,都会出现 Firefox 无法建立与 localhost:8081 处服务器的连接。输入localhost:8081。
这就是我在 Tomcat 6.0 中配置 NIO 连接器的方式。我可以知道有什么问题吗?
<Connector connectionTimeout="20000" port="8081" protocol="org.apache.
coyote.http11.Http11NioProtocol" redirectPort="8443"/>
I'm trying to enable NIO Connector in Tomcat 6.0 by configuring server.xml file, but I'm getting Firefox can't establish a connection to the server at localhost:8081. in the browser whenever I type localhost:8081.
This is how I've configured NIO connector in Tomcat 6.0. May I know what's the problem?
<Connector connectionTimeout="20000" port="8081" protocol="org.apache.
coyote.http11.Http11NioProtocol" redirectPort="8443"/>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我已经在我的服务器上尝试过你的标签。
您的连接器标记在
apache.
和coyote
之间有一个不必要的空格将其删除或尝试使用以下之一。
它应该启动。
I've tried your tag on my server.
Your Connector tag has one unnecessary space between
apache.
andcoyote
Remove it or try with the one below.
It should start up.