action1:tomcat7w.exe里面path to executable不是当前所用的tomcat(可执行文件路径是你以前使用过的tomcat路径,导致启动服务报错:找不到可执行文件)
解决办法:运行regedit打开注册表:HKEY_LOCAL_MACHINE\SYSTEM\ControlSet002\services\Tomcat7
修改ImagePath项即可。有时候不重启就可以,如果不生效,则重启电脑。
action2:启动tomcat服务报错
卸载服务后重新安装服务:
a.管理员运行cmd,sc delete 服务名(双击服务后查看服务名);
b.运行cmd打开控制台,进入Tomat目录/bin文件夹,输入如下命令service.bat install
例子:
TOMCAT的目录为:E:\Program Files\Apache Software Foundation\Apache Tomcat 7.0.14\bin\service.bat
运行cmd打开控制台,依次输入:
①e:
②cd program files\apache software foundation\apache tomcat 7.0.14\bin
③service.bat install
顺便说一下,运行service.bat remove可以移除服务
action3:eclipse 无法创建tomcat7.0的server(选中tomcat7之后下面下一步按钮是灰色的)
1. 关闭Eclipse;
2. 打开WorkSpace所在的位置:
找到{workspace-directory}/.metadata/.plugins/org.eclipse.core.runtime/.settings 删除以下文件
org.eclipse.wst.server.core.prefs、org.eclipse.jst.server.tomcat.core.pref;
3. 重启 Eclipse,即可解决所有问题。