Telnet 失败但 SSH 工作正常
你好 我正在连接到远程 UNIX 并在那里运行一个应该在后台运行的命令。
问题是,当我使用 ssh 连接时,它工作正常,但如果我使用 telnet 连接,我运行的程序会在几秒钟后停止运行。
我执行的程序是在后台启动另一个程序的程序。 看来(猜测)当第一个程序即将在后台运行另一个程序时,就会发生故障。
有人遇到过类似的事情吗?
Hi
I am connecting to a remote unix and running a command there that supposed to run in the background.
The problem is that when I am connecting with ssh it works fine but if I am connecting with telnet the program which I run stops running after a few seconds.
the program which I execute is a program that starts another program in the background.
It seems (guessing) that the failure happens when the first program is about to run the other program in the background.
has anyone encountered something like that ever?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
>交互式 shell 是在没有非选项参数的情况下启动的,除非指定了 -s ,而不指定 -c 选项,并且其输入和输出都连接到终端(由 isatty(3)) 确定,或者以
-i
选项开始。有关详细信息,请参阅第 6.3 节交互式 Shell无法通过 telnet 进行作业控制。这可能是
另请参阅
> An interactive shell is one started without non-option arguments, unless
-s
is specified, without specifying the-c
option, and whose input and output are both connected to terminals (as determined by isatty(3)), or one started with the-i
option. See section 6.3 Interactive Shells, for more informationJob control isn't available over your telnet. This can be
See also