本文實例講述了PHP實現服務器狀態監控的方法。分享給大家供大家參考。具體分析如下:
PHP服務器狀態監控對於很多朋友來講都沒做,只有看到網站掛了才知道,這種半夜網站關了是不知道情況了,對於網站也非常不好,為此這兩天抽空寫了個網頁服務器狀態監控,看到有朋友說需要,那我就放出來吧。很簡單的東西。
使用方法:
打開壓縮包裡面的status.php文件。編輯這裡的內容為你自己的郵箱信息。代碼如下:
復制代碼 代碼如下:$mail->Host = 'smtp.exmail.qq.com'; // SMTP 服務器
$mail->Port = 25; // SMTP服務器的端口號
$mail->Username = '[email protected]'; // SMTP服務器用戶名
$mail->Password = 'password'; // SMTP服務器密碼
$mail->SetFrom('[email protected]','Status');
$mail->AddReplyTo('[email protected]','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 = '[email protected]'; //接收郵箱
//更改這裡的內容為你要監控的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 = '[email protected]'; // SMTP服務器用戶名
$mail->Password = 'password'; // SMTP服務器密碼
$mail->SetFrom('[email protected]','Status');
$mail->AddReplyTo('[email protected]','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 = '[email protected]'; //接收郵箱
$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監控了,然後我們就可以操作。
希望本文所述對大家的PHP程序設計有所幫助。