Configurando o tomcat autostart no Linux?

2

Portanto, eu tenho um aplicativo da web java no tomcat instalado no servidor. Como posso configurar o início automático para que ele seja iniciado automaticamente quando o servidor for reiniciado?

    
por Daud Ahmad Khokhar 01.02.2010 / 12:27

3 respostas

0

Encontrei este artigo aqui que fez isso por mim.

link

    
por 04.02.2010 / 08:47
1

/etc/init.d/tomcat-wepappname

#!/bin/sh 
### BEGIN INIT INFO 
# Provides:          tomcat-wepappname 
# Required-Start:    $all 
# Required-Stop:     
# Default-Start:     2 3 4 5 
# Default-Stop:      0 1 6 
# Short-Description: foo bar 
# Description:       long desc
### END INIT INFO 
# Author: Foo Bar <[email protected]> 

. /lib/lsb/init-functions 

# Actions 
case "$1" in 
 start) 
  log_action_begin_msg "Starting tomcat webapp" "tomcat-webappname"
  su - tomcat-webappuser -c "/home/sites/tomcat-webappname/webappname.sh $1" 
  log_end_msg 0 
  ;; 
 stop) 
  su - tomcat-webappuser -c "/home/sites/tomcat-webappname/webappname.sh $1" 
  ;; 
# restart) 
# something else...
#  ;; 
esac

exit 0

Pelo menos, registre o serviço:

update-rc.d activemq defaults
    
por 19.07.2011 / 17:19
0

Use

/sbin/chkconfig tomcat6 on

Se você instalou o tomcat6 RPM.

    
por 01.02.2010 / 15:08