PHP监控服务器【LNMPA】入门实例
内容摘要
这篇文章主要为大家详细介绍了PHP监控服务器【LNMPA】入门实例,具有一定的参考价值,可以用来参考一下。
对此感兴趣的朋友,看看idc笔记做的技术笔记。经测试代码如下:
/**
*
对此感兴趣的朋友,看看idc笔记做的技术笔记。经测试代码如下:
/**
*
文章正文
这篇文章主要为大家详细介绍了PHP监控服务器【LNMPA】入门实例,具有一定的参考价值,可以用来参考一下。
对此感兴趣的朋友,看看idc笔记做的技术笔记。经测试代码如下:1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 | <code class = "php" > /** * 监控服务器 * * @param * @author php教程 www.idcnote.com **/ $url = array (); $url []= 'http://hk.qeejoo.com' ; $url []= 'http://sz.qeejoo.com' ; $url []= 'http://gz.qeejoo.com' ; $url []= 'http://bj.qeejoo.com' ; $url []= 'http://wh.qeejoo.com' ; $url []= 'http://sh.qeejoo.com' ; //上面就是取一部分用来访问 $killapache = 'killall -9 httpd' ; //干掉apache $kill_mongod = 'killall mongod' ; //干掉mongod $start_xx1_mongod = 'mongod --config /etc/mongod_xx1.conf' ; //启动xx1 Mongod $start_xx2_mongod = 'mongod --config /etc/mongod_xx2.conf' ; //启动xx2 Mongod $restart_lnmpa = '/root/lnmpa restart' ; //重启lnmpa $connect_status =0; //服务器链接状态 $mongo_status =0; //mongo状态 $server_500_status =0; //服务器500 $server_502_status =0; //服务器502 for ( $i = 0; $i < 6; $i ++) { srand((double)microtime()*1000000); //产生随机种子seed $k =rand(0,5); $go_url = $url [ $k ]; $exec = "curl --connect-timeout 5 -i $go_url 2>/dev/null" ; $res = shell_exec( $exec ); if ( $res == "" ) { $connect_status ++; //服务器无法连接次数+1 } else if ( stripos ( $res , 'EMongoException' ) !== false) { $mongo_status ++; //mongod无法链接次数+1 } else if ( stripos ( $res , '500 Internal Server' ) !== false) { $server_500_status ++; } else if ( stripos ( $res , '502 Bad Gateway' ) !== false) { $server_502_status ++; } else { //服务器正常 } sleep(3); } ///echo $connect_status."__".$mongo_status."__".$server_500_status."__".$server_502_status;exit; //只要服务器无法正常工作,则重起相关服务 if ( $connect_status >=2 || $mongo_status >=2 || $server_500_status >=2 || $server_502_status >=2) { shell_exec( $killapache ); shell_exec( $killapache ); //2次干掉apache shell_exec( $kill_mongod ); shell_exec( $kill_mongod ); shell_exec( $kill_mongod ); shell_exec( $kill_mongod ); //4次干掉mongod shell_exec( $start_xx1_mongod ); //启动xx1 Mongod shell_exec( $start_xx2_mongod ); //启动xx2 Mongod shell_exec( $restart_lnmpa ); //重启lnmpa } //发送邮件 if ( $connect_status >=2) { sendmail( array ( 'xx1@139.com' , 'xx3@139.com' ), '服务器无法链接' , '5次检测服务器,' . $connect_status . '次无法链接' ); exit ; } else if ( $mongo_status >=2) { sendmail( array ( 'xx1@139.com' , 'xx3@139.com' ), 'Mongod挂了' , '5次检测 Mongod,' . $mongo_status . '次挂掉' ); exit ; } else if ( $server_500_status >=2) { sendmail( array ( 'xx1@139.com' , 'xx3@139.com' ), '500 Internal Server' , '5次检测服务器,' . $server_500_status . '次出现500 Internal Server' ); exit ; } else if ( $server_502_status >=2) { sendmail( array ( 'xx@139.com' , 'xx1@xx.com' , 'xx2@139.com' ), '502 Bad Gateway' , '5次检测服务器,' . $server_502_status . '次出现502 Bad Gateway' ); exit ; } else { //服务器正常,生产时,请关闭这个邮件发送。。。 sendmail( array ( 'xx@xx.com' ), 'Good!!! 服务器正常' , 'Good 服务器正常:' . $connect_status . "__" . $mongo_status . "__" . $server_500_status . "__" . $server_502_status ); exit ; } function sendmail( $to , $subject = "" , $body = "" ) { error_reporting (E_STRICT); date_default_timezone_set( "Asia/Shanghai" ); //设定时区东八区 require_once './PHPMailer_5.2.1/class.phpmailer.php' ; //这个Class不用解释把。google去找 require_once './PHPMailer_5.2.1/class.smtp.php' ; $mail = new PHPMailer(); //new一个PHPMailer对象出来 $mail ->CharSet = "UTF-8" ; //设定邮件编码,默认ISO-8859-1,如果发中文此项必须设置,否则乱码 $mail ->IsSMTP(); // 设定使用SMTP服务 $mail ->SMTPDebug = 1; // 启用SMTP调试功能 // 1 = errors and messages // 2 = messages only $mail ->SMTPAuth = true; // 启用 SMTP 验证功能 $mail ->SMTPSecure = "ssl" ; // 安全协议 $mail ->Host = "smtp.exmail.xx.com" ; // SMTP 服务器 $mail ->Port = 465; // SMTP服务器的端口号 $mail ->Username = "xx@xxoo.com" ; // SMTP服务器用户名 $mail ->Password = "xxoo" ; // SMTP服务器密码 $mail ->SetFrom( 'xx@xxoo.com' , '监控' ); $mail ->Subject = $subject ; $mail ->MsgHTML( $body ); foreach ( $to as $t ) { $mail ->AddAddress( $t ); } if (! $mail ->Send()) { return false; } else { return true; } } /*** 代码来自php教程(www.idcnote.com) ***/ </code> |
注:关于PHP监控服务器【LNMPA】入门实例的内容就先介绍到这里,更多相关文章的可以留意
代码注释