반응형
1. /etc/init.d/tomcat 파일 생성
# /etc/init.d/tomcat
#!/bin/bash
# chkconfig: 345 50 50
export JAVA_HOME=/usr/java/jdk1.8.0_171-amd64
export PATH=$PATH:$JAVA_HOME/bin
export CATALINA_HOME=/usr/local/tomcat
export PATH=$PATH:$CATALINA_HOME/bin
case "$1" in
start)
sh $CATALINA_HOME/bin/startup.sh
;;
stop)
sh $CATALINA_HOME/bin/shutdown.sh
;;
restart)
sh $CATALINA_HOME/bin/shutdown.sh; su - tomcat -c $CATALINA_HOME/bin/startup.sh
;;
*)
echo "Usage: service tomcat {start|stop|restart}"
exit 1
esac
exit 0
2. 권한 변경
# chmod 755 /etc/init.d/tomcat
3. runlevel에 등록 ( 시작 프로그램에 등록 )
#chkconfig --add tomcat
728x90
반응형
'개발도구 > WAS' 카테고리의 다른 글
[windows7 64bit] 아파치(Apache) 설치하기 (0) | 2019.12.11 |
---|---|
Tomcat 버그(bug) - quoted with " which must be escaped when used within the value (0) | 2019.08.15 |
[tomcat] 톰캣 재시작 시 Caused by: java.lang.NoClassDefFoundError: Lorg/apache/ibatis/session/SqlSessionFactory (0) | 2019.08.15 |
server.xml의 connector 설정 (0) | 2019.08.15 |
명령어로 tomcat의 memory pool 변경 (0) | 2019.08.15 |