使用 php 运行 ssh 获得实时输出
我正在尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用单个脚本可靠地工作是不存在的:您几乎无法控制服务器端的缓冲 -
flush()
可能会也可能不会按预期工作,具体取决于您是否使用mod_php
、CGI
、FCGI
或其他什么,并且您完全无法控制客户端的缓冲(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 usemod_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.
像下面这样的东西会不起作用吗?
还是我搞错了方向?
Will something like the following not work?
Or have I got the wrong end of the stick?