嗨,我刚刚安装了Tomcat并且我正在尝试启动并运行,但每当我尝试导航到manager/html时,它会给我这个错误"请求的资源(/ manager/html)不可用".
主页,/ docs,/ examples都运行正常,我的日志没有显示任何内容.我该如何解决?我在Windows 7 64位上使用Tomcat 6.0.20和JDK 1.6.0_21.
我正在尝试使用Tomcat 7.0.22中的管理器应用程序登录Mac OS X 10.7.这是我得到的错误:http://f.cl.ly/items/421q1K3f1i0X1H1M181v/so.tiff
401 Unauthorized
You are not authorized to view this page. If you have not changed any configuration files, please examine the file conf/tomcat-users.xml in your installation. That file must contain the credentials to let you use this webapp.
For example, to add the manager-gui role to a user named tomcat with a password of s3cret, add the following to the config file listed above.
<role rolename="manager-gui"/>
<user username="tomcat" password="s3cret" roles="manager-gui"/>
Run Code Online (Sandbox Code Playgroud)
我已经在我的tomcat-users.xml中添加了这个,仍然没有使用相同的用户名/密码.
<tomcat-users> …Run Code Online (Sandbox Code Playgroud) 使用本教程http://www.eclipse.org/birt/phoenix/deploy/viewerSetup.php#install_viewer
它告诉我通过这个链接http:// localhost:8080/manager/html显示Tomcat管理器应用程序.
但是,当我点击它时,我的浏览器收到错误,说它无法连接.为什么是这样?如何显示Tomcat Manager应用程序
我正在使用 IntelliJ IDEA 9.0.2,但我认为这个问题也适用于以前的版本。在“运行/调试配置”对话框中,有一个名为“部署‘Tomcat Manager’应用程序”的选项,但我无法在 IntelliJ 帮助或在线中找到任何有关如何使用它的文档。有没有人有使用过这个的经验,并且知道 Tomcat 运行后我可以使用什么 URL 来访问它?
谢谢!