ansible执行source /etc/profile不生效
ssh登录有两种模式:
1. login shell
用SSH客户端(比如Putty、xshell)登陆Linux系统时,要求输入用户名/密码登录或根据SSH key登录时,就是login shell。
- non-login shell
而在 A 机器上使用SSH免密码登录 B 机器,就是non-login shell
环境变量配置文件加载的顺序:
1.login shell 加载的顺序如下:
/etc/profile --> ~.bash_profile --> /etc/bashrc --> ~.bashrc
2.non-login shell 加载顺序如下:
/etc/bashrc --> ~.bashrc
ansible 就是利用 ssh免密登录到其他节点上执行相关操作,所以使用 non-login 登录模式。
当你 使用 source 命令加载 /etc/profile.d/xxx.sh 环境变量的时候,无法加载成功。
因为 non-login 模式登录是无法加载 /etc/profile.d/ 这个目录的文件的,最高加载到 /etc/bashrc 这个文件级别。
标签:profile,shell,etc,bashrc,source,login,加载 From: https://www.cnblogs.com/yohoolook/p/18330915