PostgreSQL Server进程检查启动脚本

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PostgreSQL Server进程检查启动脚本相关的知识,希望对你有一定的参考价值。

检测到PostgreSQL Server进程 down 的时候启动,running状态无动作


# more pg_server_check.sh 


#!/bin/sh


export PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin


prefix=/etc/init.d


DAEMON="$prefix/postgresql"


RUNN_STR="server is running"


Pg_Status=`$DAEMON status|grep "$RUNN_STR"`


LOG_PATH=/opt/cron


CHECK_LOG=$LOG_PATH/pg_server_check.log


Error_log=$LOG_PATH/pg_server_check_Error.log


echo "$Pg_Status"


DT_STR=`date +‘%Y-%m-%d %H:%M:%S‘`


if [ -z "$Pg_Status" ]

then

    echo "Check Time: $DT_STR " > $Error_log

    echo "Error: PostgreSQL Server is down." >> $Error_log

    echo "$DAEMON start"|sh >> $Error_log

else

    

    echo "Check Time: $DT_STR " > $CHECK_LOG

    echo "PostgreSQL Server is running,do nothing." >> $CHECK_LOG

fi


root用户登录,脚本加到cron


*/2 * * * * /opt/cron/pg_server_check.sh


本文出自 “yiyi” 博客,请务必保留此出处http://heyiyi.blog.51cto.com/205455/1890791

以上是关于PostgreSQL Server进程检查启动脚本的主要内容,如果未能解决你的问题,请参考以下文章

linux - 守护进程脚本

linux进程守护脚本

如果找不到则检查进程并重新启动程序的脚本[重复]

安全地杀死在 bash 脚本中启动的后台进程

如果进程死了,如何编写 bash 脚本来重新启动进程?

用于检查特定 php 进程是不是正在运行的 Bash 脚本?