jsvc编写linux启动脚本的方法

发布时间:2021-01-20编辑:脚本学堂
本文介绍了使用jsvc编辑linux启动脚本的方法,使用jsvc就能够实现把linux上的应用程序变成linux服务的功能,需要的朋友参考下。

linux系统上进行项目开发,经常需要把应用变成linux的服务,当服务器启动时就自行启动自己的应用。
使用jsvc就能够实现上面的功能。jsvc.tar包会在tomcat/bin下找到。
 
1.安装jsvc
在tomcat的bin目录下有一个jsvc.tar.gz的文件,进入tomcat的bin目录下
 

复制代码 代码示例:
#tar xvfz jsvc.tar.gz
#cd jsvc-src
#sh support/buildconf.sh
#chmod 755 configure
#./configure --with-java=/usr/local/java (改成你的jdk的位置)
#make

2.编写服务启动类
 

复制代码 代码示例:
package com.sohu.jsvc.test;
public class testjsvc {
public static void main(string args[]) {
system.out.println("execute main method!");
}
 
public void init() throws exception {
system.out.println("execute init method!");
}
 
public void init(string[] args) throws exception{
system.out.println("execute init(args) method");
}
 
public void start() throws exception {
system.out.println("execute start method!");
}
 
public void stop() throws exception {
system.out.println("execute stop method!");
}
 
public void destroy() throws exception{
system.out.println("execute destroy method!");
}
 
}
 

main方法可以去掉,但是init(string[] args),start(),stop(),destroy()方法不能少,服务在启动时会先调用init(string[] args)方法
然后调用start()方法,在服务停止是会首先调用stop()方法,然后调用destroy() 方法.
 
3.把这个类打包成testjsvc.jar 放到/test目录下
4.编写启动服务的脚本 myjsvc,其中红色字体的部分,要根据具体的情况做出修改
 

复制代码 代码示例:
#!/bin/sh
 
# myjsvc this shell script takes care of starting and stopping
#
# chkconfig: - 60 50
# description: test a daemon.
# processname: myjsvc
 
# source function library.
. /etc/rc.d/init.d/functions
 
retval=0
prog="myjsvc"
 
# jdk的安装目录
java_home=/usr/java/jdk1.5.0_15
#应用程序的目录
myjsvc_home=/test
#jsvc所在的目录
daemon_home=/usr/local/tomcat5/bin/jsvc-src
#用户
myjsvc_user=root
 
# for multi instances adapt those lines.
tmp_dir=/var/tmp
pid_file=/var/run/tlstat.pid
 
#程序运行是所需的jar包,commons-daemon.jar是不能少的
classpath=
/test/testjsvc.jar:
/usr/local/tomcat5/bin/commons-daemon.jar:
 
case "$1" in
start)
#
# start serivce
#
$daemon_home/jsvc
-user $myjsvc_user
-home $java_home
-djava.io.tmpdir=$tmp_dir
-wait 10
-pidfile $pid_file
-outfile $myjsvc_home/log/myjsvc.out
-errfile '&1'
-cp $classpath
com.sohu.jsvc.test.testjsvc
#
# to get a verbose jvm
#-verbose
# to get a debug of jsvc.
#-debug
exit $?
;;
 
stop)
#
# stop serivce
#
$daemon_home/jsvc
-stop
-pidfile $pid_file
com.sohu.jsvc.test.testjsvc
exit $?
;;
 
*)
echo "usage myjsvc start/stop"
exit 1;;
esac
 

5. 把myjsvc文件拷贝到/etc/init.d/目录下
 
6. #chmod -c 777 /etc/init.d/myjsvc
 
7. 添加服务
 

复制代码 代码示例:
#chkconfig --add myjsvc
#chkconfig --level 345 myjsvc on  设置服务的启动级别

8. 完成,启动服务
 

复制代码 代码示例:
#service myjsvc start

可以从/test/log/myjsvc.out文件里看到如下信息:
 

复制代码 代码示例:
execute init(args) method
execute start method
#service myjsvc stop

/test/log/myjsvc.out文件中会增加:
 

复制代码 代码示例:
execute stop method
execute destroy method

并且在系统重启时会自动启动myjsvc服务
 
一个简单的 liunx服务就写好了。

可以在testjsvc的init(),start(),stop(),destroy()方法添加业务,实现自己想要的功能。