728x90
반응형
vi /etc/init.d/tomcat
#!/bin/sh
#
# Tomcat6 auto-start
#
# chkconfig :2345 90 90
# description: Auto-starts tomcat6
# processname : tomcat6
# piodfile : /var/run/tomcat6.pid
case $1 in
start)
sh /usr/local/tomcat/bin/startup.sh
;;
stop)
sh /usr/local/tomcat/bin/shutdown.sh
;;
restart)
sh /usr/local/tomcat/bin/shutdown.sh
sh /usr/local/tomcat/bin/startup.sh
;;
esac
exit 0
권한 설정
chmod 755 /etc/init.d/tomcat
chkconfig tomcat on
/etc/init.d/tomcat restart
반응형
'OS' 카테고리의 다른 글
apt-get error - dpkg error (0) | 2014.09.19 |
---|---|
Windows 서비스 cmd 에서 실행하기 (0) | 2014.09.19 |
Tomcat 설치 - yum 설치 (0) | 2014.09.17 |
web server와 db서버가 따로 있을 경우 느림증상 (0) | 2014.09.15 |
mysql db 원상 복구하기 (0) | 2014.09.15 |