phpseclib :在 HTML 表中显示来自多个服务器的 SSH 命令的输出
我正在尝试构建一个仪表板来在一个地方查看 Exim 邮件队列统计信息。我想打开一个页面并查看多台服务器的邮件队列计数。
我正在使用 PHPSecLib 连接并运行命令。所以我有每个服务器的连接文件,然后是每个命令的输出需要显示的index.php页面。
这是我的index.php文件:
<html>
<body>
<table width="200" border="1">
<tr>
<th scope="col">Web1</th>
<th scope="col">Web2</th>
<th scope="col">Web3</th>
</tr>
<tr>
<th scope="row"><?php include('web1.php'); ?></th>
<td><?php include('web2.php'); ?></td>
<td><?php include('web3.php'); ?></td>
</tr>
</table>
</body>
我的问题是只显示Web1邮件队列计数。我根本不是程序员,所以我确信我在这里缺少一些简单/明显的东西。
I am trying to build a dashboard to see Exim mail queue stats in one place. I want to open one page and see the mail queue count for several servers.
I am using PHPSecLib to connect and run the command. So I have a connection file for each server, and then the index.php page that the output of each command needs to display in.
This is my index.php file:
<html>
<body>
<table width="200" border="1">
<tr>
<th scope="col">Web1</th>
<th scope="col">Web2</th>
<th scope="col">Web3</th>
</tr>
<tr>
<th scope="row"><?php include('web1.php'); ?></th>
<td><?php include('web2.php'); ?></td>
<td><?php include('web3.php'); ?></td>
</tr>
</table>
</body>
My problem is that only Web1 mail queue count displays. I am no programmer at all so I am sure there's some easy/obvious thing I am missing here.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论