PHP Server Monitor,PHP版的在线服务器监控项目,支持ping、端口、自定义字符等,可配置邮件、短信通知等。PHP 需7.1版本,Mysql 5.6可以。支持中文。
官网下载:https://www.phpservermonitor.org/
本地备份:phpservermon-3.2.0文章源自国外主机测评-https://www.zjcp.org/7476.html
演示:https://ping.zhujiwiki.com/?login=123文章源自国外主机测评-https://www.zjcp.org/7476.html
文章源自国外主机测评-https://www.zjcp.org/7476.html
定时执行刷新:文章源自国外主机测评-https://www.zjcp.org/7476.html
php /www/wwwroot/ping.zhujiwiki.com/cron/status.cron.php
默认需登录才能查看,下面是设置游客查看监控信息教程(转自:https://www.cheshirex.com/2423.html):文章源自国外主机测评-https://www.zjcp.org/7476.html
1、新建一个用户,权限为普通用户,如123文章源自国外主机测评-https://www.zjcp.org/7476.html
2、修改 /src/psm/Service/User.php 文件文章源自国外主机测评-https://www.zjcp.org/7476.html
在大概98行左右,$this->session = $session;的后面加入以下代码。文章源自国外主机测评-https://www.zjcp.org/7476.html
global $_GET; if ($_GET["kl"] == "test"){ $user_id = 2; $this->setUserLoggedIn($user_id, true); $user = $this->getUser($user_id); $this->newRememberMeCookie(); }
3、删除访客可操作菜单文章源自国外主机测评-https://www.zjcp.org/7476.html
编辑文件/psm/Module/AbstractController.php,在274行,修改为文章源自国外主机测评-https://www.zjcp.org/7476.html
$items = array('server_status', 'server_log');
这样访客只能看到监控项目,和日志,无法操作其他设置。
4、修改文件/src/templates/default/main/menu.tpl.html,删除