這兩天抽空寫了個網頁伺服器狀態監控,看到有朋友說需要,那我就放出來吧。很簡單的東西。
使用方法
開啟壓縮包裡面的status.php檔案。編輯這裡的內容為你自己的郵箱資訊。
代碼如下 |
複製代碼 |
$mail->Host = 'smtp.exmail.qq.com'; // SMTP 伺服器 $mail->Port = 25; // SMTP伺服器的連接埠號碼 $mail->Username = 'admin@xxx.com'; // SMTP伺服器使用者名稱 $mail->Password = 'password'; // SMTP伺服器密碼 $mail->SetFrom('admin@xxx.com','Status'); $mail->AddReplyTo('admin@xxx.com','Status'); $mail->Subject = $subject; $mail->AltBody = 'To view the message, please use an HTML compatible email viewer!'; // optional, comment out and test $mail->MsgHTML($body); $address = 'admin@admin.com'; //接收郵箱 |
更改這裡的內容為你要監控的IP
代碼如下 |
複製代碼 |
$server_ip_list = array( '61.135.169.121', '221.204.173.200', '173.194.127.83' ); |
然後訪問你http://yourdomain.com/status.php檔案,即可看到當前伺服器狀態並且自動發送郵件到你設定的郵箱。如果需要自動監控,請添加Cron任務或者使用什麼監控寶之類的!
完整代碼
代碼如下 |
複製代碼 |
<?php /* * 伺服器狀態監控 */ header('Content-type:text/html;charset=utf-8'); include './smtp/class.smtp.php'; include './smtp/class.phpmailer.php'; function sendmail($subject = '',$body = '') { date_default_timezone_set('Asia/Shanghai');//設定時區東八區 $mail = new PHPMailer(); //new一個PHPMailer對象出來 // $body = eregi_replace("[]",'',$body); //對郵件內容進行必要的過濾 $mail->CharSet ="UTF-8";//設定郵件編碼,預設ISO-8859-1,如果發中文此項必須設定,否則亂碼 $mail->IsSMTP(); // 設定使用SMTP服務 $mail->SMTPAuth = true; // 啟用 SMTP 驗證功能 $mail->Host = 'smtp.exmail.qq.com'; // SMTP 伺服器 $mail->Port = 25; // SMTP伺服器的連接埠號碼 $mail->Username = 'admin@xxx.com'; // SMTP伺服器使用者名稱 $mail->Password = 'password'; // SMTP伺服器密碼 $mail->SetFrom('admin@xxx.com','Status'); $mail->AddReplyTo('admin@xxx.com','Status'); $mail->Subject = $subject; $mail->AltBody = 'To view the message, please use an HTML compatible email viewer!'; // optional, comment out and test $mail->MsgHTML($body); $address = 'admin@admin.com'; //接收郵箱 $mail->AddAddress($address, ''); //$mail->AddAttachment("images/phpmailer.gif"); // attachment 附件 //$mail->AddAttachment("images/phpmailer_mini.gif"); // attachment if(!$mail->Send()) { echo 'Mailer Error: ' . $mail->ErrorInfo; } else { // echo "Message sent!恭喜,郵件發送成功!"; } } //check server status function checkServerSatatus($ip) { $str = null; $fp = @fsockopen($ip,80,$errno,$errstr,10); if (!$fp) { return false; } else { fclose($fp); return true; } } $server_ip_list = array( '61.135.169.121', '221.204.173.200', '173.194.127.83' ); ?> <!doctype html> <html lang="zh_CN"> <head> <meta charset="UTF-8"> <title>伺服器狀態監控</title> <style> * { margin: 0px; padding: 0px; } body { font-family: "Microsoft yahei",Arial; font-size:14px; } header { height: 40px; background-color: #2e2e2e; width: 100%; line-height: 35px; } header > h3 { color: #fff; margin-left: 20px; } footer { text-align: center; } a { color: #424242; text-decoration: none; } .wrap { height: auto; zoom:1; overflow: auto; max-width: 500px; width: 100%; margin: 50px auto; } .table { border-collapse: collapse; border: 1px solid #eee; width: 100%; } tr,td{ color: #424242; border-collapse: collapse; border: 1px solid #F0F0F0; height: 30px; text-align: center; } tr:nth-child(2n+1) { background-color: #F7F8FC; } tr:hover { background-color: #F7F8FC; } .online,.offline { height: 20px; background-color: #2ECC71; width: 40px; margin: 0px auto; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; color: #fff; } .offline { width: 50px; background-color: #E74C3C; } </style> </head> <body> <header> <h3>伺服器線上狀態監控</h3> </header> <div class="wrap"> <table class="table"> <tbody> <tr><td>ID</td><td>Location</td><td>Address</td><td>Status</td></tr> <?php $i = 0; foreach ($server_ip_list as $key => $val) { $api = file_get_contents('http://ip.taobao.com/service/getIpInfo.php?ip='.$server_ip_list[$key].''); $json = json_decode($api); $result = $json->data; $i++; if (checkServerSatatus($server_ip_list[$key])) { echo "<tr><td>{$i}</td><td>{$result->country}{$result->region}{$result->city}</td><td>{$server_ip_list[$key]}</td><td><div class="online">線上</div></td></tr>"; } else { echo "<tr><td>{$i}</td><td>{$result->country}{$result->region}{$result->city}</td><td>{$server_ip_list[$key]}</td><td><div class="offline">不線上</div></td></tr>"; $subject = "您的伺服器 {$server_ip_list[$key]} 無法訪問!"; $body = "您的伺服器{$server_ip_list[$key]} 無法訪問,此郵件根據你設定的監控頻率發送,當伺服器恢複正常郵件自動停止發送!"; sendmail($subject,$body); } } ?> </tbody> </table> </div> </body> </html> |
注意:
include './smtp/class.smtp.php';
include './smtp/class.phpmailer.php';
檔案可以下載phpmailer包然後我們在包裡面這兩個檔案複製出來然後即可使用了。
ps:這個只是一個非常的簡單的不能很好的監控到伺服器了,現在有很多成熟的免費產品都可以更好的達到我們要求,如dnspod裡面有一個D監控了,然後我們就可以操作。