Tomcat配置求助!

发布于 2024-10-06 08:43:21 字数 581 浏览 4 评论 0原文

您好,

我在实现此目标时遇到问题。 我正在使用 XAMPP Tomcat 6.02 和 Netbeans 6.9.1。 我希望这些发生, localhost:8080/myProject/ 到 localhost/

我已将端口 8080 设置为 conf/server.xml 上的端口 80。 我在将 myProject 设为 ROOT 时遇到问题。

这是我遵循的步骤。

  1. 安装 XAMPP Tomat 6.0
  2. 使用端口 8080 运行它
  3. 关闭 Tomcat
  4. 将 server.xml 上的端口 8080 更改为端口 80
  5. 清除工作目录的竞争
  6. 在 Netbeans 6.9.1 上创建 myProject 并将其上下文路径设置为 /ROOT
  7. 使用 XAMPP 控制面板启动 XAMPP Tomcat
  8. 已部署Netbeans 6.9.1 上的项目使用 XAMPP Tomcat 作为配置的服务器。

最后,我收到这些错误 “该模块尚未部署。”

我该如何解决这个问题?

谢谢, 西里尔·H.

Greetings,

I am having a problem on making this possible.
I am using XAMPP Tomcat 6.02 and Netbeans 6.9.1.
I want these to happen, localhost:8080/myProject/ to localhost/

I have made the port 8080 to port 80 on the conf/server.xml.
I am having a problem on making myProject to ROOT.

Here the steps I've followed.

  1. Install XAMPP Tomat 6.0
  2. Run it using port 8080
  3. Shutdown Tomcat
  4. Change port 8080 to port 80 on server.xml
  5. Cleared the contest of work directory
  6. Created myProject on Netbeans 6.9.1 and set its context path to /ROOT
  7. Start XAMPP Tomcat using XAMPP Control Panel
  8. Deployed the project on Netbeans 6.9.1 using XAMPP Tomcat as configured server.

And the end of the, I'm getting these error
"The module has not been deployed."

How could I resolve this?

Thanks,
Cyril H.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

糖粟与秋泊 2024-10-13 08:43:21

实现此目的的一种方法是将构建的应用程序移至 webapps/foo 下并配置 server.xml:

<Host name="localhost" appBase="webapps/foo" />

尽管这是一种静态(固定)方法,并且 NB 重新部署无法开箱即用。

One way to do this is to move your built application under webapps/foo and configure server.xml with:

<Host name="localhost" appBase="webapps/foo" />

This is a static (fixed) approach though and NB redeployment will not work out of the box.

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