Reinstall Apache Tomcat7 on Ubuntu 12.04

I installed tomcat7 on ubuntu and then I deleted the / etc / tomcat 7 folder to completely remove it. Now I want to reinstall Tomcat7, but the sudo apt-get install tomcat7 command gives me an error. Can someone help me solve this problem?

Error - enter image description here

+5
source share
1 answer

I figured out this problem. I am posting this for future reference.

This problem can be solved with the command -

 sudo apt-get purge tomcat7

This removes all related dependencies. After that I did -

 sudo apt-get install tomcat7
+28
source

All Articles