使用 php 运行 ssh 获得实时输出

发布于 2025-01-05 18:20:56 字数 244 浏览 0 评论 0原文

我正在尝试使用 php 编写本质上是交互式 ssh 系统,我需要让 php 使用 ssh_exec 或 shell 在远程服务器上执行命令,并实时收集命令的输出。

我已经搞乱了输出缓冲和flush(),直到我脸色发青,即将让命令将其输出重定向到文件,并有一个单独的脚本,使用 sftp 轮询该文件的内容并使用jquery更新页面上的输出 div。

就在我走这条漫长的路线之前,有没有人有一个使用单个脚本工作的解决方案?

谢谢!

I'm trying to write what is essentially an interactive ssh system with php, I need to have php execute commands on a remote server with ssh_exec or shell and gather the output from the command in real time.

I've messed about with output buffering and flush() until I'm blue in the face and am about to have the command redirect its output to file and have a separate script that polls the contents of this file with sftp and uses jquery to update an output div on page.

Just before I go down this long winded route, does anyone have a solution that works using a single script?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

日暮斜阳 2025-01-12 18:20:56

使用单个脚本可靠地工作是不存在的:您几乎无法控制服务器端的缓冲 - flush() 可能会也可能不会按预期工作,具体取决于您是否使用 mod_phpCGIFCGI 或其他什么,并且您完全无法控制客户端的缓冲(IE 在这里是臭名昭著的)。

去过那里,做过那件事,用 AJAX 做过。

There is no such thing as this working reliably with a single script: You have little control over buffering on the server side - flush() might or might not work as expected, depending on wether you use mod_php, CGI, FCGI or whatever, and you have absolutely no control over buffering at the client (IE is notorious here).

Been there, done that, did it with AJAX.

沫雨熙 2025-01-12 18:20:56

像下面这样的东西会不起作用吗?

$output = shell_exec($theScript);
file_put_contents($someFile, $output, FILE_APPEND);

还是我搞错了方向?

Will something like the following not work?

$output = shell_exec($theScript);
file_put_contents($someFile, $output, FILE_APPEND);

Or have I got the wrong end of the stick?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文