当前位置:  开发笔记 > 后端 > 正文

如何在ansible的主机文件中指定用户名

如何解决《如何在ansible的主机文件中指定用户名》经验,为你挑选了2个好方法。

我正在使用如下的主机文件,

[qa-workstations]
10.39.19.190 ansible_user=test ansible_ssh_pass=test

我使用下面的命令在主机中执行"whoami"命令

root@Svr:~/ansible# ansible all -a "whoami" -i /etc/ansible/host
10.39.19.190 | success | rc=0 >>
root

默认情况下,ansible尝试使用我已登录的用户名,即root而不是我在主机文件中指定的测试用户

当我尝试在ansible cli命令中传递用户名时,它工作正常

root@Svr:~/ansible# ansible all -a "whoami" -i /etc/ansible/host -u test
10.39.19.190 | success | rc=0 >>
test

但是我不可能每次在CLI中传递用户名,因为不同的主机使用不同的用户名.此外,我没有为每个主机生成密钥对,因为主机经常不断更改

使用版本:

 ansible 1.5.4 
 Ubuntu 14.04 LTS

Johnride.. 19

使用最新版本的Ansible,您可以ansible_user在主机定义中使用该参数.

例如,在主机上mysql-host.mydomain,我需要连接的用户是mysql:

[docker-hosts]
mysql-host.mydomain ansible_user=mysql

但是当你使用ansible的旧版本,您可能需要使用ansible_ssh_user替代

http://docs.ansible.com/ansible/faq.html#how-do-i-handle-different-machines-needing-different-user-accounts-or-ports-to-log-in-with



1> Johnride..:

使用最新版本的Ansible,您可以ansible_user在主机定义中使用该参数.

例如,在主机上mysql-host.mydomain,我需要连接的用户是mysql:

[docker-hosts]
mysql-host.mydomain ansible_user=mysql

但是当你使用ansible的旧版本,您可能需要使用ansible_ssh_user替代

http://docs.ansible.com/ansible/faq.html#how-do-i-handle-different-machines-needing-different-user-accounts-or-ports-to-log-in-with



2> chrism..:

在您的剧本目录中创建ansible.cfg或修改“全局” ansible.cfg

注意:仅处理1个配置文件。第一个在以下列表中获胜。 http://docs.ansible.com/ansible/intro_configuration.html

ANSIBLE_CONFIG(环境变量)

ansible.cfg(在当前目录中)

.ansible.cfg(在主目录中)

/etc/ansible/ansible.cfg

[defaults]
remote_user=test


尝试使用广告资源变量“ ansible_ssh_user”
推荐阅读
周扒pi
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有