[Dhis2-users] DHIS2 not restarting with Server after Bootup [SOLVED]

2016-03-23 Thread Adam Dawoodjee
Hello Community, I have DHIS2 2.22 running on ubuntu server 14.04. I have: - setup a the tomcat file with the contents: #!/bin/sh #Tomcat init script HOME=/home/dhis/tomcat/bin case $1 in start) sh ${HOME}/startup.sh ;; stop) sh ${HOME}/shutdown.sh ;; restart) sh ${HOME}/shutdown.sh

Re: [Dhis2-users] DHIS2 not restarting with Server after Bootup [SOLVED]

2016-03-23 Thread Bob Jolliffe
Hi Adam It sounds like you have a system tomcat (/etc/init.d/tomcat7) competing with your custom dhis tomcats. Probably you can uninstall this first to remove any ambiguities (apt-get remove tomcat7). It was probably competing for the default port 8080. Bob On 23 March 2016 at 14:37, Adam