通过 FIFO 重定向 stdin
我正在 GNU/Linux 下运行一个服务器应用程序(用 Java 编写),它接收输入(我猜是来自标准输入)并解释它以运行一些命令。我不想在终端窗口内运行应用程序(我想运行守护进程),但我仍然希望能够随时输入命令。我想我也许可以使用 fifos 来做到这一点,所以我使用 mknod 创建了它。问题是cat fifofile > java... 和 cat fifofile | java ... 由于某种原因失败并出现“找不到文件”错误。
仅使用 cat 进行读写,fifo 工作完美。
有什么方法可以解决这个问题,或者有其他方法可以实现相同的目标吗?
I'm running a server app (written in Java) under GNU/Linux which takes input (from stdin, I guess) and interprets it to run some commands. I dont want to run the app inside a terminal window (I'd like to run a daemon), but I'd still like to be able to input commands whenever I want to. I thought I might be able to do that using fifos, so I created it using mknod. The problem is cat fifofile > java... and cat fifofile | java ... fail with a "file not found" error for some reason.
Using only cat to read and write and the fifo works flawlessly.
Is there any way to fix this, or any other way to achieve the same goal?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
那么,我的世界?做到这一点的最佳方法是为应用程序的控制台部分提供一个真正的 tty。 screen 是一种简单的方法。
So, Minecraft? The best way to do this is to have a bona-fide tty for the console part of the application. screen is an easy way to do that.
你有没有尝试过
java < fifo文件
?像exec 3<&0; 这样的东西怎么样? exec 0
你用什么外壳?如果您使用的 shell 支持进程替换或协进程,您也许能够使用它们。
Have you tried
java < fifofile
? What about something likeexec 3<&0; exec 0<fifofile; java
?What shell are you using? You might be able to use process substitution or coprocesses if you're using a shell that supports them.