首页 > 代码库 > ssh自动化出现的莫名报错
ssh自动化出现的莫名报错
代码如:
ssh -q user@host <<EOF ping -c 3 localhostEOF
会出现提示如:
Pseudo-terminal will not be allocated because stdin is not a terminal.
google了下,有人提出加上-T(ssh -T -q user@host)参数可避免此情况。如这篇文章介绍的:
http://buralin.iteye.com/blog/2035691
参数解释:
-T Disable pseudo-tty allocation. -t Force pseudo-tty allocation. This can be used to execute arbitrary screen-based programs on a remote machine, which can be very useful, e.g. when implementing menu services. Multiple -t options force tty allocation, even if ssh has no local tty.
基于上述可以看出,当调用一个使用ssh自动化的脚本时,ssh登录到远程后会当前角色分配一个tty,但由于当前登录模式并非本地模式所以就会报错。
所以使用-T禁用该行为即可。
ssh自动化出现的莫名报错
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。