用php文件监测ntp的运行 然后用html文件调用php文件 当ntp运行时 显示绿灯 不在运行时 显示红灯
时间: 2024-01-31 09:03:47 浏览: 194
ntp校时文档
好的,以下是实现你要求的 PHP 和 HTML 代码:
PHP代码(ntp_monitor.php):
```php
<?php
// 检测ntp服务是否启动成功
$status = shell_exec('systemctl status ntpd | grep "Active:"');
if(strpos($status, 'active (running)') !== false) {
$ntp_status = "NTP服务已成功启动。";
$color = "green";
} else {
$ntp_status = "NTP服务启动失败。";
$color = "red";
}
// 将结果以JSON格式返回
echo json_encode(array(
"status" => $ntp_status,
"color" => $color
));
?>
```
HTML代码:
```html
<!DOCTYPE html>
<html>
<head>
<title>NTP服务监测</title>
<style type="text/css">
.green {
background-color: green;
width: 30px;
height: 30px;
border-radius: 50%;
display: inline-block;
}
.red {
background-color: red;
width: 30px;
height: 30px;
border-radius: 50%;
display: inline-block;
}
</style>
</head>
<body>
<h1>NTP服务监测</h1>
<?php
// 调用ntp_monitor.php文件获取ntp服务状态
$result = file_get_contents('ntp_monitor.php');
$data = json_decode($result, true);
// 根据状态显示相应的颜色
$status = $data['status'];
$color = $data['color'];
echo '<div class="'.$color.'"></div>';
?>
<p><?php echo $status; ?></p>
</body>
</html>
```
HTML代码中通过`file_get_contents`函数调用`ntp_monitor.php`文件获取ntp服务的状态,然后根据状态显示相应的颜色(绿灯或红灯),并将状态信息打印在网页上。
阅读全文