在 tomcat6 上托管 java/j2ee Web 应用程序以及 mysql5.1 数据库
我有一个使用 tomcat6 构建的 java/j2ee Web 应用程序,在后端我有 mysql 5.1 数据库,我已经配置了亚马逊 ec2 实例的服务器,并且我已经安装了 apache tomcat6 以及 mysql5.1 和 java6。我有我的项目的 .war 文件。那么我应该做什么,我应该把这些战争文件放在哪里?
请帮助我
I have a java/j2ee web application built using tomcat6 and at back endI have mysql 5.1 database, I have configured my server that an amazon ec2 instance and I have installed apache tomcat6 along with mysql5.1 and also java6. I have .war file of my project. So what should I do where should I place those war files ??
Kindly help me
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这通常位于 tomcat 实例的 webapps 文件夹中。默认情况下还有一个名为 ROOT 的 Web 应用程序,因此请查找该文件夹并将该应用程序放在 ROOT 上方的文件夹中。阅读 tomcat 文档以启用管理器应用程序(您需要编辑用户 XML 文件以创建管理器角色用户和密码)。然后转到管理器 URL,它会让你上传你的战争。然后您应该看到它在磁盘上的部署位置。
This is usually in the webapps folder of the tomcat instance. By default there is also a web app called ROOT so look for that folder and put the app in the folder above ROOT. Read the tomcat docs to enable the manager application (you need to edit users XML file to create manager role user and password). Then go to the manager URL and it will let you upload your war. You should then see where it is deploying it on disk.