開機自動啟動應用程式 ON Linux
Linux平臺開機自動啟動resin指令碼
之前寫過開機自動啟動oracle的指令碼,但是應用程式不熟悉,也沒寫過,現在有這個需求,所以就把oracle開機自動啟的改吧改吧,還真可以用~~呵呵
1. 建立啟動指令碼/etc/init.d/tomcat
# chmod +x /etc/init.d/tomcat
[root@htjcoa init.d]# more /etc/init.d/tomcat
#!/bin/bash
# Tomcat init script. for Linux.
#
# chkconfig: 345 99 10
# description: Tomcat Automatic Startup on Linux
TOMCAT_OWNER=budget
TOMCAT_HOME=/home/budget/resin
JAVA_HOME=/home/budget/jdk1.5.0_20
case "$1" in
start)
echo "-------------------------------------------------" >> /var/log/tomcat
date +" %T %a %D : Starting Tomcat Application......" >> /var/log/tomcat
su - $TOMCAT_OWNER -c "$TOMCAT_HOME/bin/httpd.sh >/home/budget/resin/log.log" >> /var/log/tomcat
echo "Done."
echo "-------------------------------------------------" >> /var/log/tomcat
touch /var/lock/subsys/budget
;;
*)
echo "Usage: tomcat {start|stop|restart}"
exit 1
esac
2. 開機自動啟動
# chkconfig tomcat on
開機關閉自動啟動
# chkconfig tomcat off
3. more httpd.sh
[budget@htjcoa bin]$ more httpd.sh
#! /bin/sh
#
# See contrib/init.resin for /etc/rc.d/init.d startup script
#
# resin.sh can be called like apachectl
#
# resin.sh -- execs resin in the foreground
# resin.sh start -- starts resin in the background
# resin.sh stop -- stops resin
# resin.sh restart -- restarts resin
#
# resin.sh will return a status code if the wrapper detects an error, but
# some errors, like bind exceptions or Java errors, are not detected.
#
# To install, you'll need to configure JAVA_HOME and RESIN_HOME and
# copy contrib/init.resin to /etc/rc.d/init.d/resin. Then
# use "unix# /sbin/chkconfig resin on"
if test -n "${JAVA_HOME}"; then
if test -z "${JAVA_EXE}"; then
JAVA_EXE=$JAVA_HOME/bin/java
fi
fi
#
# trace script. and simlinks to find the wrapper
#
if test -z "${RESIN_HOME}"; then
script=`/bin/ls -l $0 | awk '{ print $NF; }'`
while test -h "$script"
do
script=`/bin/ls -l $script. awk '{ print $NF; }'`
done
bin=`dirname $script`
RESIN_HOME="$bin/.."
fi
exec $JAVA_EXE -jar ${RESIN_HOME}/lib/resin.jar $*
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/9252210/viewspace-663335/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 讓Symbian應用程式開機自動啟動
- windows如何開機自動啟動某些應用?Windows
- WinForm程式開機自動啟動ORM
- 開機自動啟動ORACLE ON LinuxOracleLinux
- Linux下開機自動啟動OracleLinuxOracle
- linux開機自動啟動指令碼Linux指令碼
- Linux開機自啟動配置Linux
- Linux 新增開機自啟動Linux
- 在linux中怎麼讓程式開機自動啟動?Linux
- centos(linux): 列出所有的開機自啟動程式CentOSLinux
- Android開機自啟動程式Android
- 【OEM】Oracle oem取消開機自動啟動(linux)OracleLinux
- linux下開機自動開啟單機oracleLinuxOracle
- Linux 新增指令碼開機自啟動Linux指令碼
- Linux 下軟體開機自啟動Linux
- linux7 開機自啟動oracleLinuxOracle
- windows開機自動啟動oracleWindowsOracle
- oracle開機自啟動Oracle
- WinForm應用程式的開機自啟、記住密碼,自動登入的實現ORM密碼
- 讓AutoCAD啟動時自動載入應用程式
- [Windows][VC]開機自動啟動程式的幾種方法Windows
- android APP開機自動啟動AndroidAPP
- KVM虛機開機自啟和取消自啟動
- oracle配置開機自啟動Oracle
- [ubuntu]設定開機自啟動程式的方法Ubuntu
- TongWeb在Linux下設定開機自啟動WebLinux
- Linux Redis 服務設定開機自啟動LinuxRedis
- Linux MySQL 服務設定開機自啟動LinuxMySql
- Linux平臺Oracle開機自啟動設定LinuxOracle
- Windows10 開機自動啟動 VagrantWindows
- nginx 加入到開機自動啟動Nginx
- oracle資料庫開機自動啟動Oracle資料庫
- 【MySql】開機自動啟動mysql服務MySql
- linux RAC 自啟動開關Linux
- Linux作業系統啟動時自動啟用oracle standby備庫日誌應用Linux作業系統Oracle
- Linux開機啟動(bootstrap)Linuxboot
- linux如何使程式開機自動執行Linux
- 如何在 Ubuntu 中管理開機啟動應用Ubuntu