Tomcat 中的 NIO 连接器

发布于 2024-09-04 21:59:53 字数 368 浏览 4 评论 0原文

我尝试通过配置 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

分分钟 2024-09-11 21:59:53

我已经在我的服务器上尝试过你的标签。

您的连接器标记在 apache.coyote 之间有一个不必要的空格
将其删除或尝试使用以下之一。

<Connector connectionTimeout="20000" port="8081" protocol="org.apache.coyote.http11.Http11NioProtocol" redirectPort="8443"/>

它应该启动。

I've tried your tag on my server.

Your Connector tag has one unnecessary space between apache. and coyote
Remove it or try with the one below.

<Connector connectionTimeout="20000" port="8081" protocol="org.apache.coyote.http11.Http11NioProtocol" redirectPort="8443"/>

It should start up.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文