You are not logged in.
What's the recommended way to make ReportServer startup when the system is booted on Ubuntu 16?
Thanks,
Jay
Offline
Hi Jay.
I use the following script in /etc/init/tomcat.conf to start tomcat:
# tomcat initialization
description "Start tomcat"
start on (net-device-up
and local-filesystems)
script
su tomcat -c "/home/tomcat/apache-tomcat/bin/startup.sh"
end script
take care to change the command su tomcat -c "/home/tomcat/apache-tomcat/bin/startup.sh" to your tomcat user and path.
Walter
Offline