일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 안드로이드
- Nodejs
- 앨범북
- apple
- SSH
- fido
- 앱스토어
- MFA
- css
- 인증
- WebAuthn
- albumbook
- otpkey
- MYSQL
- OSX
- Android
- 애플
- SwiftUI
- appres
- SSL
- openssl
- kmip
- OTP
- SWIFT
- 2FA
- Xcode
- 앱리소스
- MSYS2
- git
- FIDO2
- Today
- Total
인디노트
tomcat service 실행 스크립트 본문
#!/bin/sh
#
# /etc/init.d/tomcat
# chkconfig: 234 20 80
# This is the init script for starting up the
# Jakarta Tomcat server
#
# description: Starts and stops the Tomcat daemon.
#
PROG=tomcat
tomcat=/opt/entrust/adminservices/tomcat/apache-tomcat
startup="$tomcat/bin/catalina.sh start"
shutdown="$tomcat/bin/catalina.sh stop"
start() {
echo -n $"Starting Tomcat service: "
/bin/su -s /bin/bash root $startup
echo $?
}
stop() {
echo -n $"Stopping Tomcat service: "
/bin/su -s /bin/bash root $shutdown
echo $?
}
restart() {
stop
start
}
status() {
PID=`/bin/ps -aef |/bin/grep 'catalina.startup.Bootstrap'|/bin/grep -v grep|/bin/awk '{print $2}'`
if [ "$PID" = "" ]; then
echo "$PROG is down"
else
echo "$PROG[pid=$PID] is running"
fi
}
# Handle the different input options
case "$1" in
start)
start
;;
stop)
stop
;;
status)
status
;;
restart)
restart
;;
*)
echo $"Usage: $0 {start|stop|restart|status}"
exit 1
esac
exit 0
'개발 플랫폼 및 언어' 카테고리의 다른 글
리눅스 호스트명 변경 (0) | 2018.03.15 |
---|---|
CentOS 7 시간설정 및 Time Zone 변경 (0) | 2018.03.10 |
Linux NFS 파일 공유 (0) | 2018.03.10 |
httpd Permission denied make_sock could not bind to address 0.0.0.0:9443 (0) | 2018.03.07 |
apache httpd 에 SSL/HTTPS 적용 및 VirtualHost 에 SNI(Server Name Indication) 문제 해결 (0) | 2018.03.07 |