Installer le service sur les systèmes RedHat/CentOS 7
Les commandes suivantes doivent être exécutées avec les privilèges super-utilisateur.
Créez le fichier du service à l'aide de la commande suivante :
touch /etc/systemd/system/tomcat.service
Assignez les droits nécessaires aux fichier créé :
chmod 664 /etc/systemd/system/tomcat.service
Collez le contenu suivant dans le fichier, en l'adaptant à votre configuration :
[Unit] Description=Apache Tomcat Web Application Container After=syslog.target network.target [Service] Type=forking Environment=JAVA_HOME=/usr/lib/jvm/jre Environment=CATALINA_PID=/opt/tomcat/temp/tomcat.pid Environment=CATALINA_HOME=/opt/tomcat Environment=CATALINA_BASE=/opt/tomcat Environment='CATALINA_OPTS=-Xms512M -Xmx1024M -server -XX:+UseParallelGC' Environment='JAVA_OPTS=-Djava.awt.headless=true -Djava.security.egd=file:/dev/./urandom' ExecStart=/opt/tomcat/bin/startup.sh ExecStop=/bin/kill -15 $MAINPID [Install] WantedBy=multi-user.target
Relancez le démon du service :
systemctl daemon-reload
Démarrez le service :
systemctl start tomcat.service
Installer le service sur les systèmes RedHat/CentoOS 6 et Ubuntu
Créez/Copiez le script suivant dans le fichier /etc/init.d/tomcat :
# chkconfig: 345 91 10 # description: Starts and stops the Tomcat daemon. # # Source function library. . /etc/rc.d/init.d/functions # Get config. . /etc/sysconfig/network # Check that networking is up. [ "${NETWORKING}" = "no" ] && exit 0 user=cxp tomcat=/u/bin/Tomcat/apache-tomcat-8.0.33/ startup=$tomcat/bin/startup.sh shutdown=$tomcat/bin/shutdown.sh #export JAVA_HOME=/usr/local/java status(){ ps ax --width=1000 | grep "[o]rg.apache.catalina.startup.Bootstrap start" | awk '{printf $1 " "}' | wc | awk '{print $2}' > /tmp/tomcat_process_count.txt read line < /tmp/tomcat_process_count.txt if [ $line -gt 0 ]; then echo -n "tomcat ( pid " ps ax --width=1000 | grep "[o]rg.apache.catalina.startup.Bootstrap start" | awk '{printf $1 " "}' echo -n ") is running..." echo else echo "Tomcat is stopped" fi } start(){ echo -n $"Starting Tomcat service: " #daemon -c su - $user -c "$startup" RETVAL=$? echo } stop(){ action $"Stopping Tomcat service: " su - $user "$shutdown" RETVAL=$? echo } restart(){ stop start }
# See how we were called. case "$1" in start) start ;; stop) stop ;; status) status tomcat ;; restart) restart ;; *) echo $"Usage: $0 {start|stop|status|restart}" exit 1 esac exit 0
Modifiez les valeurs des variables user et tomcat du script afin qu'elles correspondent à votre configuration.
Saisissez :
chkconfig --list
chkconfig --add tomcat
pour ajouter ce service à votre système.