Telnet 失败但 SSH 工作正常

发布于 2024-11-04 03:45:42 字数 194 浏览 0 评论 0原文

你好 我正在连接到远程 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 技术交流群。

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

发布评论

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

评论(1

清晨说晚安 2024-11-11 03:45:42

>交互式 shell 是在没有非选项参数的情况下启动的,除非指定了 -s ,而不指定 -c 选项,并且其输入和输出都连接到终端(由 isatty(3)) 确定,或者以 -i 选项开始。有关详细信息,请参阅第 6.3 节交互式 Shell

无法通过 telnet 进行作业控制。这可能是

  • 您的 telnet 客户端的缺陷,
  • 缺少 telnet 选项
  • 如果您在管道中启动 bash,则 ,例如,默认情况下输入/输出未连接到终端(而是管道)。不要这样做:)

另请参阅

> 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 information

Job control isn't available over your telnet. This can be

  • a deficiency of your telnet client
  • a missing option to telnet
  • if you start bash in a pipe, e.g., by default the input/output are not connected to a terminal (but rather pipes). Don't do that :)

See also

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