设置开机自动启动shell的几种方法

418 阅读1分钟

设置开机启动方式一 用root帐号登录,vi /etc/rc.d/init.d/mystart,录入shell脚本, 运行chmod +r /etc/rc.d/init.d/mystart,使之可直接执行 然后,增加脚本执行权限 设置开机启动方式二

chkconfig 命令

举例:

zabbix_agentd启动脚本:

[root@zabbix init.d]# vim zabbix_agentd.sh
#/bin/bash

# chkconfig: 2345 22 78
# description: 
function stop(){
    ps -ef|grep -Ev "grep|$0"|grep 'zabbix_agentd'|awk '{print $2}' |xargs kill -9
}

case $1 in
    'start')
	/usr/local/sbin/zabbix_agentd
	;;
    'stop')
	stop
	;;
    'restart')
	stop
	/usr/local/sbin/zabbix_agentd
	;;
    *)
	echo "Usage:service zabbix_agentd start|stop|restart"
	;;
esac

chkconfig --add zabbix_agentd chkconfig --list

www.cnblogs.com/zqj-blog/p/…