当我尝试安装任何软件或重新安装 tomcat7 时出现以下错误:
Job for tomcat7.service failed because the control process exited with
error code. See "systemctl status tomcat7.service" and "journalctl
-xe" for details. invoke-rc.d: initscript tomcat7, action "start" failed. dpkg: error processing package tomcat7 (--configure):
subprocess installed post-installation script returned error exit
status 1 Errors were encountered while processing: tomcat7
E:
Sub-process /usr/bin/dpkg returned an error code (1)
我尝试通过各种方式重新安装 tomcat7,例如:
1.
dpkg -l | grep -i tomcat
要删除 tomcat 库:
dpkg -P <library-name>
然后,我使用以下命令重新安装了 tomcat7:
sudo apt-get install tomcat7
/etc/init.d/tomcat7 stop
/etc/init.d/tomcat7 start
2.
sudo apt-get autoremove tomcat7
sudo apt-get install tomcat7
但它并没有解决问题并且同样的错误不断出现。
下一步我应该尝试什么?
答案1
在安装 java、jre 和 jdk 之前尝试了许多不同的方法。
如何使用 Apt-Get 在 Ubuntu 12.04 上安装 Java | DigitalOcean
还更改了/usr/share/tomcat7/bin/setclasspath.sh
添加以下几行:
export CATALINA_BASE=/var/lib/tomcat7
export CATALINA_HOME=/usr/share/tomcat7
然后我重新启动了电脑。