linux开机启动脚本
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux开机启动脚本相关的知识,希望对你有一定的参考价值。
想要linux开机时候 自动运行脚本 脚本循环检测程序是否运行
这写什么命令才可以达到?
脚本内容是
一个死循环,里面包含查询进程的命令ps,让后grep出你的进程
如果发现你的进程就认为启动成功,没发现就一直等待。
脚本例子,监控mysql
s_port=`netstat -na|grep "LISTEN"|grep "3306"|awk -F[:" "]+ 'print $5'`
if [ "$s_port" == "3306" ]; then
echo " mysql is running [`date '+%F %T'`]"
echo $s_logfie
else
echo " mysql is down try start [`date '+%F %T'`]" > $s_logfie_err
$s_mysqldir/share/mysql/mysql.server restart --user=root
sleep 10
s_port=`netstat -na|grep "LISTEN"|grep "3306"|awk -F[:" "]+ 'print $5'`
if [ "$s_port" == "3306" ];then
echo " mysql start ok [`date '+%F %T'`]"
else
echo " mysql start fail [`date '+%F %T'`]"
fi
fi
把这个脚本用crontab间隔一定时间调用一次,比如5分钟,就ok了本回答被提问者采纳
linux开机自动启动脚本放在哪儿
在/etc/rc.local中添加
如果不想将脚本粘来粘去,或创建链接什么的,
则:
step1. 先修改好脚本,使其所有模块都能在任意目录启动时正常执行;
step2. 再在/etc/rc.local的末尾添加一行以绝对路径启动脚本的行;
如:
#!/bin/sh
#
# This script will be executed *after* all the other init scripts.
# You can put your own initialization stuff in here if you don't
# want to do the full Sys V style init stuff.
touch /var/lock/subsys/local
. /etc/rc.d/rc.tune
/opt/pjt_test/test.pl
保存并退出;
以上是关于linux开机启动脚本的主要内容,如果未能解决你的问题,请参考以下文章