phpseclib :在 HTML 表中显示来自多个服务器的 SSH 命令的输出

发布于 2025-01-12 20:40:28 字数 717 浏览 0 评论 0原文

我正在尝试构建一个仪表板来在一个地方查看 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文