ssh登录报错Pseudo-terminal will not be allocated because stdin is not a terminal shell脚本报错

1. shell脚本有ssh命令用来连接其他节点,出现如下错误ssh登录报错Pseudo-terminal will not be allocated because stdin is not a terminal shell脚本报错_第1张图片

 2. 在ssh 命令添加参数

     需要增加-t -t参数来强制伪终端分配,即使标准输入不是终端

# 选一种都可以
ssh -t -t worker2

# 两种方法都可以
ssh -T worker2

你可能感兴趣的:(linux,ssh,运维)