Skip to content
Advertisement

Tomcat is not loading on browser after deploying geoserver WAR – Ubuntu

I installed tomcat 8 on my ubuntu 18.04 system. Later I have downloaded geoserver web archive from geoserver page and deployed the war file on /var/lib/tomcat8/webapps. Tomcat is working fine before deploying the war file.[ localhost:8080] is working fine. But the problem I am getting is after deploying the geoserver war in webapps directory tomcat is not loading on browser.

I have started and restarted tomcat server many times using the command sudo service tomcat8 start and sudo service tomca8 restart. But it’s not working after deploying war file.

I would like to install geoserver on tomcat server. I would like to load the geoserver web page as localhost:8080/geoserver.

Any help will be appreciated.

After checking the log file I found these error.

JavaScript

Advertisement

Answer

This problem occurred due to some permission issues. sudo chown -R user:user /var/lib/tomcat8.

In order to deploy any web apps on tomcat8 the tomcat itself should be the owner. By changing the directory permission to tomcat itself it worked!.

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement