启动Tomcat6.x时,manager does not exist or is not a readable directory-解决

几天重新安装了Tomcat6,安装完Tomcat6后在wepapps下面会有一些tomcat自带的项目(root、manager、host-manager等几个),这几天项目没什么用我就删掉了,后来在MyEclipse中配置好Tomcat,新建web项目,在启动Tomcat是会出现

严重: Error starting static Resources

java.lang.IllegalArgumentException: Document base D:\Program Files\Apache Software Foundation\Tomcat 6.0\webapps\host-manager does not exist or is not a readable directory

严重: Error starting static Resources

java.lang.IllegalArgumentException: Document base D:\Program Files\Apache Software Foundation\Tomcat 6.0\webapps\manager does not exist or is not a readable directory

错误;

这是因为在conf\Catalina\localhost里面有两个xml文件host-manager.xml、manager.xml,删掉他们在启动Tomcat就没问题了。

或Catalina里面其它的文件夹中也可能存在host-manager.xml,manager.xml这样的文件, 把它们都删除了就可以了.

再就是我们自己建立的项目删掉以后也会出现这种问题

我们就把conf\Catalina\localhost相应配置文件删掉、把conf下的server.xml及context.xml中的相关配置删掉。

时间: 2024-10-05 21:27:37

启动Tomcat6.x时,manager does not exist or is not a readable directory-解决的相关文章

Document base C:\Tomcat 6.0\webapps\manager does not exist or is not a readable directory

错误显示: 严重: Error starting static Resources java.lang.IllegalArgumentException:Document base C:\Tomcat 6.0\webapps\manager does not exist or is not a readable directory 解决方法: 在部署项目启动后,出现这样的错误可能是因为Tomcat/webapps目录下,原自带的以下四个文件夹让你删除了.并且在你访问http://localhos

启动Tomcat报异常host-manager does not exist or is not a readable directory

前几天重新安装了Tomcat6,安装完Tomcat6后在wepapps下面会有一些tomcat自带的项目(root.manager.host- manager等几个),这几天项目没什么用我就删掉了,后来在MyEclipse中配置好Tomcat,新建web项目,在启动Tomcat是会出现 严重: Error starting static Resources java.lang.IllegalArgumentException: Document base D:/Program Files/Apa

Eclipse里Tomcat报错:Document base ……does not exist or is not a readable directory

问题描述: 严重: Error starting static Resourcesjava.lang.IllegalArgumentException: Document base D:\Code\MyJavaCode\.metadata\.plugins\org.eclipse.wst.server.core\tmp0\wtpwebapps\newsInfoCrawler does not exist or is not a readable directory 解决办法: 需要执行下面操作:

tomcat启动报错:java.lang.IllegalArgumentException: Document base D:\apache-tomcat-6.0.45\webapps\activiti-explorer does not exist or is not a readable directory

java.lang.IllegalArgumentException: Document base D:\apache-tomcat-6.0.45\webapps\erp does not exist or is not a readable directory at org.apache.naming.resources.FileDirContext.setDocBase(FileDirContext.java:142) at org.apache.catalina.core.Standard

host-manager does not exist or is not a readable directory

当tomcat启动出现这个错误时,按照如下步骤可以解决: 1.删掉F:\tomcat20111101\apache-tomcat-6.0.26\conf\Catalina目录下的localhost文件夹 2.删掉F:\tomcat20111101\apache-tomcat-6.0.26\webapps目录下的两个文件夹 host-manager does not exist or is not a readable directory

关于 Tomcat 6.0:"XXX" does not exist or is not a readable directory 问题的解决办法

问题描述:将项目部署到Eclipse集成的Tomcat服务器中中的时候,控制台报错:XXX does not exist or is not a readable directory . 出现原因:直接在Tomcat工作目录下,将之前部署的项目删除,而Tomcat不知道已经删除. 解决办法: 方法一:[实测有效]简单粗暴,操作方便[推荐] 将Eclipse中现集成好的Tomcat服务器删除"Delete",然后重新配置一个新的Tomcat服务器,将项目部署到服务器中,启动服务器,观察服

tomcat报错java.lang.IllegalArgumentException: Document base XXXXX does not exist or is not a readable directory

启动tomcat的时候报如下错误: java.lang.IllegalArgumentException: Document base F:\java\tools\tomcat\me-webapps\drp1.1 does not exist or is not a readable directory     at org.apache.naming.resources.FileDirContext.setDocBase(FileDirContext.java:142)    at org.a

IDEA启动Tomcat服务器时某些端口(如1099端口)被占用的解决办法

启动Tomcat服务器时,出现1099端口被其它进程占用了解决办法: 1.找出占用1099端口的进程,进入windows命令,查看什么进程占用了1099端口,使用命令:netstat -aon|findstr 1099 找出占用1099端口的进程 2.然后关闭占用该端口的进程:taskkill -f -pid 3756 这样就可以正常启动Tomcat了.问题顺利解决了.--------------------- 作者:muyu1102 来源:CSDN 原文:https://blog.csdn.n

Tomcat启动的时候 报Document base …does not exist or is not a readable directory错误

原因是 tomcat中的文件conf\server.xml 中<Context>节点配置了很多已经移除的项目: 删除无用的 conf\server.xml 中的  <Context>  节点: (删除 Catalina\localhost 下的所有文件夹:) 认真检查server.xml这个文件是否错误