Comment arrêter tomcat sur linux?
Fermé
francky04
Messages postés
102
Date d'inscription
vendredi 4 février 2005
Statut
Membre
Dernière intervention
16 septembre 2011
-
22 juin 2006 à 14:29
foobar47 Messages postés 13536 Date d'inscription jeudi 9 janvier 2003 Statut Contributeur Dernière intervention 16 mai 2014 - 22 juin 2006 à 14:58
foobar47 Messages postés 13536 Date d'inscription jeudi 9 janvier 2003 Statut Contributeur Dernière intervention 16 mai 2014 - 22 juin 2006 à 14:58
bonjour,
je travaille avec un logiciel, ce pendant j'ai fais des modifications, et je voudrais arrêter tomcat-apache5.5.17, je voudrais savoir comment faire pour arreter tomcat et le redemarrer
merci
je travaille avec un logiciel, ce pendant j'ai fais des modifications, et je voudrais arrêter tomcat-apache5.5.17, je voudrais savoir comment faire pour arreter tomcat et le redemarrer
merci
A voir également:
- Redémarrer tomcat linux
- Raccourci redémarrer pc - Guide
- Redémarrer le spouleur d'impression - Guide
- Diskinternals linux reader - Télécharger - Stockage
- Linux mint 32 bits - Télécharger - Systèmes d'exploitation
- Linux live usb creator - Télécharger - Outils Internet
1 réponse
foobar47
Messages postés
13536
Date d'inscription
jeudi 9 janvier 2003
Statut
Contributeur
Dernière intervention
16 mai 2014
533
22 juin 2006 à 14:58
22 juin 2006 à 14:58
Salut,
Tout dépend d'où se trouve ton binaire tomcat.
Tu fais cette commande :
whereis tomcat
Il devrait te sortir des chemins, tu va dans celui ou il y a le bianire et tu fais stop.
sinon, voici un script que j'ai mis dans mon serveur pour arrêter, relancer ou démarrer tomcat :
Fais-en bon usage...
A++
Tout dépend d'où se trouve ton binaire tomcat.
Tu fais cette commande :
whereis tomcat
Il devrait te sortir des chemins, tu va dans celui ou il y a le bianire et tu fais stop.
sinon, voici un script que j'ai mis dans mon serveur pour arrêter, relancer ou démarrer tomcat :
#!/bin/sh # # tomcatd : ce script lance le serveur tomcat lors d'un reboot de la machine # # chkconfig: - 80 30 # description: Lancement de Tomcat # # pidfile: /var/run/tomcatd.pid # Source function library. if [ -f /etc/init.d/functions ] ; then . /etc/init.d/functions elif [ -f /etc/rc.d/init.d/functions ] ; then . /etc/rc.d/init.d/functions else exit 0 fi export JAVA_HOME=/usr/java/j2sdk1.4.2_09 export TOMCAT_HOME=/usr/java/jakarta-tomcat-4.1.31 export CATALINA_HOME=$TOMCAT_HOME export CATALINA_BASE=$TOMCAT_HOME export CATALINA_TMPDIR=$TOMCAT_HOME/temp # Avoid using root's TMPDIR unset TMPDIR # Source networking configuration. . /etc/sysconfig/network # Check that networking is up. [ ${NETWORKING} = "no" ] && exit 0 RETVAL=0 case "$1" in start) # start daemons echo -n "Starting Tomcat Deamon: " daemon /usr/java/jakarta-tomcat-4.1.31/bin/startup.sh $([ "$DAEMON" = yes ] && echo -bd) \ $([ -n "$QUEUE" ] && echo q$QUEUE) RETVAL=$? echo [ $RETVAL -eq 0 ] && touch /var/lock/subsys/tomcatd ;; stop) # Stop deamons echo -n "Shutting down Tomcat deamon: " /usr/java/jakarta-tomcat-4.1.31/bin/shutdown.sh 1>/var/lock/subsys/tomcatd_stop.log RETVAL=$? [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/tomcatd ;; restart|reload) $0 stop $0 start RETVAL=$? ;; status) status tomcatd RETVAL=$? ;; *) echo $"Usage: $0 {start|stop|restart|status}" exit 1 esac exit $RETVAL
Fais-en bon usage...
A++