代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
PHP
】
检查服务器各种服务的运行状态
作者:
小凤
/ 发布于
2016/3/3
/
755
检查服务器各种服务的运行状态,如果异常,可尝试重启,如果重启失败,会发送邮件通知admin
<?php /** * User: wanwan * Date: 16/2/28 * Time: 下午4:39 * email:18618300482@163.com */ date_default_timezone_set('Asia/Shanghai'); /** * 写日志 * @param $msg */ function make_log($msg) { $dir = __DIR__ . '/checksLog'; if (is_dir($dir)) { file_put_contents($dir . '/' . date('Y-m-d') . '.log', date("y-m-d H:i:s") . $msg . "\n", FILE_APPEND); } else { mkdir($dir); file_put_contents($dir . '/' . date('Y-m-d') . '.log', date("y-m-d H:i:s") . $msg . "\n", FILE_APPEND); } } /** * 检查进程是否存在 * @param $clsname * @param int $bf * @return int */ function isRun($clsname, $bf = 0) { //下面进行检测,如有一个进程正在运行,则不运行 $str = shell_exec("ps ax > " .__DIR__ .'/'.$clsname . "_run.txt"); $str = shell_exec("grep -c '" .$clsname . "' " . __DIR__.'/'. $clsname . "_run.txt"); if ($bf > 0) { if ($str >= $bf) { return 1; } else { return 0; } } else { if ($str >= 2) { return 1; } else { return 0; } } } define('QUEUE', 'RedisQueueServer'); define('HTTP', 'httpd'); define('NG', 'nginx'); define('REDIS', 'redis-server'); define('SQL', 'mysql'); //检查队列进程 if (isRun(QUEUE)) { make_log('RedisQueueServer is running !'); } else { make_log('RedisQueueServer is not running ! try to start it....'); exec('php /WanQueue/console/RedisQueueServer.php'); if (isRun(QUEUE)) { make_log('RedisQueueServer start success !'); } else { make_log('RedisQueueServer start failed !'); sendEmail('12312313,12312313', '[APPNAME-ServerError]:服务器的队列进程RedisQueueServer挂了,自动重启失败!!'); } } //检查sql进程 if (isRun(SQL)) { make_log('mysql is running !'); } else { make_log('mysql is not running ! try to start it....'); exec('service mysql start'); if (isRun(SQL)) { make_log('mysql start success !'); } else { make_log('mysql start failed !'); sendEmail('12312313,12312313', '[APPNAME-ServerError]:服务器的队列进程mysql挂了,自动重启失败!!'); } } //检查httpd进程 if (isRun(HTTP)) { make_log('httpd is running !'); } else { make_log('httpd is not running ! try to start it....'); exec('httpd -k start'); if (isRun(HTTP)) { make_log('httpd start success !'); } else { make_log('httpd start failed !'); sendEmail('12312313,12312313', '[APPNAME-ServerError]:服务器的队列进程httpd挂了,自动重启失败!!'); } } //检查nginx进程 if (isRun(NG)) { make_log('nginx is running !'); } else { make_log('nginx is not running ! try to start it....'); exec('nginx'); if (isRun(NG)) { make_log('nginx start success !'); } else { make_log('nginx start failed !'); sendEmail('12312313,12312313', '[APPNAME-ServerError]:服务器的队列进程nginx挂了,自动重启失败!!'); } } //检查redis进程 if (isRun(REDIS)) { make_log('redis is running !'); } else { make_log('redis is not running ! try to start it....'); exec('nohup redis-server &'); if (isRun(REDIS)) { make_log('redis start success !'); } else { make_log('redis start failed !'); sendEmail('12312313,12312313', '[APPNAME-ServerError]:服务器的队列进程redis-server挂了,自动重启失败!'); } }
试试其它关键字
同语言下
.
用net匹配并替换iOS标准的emoji表情符号
.
处理带Emoji表情的的字符串
.
获取微信昵称时 过滤特殊字符
.
通过判断上传文件的头字符来判断文件的类型
.
模拟百度URL加密解密算法
.
以太坊检查地址是否合法
.
实现crontab解析类
.
获取每个月的开始和结束时间
.
图片上传工具类
.
APP手机应用信息采集
可能有用的
.
用net匹配并替换iOS标准的emoji表情符号
.
处理带Emoji表情的的字符串
.
获取微信昵称时 过滤特殊字符
.
通过判断上传文件的头字符来判断文件的类型
.
模拟百度URL加密解密算法
.
以太坊检查地址是否合法
.
实现crontab解析类
.
获取每个月的开始和结束时间
.
图片上传工具类
.
APP手机应用信息采集
小凤
贡献的其它代码
(
5
)
.
解决了防止用户重复登陆和session超时
.
后台预览功能
.
语句删除数据库中所有表
.
删除别人电脑的关机键
.
检查服务器各种服务的运行状态
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3