php 获取 iscsi 输出 Linux

发布于 2024-12-06 07:08:44 字数 413 浏览 0 评论 0原文

我正在尝试使用 exec()、system()、passthru() 或任何内容来读取 iscsiadm -m session 的输出,但运气不佳,而且有点迷失。

我(认为我)知道的是:

  • 这不是 sudoers 或权限问题,因为结果在终端或浏览器中是相同的(并且我的 sudoers 已经成功设置为使用 iscsiadm 进行登录/退出)
  • 从终端,iscsiadm -m 会话>; /tmp/scsi_sess 产生一个空的 scsi_sess 文件

我需要知道的是:

  • 输出发送到哪里,我无法使用 bash 或 php 脚本读取它,但可以在中看到它终端?
  • 如何读取输出,或将输出发送到我可以读取的地方?

I am trying to use exec(), system(), passthru() or anything to read in the output of iscsiadm -m session, am not having much luck, and a little lost.

What I (think i) know:

  • It is not a sudoers or permission problem, as the results are the same in a terminal or browser (and my sudoers is already successfully setup to use iscsiadm for login/out)
  • Executing the following command from a terminal, iscsiadm -m session > /tmp/scsi_sess yields an empty scsi_sess file

What I need to know:

  • Where is the output getting sent, that I can not read it with a bash or php script but can see it in the terminal?
  • How can I read the output, or get output sent somewhere that I can read it?

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

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

发布评论

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

评论(1

你另情深 2024-12-13 07:08:44

使用您的语法,您只能捕获标准输出。 您应该使用 Remember 重定向 stdout 上的 stderr

iscsiadm -m session 2>&1 /tmp/scsi_sess

当您使用 > 进行重定向时, file 并且您仍然看到输出,该输出来自 stderr 而不是来自 stdout

http://en .wikipedia.org/wiki/Standard_streams

With your syntax you're catching only the stdout. You should redirect the stderr on the stdout with

iscsiadm -m session 2>&1 /tmp/scsi_sess

Remember, when you do a redirect with > file and you still see output, that output is from stderr and not from stdout

http://en.wikipedia.org/wiki/Standard_streams

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