Ansible实现百台服务器的免密配置

农民  金牌会员 | 2025-2-16 07:27:28 | 显示全部楼层 | 阅读模式
打印 上一主题 下一主题

主题 977|帖子 977|积分 2931

场景一

该案例重要适用场景为当你获取到一批新的内网主机用于建立某一个体系的集群,需要在集群中拿出一台当做ansible跳板机,用于后期做CD的工作,并要求将ansible主机与集群内其他主机都实现单向免密登录(即ansible呆板ssh user@host_ip实现免密)则可以使用该文章中的方式举行配置。
个人认为相比使用ssh-copy-id命令的话,使用ansible功能实现会更加方便。
按照上述案例需要满足部署前提条件如下:
一、需要得到的信息:集群内全部主机的IP地点、全部主机的超级管理员root权限及root暗码(配置ansible主机清单时需要);
备注:root暗码仅配置一次即可,一旦实现免密登录,后续可将集群内其他主机的root暗码更新并去掉ansible对root的免密。
二、集群中的ansible节点需要与ansible受控节点主机正常使用22端口通信;
三、集群中的ansible节点可以正常登录root用户下载ansible;
上述案例步骤分析:
一、在ansible节点上安装并配置ansible服务;
二、在ansible节点配置目标受控主机清单文件hosts;
三、编写剧本并实行,以此实现ansible到各个目标节点免密;
1、Ansible节点的安装与配置

由于本人呆板资源有限,肯定没有百台假造机啦,下面仅用四台主机做树模;各位“麻油”们包涵哈!三台假造机如下配置:
IP地点主机名脚色192.168.233.13ANSIBLEM1Ansible控制节点192.168.233.14ANSIBLES1Ansible受控制节点1192.168.233.15ANSIBLES2Ansible受控制节点2192.168.233.16ANSIBLES3Ansible受控制节点3

  • 安装ansible
  1. [root@ANSIBLEM1 ~]# yum install -y ansible
复制代码


  • 更改ansible配置
  1. [root@ANSIBLEM1 ~]# vim /etc/ansible/ansible.cfg
  2. # 将[defaults]里面的 host_key_checking = False 和 remote_port = 22 前的#去掉,ssh在首次连接出现检查keys 的提示,通过设置,不会有这些提示
  3. remote_port = 22
  4. host_key_checking = False
复制代码
2、配置Ansible管理的目标主机清单



  • 创建主机清单文件
  1. # 服务器上创建ansible用户
  2. [root@ANSIBLEM1 ~]# useradd ansible
  3. [root@ANSIBLEM1 ~]# passwd ansible
  4. # 切换用户至ansible
  5. [root@ANSIBLEM1 ~]# su - ansible
  6. # 创建主机清单文件
  7. [ansible@ANSIBLEM1 ~]$ mkdir -p /home/ansible/ansible_workspace/inventories/DEV
  8. [ansible@ANSIBLEM1 ~]$ cd /home/ansible/ansible_workspace/inventories/DEV
  9. [ansible@ANSIBLEM1 DEV]$ vim hosts
  10. [all]
  11. 192.168.233.14
  12. 192.168.233.15
  13. 192.168.233.16
  14. [ssh_key]
  15. 192.168.233.14 ansible_ssh_user=root ansible_ssh_pass='your_password'
  16. 192.168.233.15 ansible_ssh_user=root ansible_ssh_pass='your_password'
  17. 192.168.233.16 ansible_ssh_user=root ansible_ssh_pass='your_password'
  18. # 主机列表中的ansible_ssh_user和ansible_ssh_pass变量意为远程主机当前存在的用户名及用户名的密码
复制代码


  • 测试配置的ansible主机清单文件是否可用
  1. [ansible@ANSIBLEM1 DEV]$ ansible all -i /home/ansible/ansible_workspace/inventories/DEV/hosts -m ping -u root
  2. 192.168.233.15 | UNREACHABLE! => {
  3.     "changed": false,
  4.     "msg": "Invalid/incorrect password: Warning: Permanently added '192.168.233.15' (ECDSA) to the list of known hosts.\r\nPermission denied, please try again.",
  5.     "unreachable": true
  6. }
  7. 192.168.233.14 | UNREACHABLE! => {
  8.     "changed": false,
  9.     "msg": "Invalid/incorrect password: Warning: Permanently added '192.168.233.14' (ECDSA) to the list of known hosts.\r\nPermission denied, please try again.",
  10.     "unreachable": true
  11. }
  12. 192.168.233.16 | UNREACHABLE! => {
  13.     "changed": false,
  14.     "msg": "Invalid/incorrect password: Warning: Permanently added '192.168.233.16' (ECDSA) to the list of known hosts.\r\nPermission denied, please try again.",
  15.     "unreachable": true
  16. }
  17. # 上述反馈说明主机清单已被ansible识别,但是暂未配置免密,所以报错:Permission denied
复制代码
3、配置Ansible到各个目标节点免密



  • 在ansible控制节点生成key
  1. # 使用 ansible 用户登录主机执行 ssh-keygen 命令生成私钥和公钥文件,一路回车即可
  2. [ansible@ANSIBLEM1 ~]$ ssh-keygen
  3. Generating public/private rsa key pair.
  4. Enter file in which to save the key (/home/ansible/.ssh/id_rsa):
  5. Enter passphrase (empty for no passphrase):
  6. Enter same passphrase again:
  7. Your identification has been saved in /home/ansible/.ssh/id_rsa.
  8. Your public key has been saved in /home/ansible/.ssh/id_rsa.pub.
  9. The key fingerprint is:
  10. SHA256:njoTPg8vFUXJKbsVWG69JlPbHCbqr9sld6hJ8ij8J14 ansible@ANSIBLEM1
  11. The key's randomart image is:
  12. +---[RSA 2048]----+
  13. |         =oo     |
  14. |        o.*.     |
  15. |         +o.+ o  |
  16. |        o..o B . |
  17. |        S++ + o  |
  18. |      ..oo +   . |
  19. |     ..+o o E + .|
  20. |      *+o .O.* . |
  21. |      .*o+*=*    |
  22. +----[SHA256]-----+
  23. [ansible@ANSIBLEM1 ~]$ ll .ssh/
  24. total 12
  25. -rw------- 1 ansible ansible 1679 Sep 11 17:13 id_rsa
  26. -rw-r--r-- 1 ansible ansible  399 Sep 11 17:13 id_rsa.pub
  27. -rw-r--r-- 1 ansible ansible  528 Sep 11 17:11 known_hosts
复制代码


  • 编写一个剧本,下发ansible节点上的公钥至各个受控制服务器
  1. [ansible@ANSIBLEM1 ~]$ cd /home/ansible/ansible_workspace
  2. [ansible@ANSIBLEM1 ansible_workspace]$ vim push_key.yml
  3. - hosts: ssh_key
  4.   remote_user: root
  5.   tasks:
  6.     - name: push ansible key
  7.       authorized_key: user=root key="{{ lookup('file', '/home/ansible/.ssh/id_rsa.pub') }}" state=present
复制代码


  • 实行剧本
  1. [ansible@ANSIBLEM1 ansible_workspace]$ ansible-playbook push_key.yml  -i /home/ansible/ansible_workspace/inventories/DEV/hosts
  2. PLAY [ssh_key] *****************************************************************************************************************************
  3. TASK [Gathering Facts] *********************************************************************************************************************
  4. ok: [192.168.233.15]
  5. ok: [192.168.233.16]
  6. ok: [192.168.233.14]
  7. TASK [push ansible key] ********************************************************************************************************************
  8. changed: [192.168.233.15]
  9. changed: [192.168.233.16]
  10. changed: [192.168.233.14]
  11. PLAY RECAP *********************************************************************************************************************************
  12. 192.168.233.14             : ok=2    changed=1    unreachable=0    failed=0    skipped=0    rescued=0    ignored=0
  13. 192.168.233.15             : ok=2    changed=1    unreachable=0    failed=0    skipped=0    rescued=0    ignored=0
  14. 192.168.233.16             : ok=2    changed=1    unreachable=0    failed=0    skipped=0    rescued=0    ignored=0
复制代码


  • 测试ansible节点到受控制节点服务器的root用户是否实现免密
  1. [ansible@ANSIBLEM1 ansible_workspace]$ ssh root@192.168.233.14
  2. [root@ANSIBLES1 ~]#
  3. [ansible@ANSIBLEM1 ansible_workspace]$ ssh root@192.168.233.15
  4. [root@ANSIBLES2 ~]#
  5. [ansible@ANSIBLEM1 ansible_workspace]$ ssh root@192.168.233.16
  6. [root@ANSIBLES3 ~]#
复制代码
上述测试可见已经实现了ansible到各个受控服务器的root免密。如果要取消ansible到受控制节点的root免密可以参考实行下列ansible剧本:
  1. [ansible@ANSIBLEM1 ansible_workspace]$ vim del_ansible_key.yml
  2. - hosts: ssh_key
  3.   remote_user: root
  4.   tasks:
  5.     - name: delete remote public key
  6.       authorized_key: user=root key="{{ lookup('file', '/home/ansible/devopskey/id_rsa.pub') }}" state=absent
  7. [ansible@ANSIBLEM1 ansible_workspace]$ ansible-playbook del_ansible_key.yml  -i /home/ansible/ansible_workspace/inventories/DEV/hosts
复制代码
如今ansible与各个受控制节点服务器的root是免密的,显然是给高级“麻油”们,也就是管理者使用的。出于安全性考虑,一样平常不会允许集群部署职员对任何集群服务器拥有root的免密权限,所以就涉及到下面另一个场景
场景二

PS:你身为集群的超级管理员,当你获取到一批新的主机,并且已为你搭建好了anisble情况,ansible控制节点已经与受控制节点上的root用户做好了免密(即ssh root@hosts_ip免密),但是你需要为使用集群举行体系部署工作的人创建一个平凡用户,这个平凡用户可以使用ansible节点上的某一个用户使用ansible服务管理集群内的受控制节点主机,这里以devops举例,后期部署职员需要在anisble上使用devops用户免密毗连集群内其它主机上的平凡用户tuser,以便后期体系的部署和维护;
按照上述案例做步骤分析:
一、在ansible节点使用root用户创建平凡用户devops;
二、在ansible节点上配置devops用户与体系集群内其他主机上tuser用户的免密;
1、创建部署职员需要的用户



  • 在ansible节点使用root用户创建平凡用户devops
  1. [root@ANSIBLEM1 ~]# useradd devops
  2. [root@ANSIBLEM1 ~]# passwd devops
  3. Changing password for user devops.
  4. New password:
  5. Retype new password:
  6. passwd: all authentication tokens updated successfully.
复制代码


  • 切换至devops用户,生成秘钥对
  1. [root@ANSIBLEM1 ~]# su - devops
  2. [devops@ANSIBLEM1 ~]$ ssh-keygen
  3. Generating public/private rsa key pair.
  4. Enter file in which to save the key (/home/devops/.ssh/id_rsa):
  5. Created directory '/home/devops/.ssh'.
  6. Enter passphrase (empty for no passphrase):
  7. Enter same passphrase again:
  8. Your identification has been saved in /home/devops/.ssh/id_rsa.
  9. Your public key has been saved in /home/devops/.ssh/id_rsa.pub.
  10. The key fingerprint is:
  11. SHA256:220mn0IXgQ7s+/UoB0FV341lnwBHnoijUVIqrusbg6A devops@ANSIBLEM1
  12. The key's randomart image is:
  13. +---[RSA 2048]----+
  14. |       o.o ++=. o|
  15. |        * + = o==|
  16. |     . + * . +..=|
  17. |    . . + + .    |
  18. |.    . .S. . .   |
  19. |o . .   .oo.o    |
  20. |E. +    .oo++o   |
  21. |    +     +=o..  |
  22. |  .+.      +o    |
  23. +----[SHA256]-----+
  24. [devops@ANSIBLEM1 ~]$ ll /home/devops/.ssh/id_rsa.pub
复制代码
2、为获取用户公钥内容做准备



  • 为拷贝devops公钥做准备,否则ansible用户无法获取到devops的公钥内容
  1. # 这里的操作是为后面下发devops用户的公钥到各个受控制节点而做准备
  2. [root@ANSIBLEM1 ~]# mkdir /home/ansible/devopskey/
  3. [root@ANSIBLEM1 ~]# cp /home/devops/.ssh/id_rsa.pub /home/ansible/devopskey/
  4. [root@ANSIBLEM1 ~]# chown -R ansible.ansible /home/ansible/devopskey
  5. [root@ANSIBLEM1 ~]# su - ansible
  6. [ansible@ANSIBLEM1 ~]$ cd devopskey/
  7. [ansible@ANSIBLEM1 devopskey]$ ll
  8. total 4
  9. -rw-r--r-- 1 ansible ansible 398 Sep 12 23:38 id_rsa.pub
复制代码
3、编辑剧本并实行实现ssh免密



  • 使用ansible用户编辑下发devops用户公钥的剧本
  1. [ansible@ANSIBLEM1 ~]$ cd ansible_workspace/
  2. [ansible@ANSIBLEM1 ansible_workspace]$ vim push_key.yml
  3. - hosts: ssh_key
  4.   remote_user: root
  5.   tasks:
  6.     - name: push devops key
  7.       authorized_key: user=tuser key="{{ lookup('file', '/home/ansible/devopskey/id_rsa.pub') }}" state=present
复制代码


  • 使用ansible用户实行剧本
  1. [ansible@ANSIBLEM1 ansible_workspace]$ ansible-playbook push_devops_key.yml  -i /home/ansible/ansible_workspace/inventories/DEV/hosts
  2. PLAY [ssh_key] *********************************************************************************************************************************************************
  3. TASK [Gathering Facts] *************************************************************************************************************************************************
  4. ok: [192.168.233.14]
  5. ok: [192.168.233.15]
  6. ok: [192.168.233.16]
  7. TASK [push devops key] *************************************************************************************************************************************************
  8. changed: [192.168.233.15]
  9. changed: [192.168.233.14]
  10. changed: [192.168.233.16]
  11. PLAY RECAP *************************************************************************************************************************************************************
  12. 192.168.233.14             : ok=2    changed=1    unreachable=0    failed=0    skipped=0    rescued=0    ignored=0
  13. 192.168.233.15             : ok=2    changed=1    unreachable=0    failed=0    skipped=0    rescued=0    ignored=0
  14. 192.168.233.16             : ok=2    changed=1    unreachable=0    failed=0    skipped=0    rescued=0    ignored=0
复制代码


  • 测试anisble节点上的devops是否已经实现了到受控制节点主机tuser用户的免密登录
  1. [root@ANSIBLEM1 ~]# su - devops
  2. [devops@ANSIBLEM1 ~]$ ssh tuser@192.168.233.14
  3. The authenticity of host '192.168.233.14 (192.168.233.14)' can't be established.
  4. ECDSA key fingerprint is SHA256:L1+uIG1eWm6TCZvm/D3NGUa9jYbK2kawhPSwZki8leY.
  5. ECDSA key fingerprint is MD5:2a:37:d0:b3:a4:d1:6c:d6:96:d5:fe:1f:d2:58:5b:eb.
  6. Are you sure you want to continue connecting (yes/no)? yes
  7. Warning: Permanently added '192.168.233.14' (ECDSA) to the list of known hosts.
  8. Last login: Thu Sep 12 23:30:25 2024
  9. [devops@ANSIBLEM1 ~]$ ssh tuser@192.168.233.15
  10. The authenticity of host '192.168.233.15 (192.168.233.15)' can't be established.
  11. ECDSA key fingerprint is SHA256:L1+uIG1eWm6TCZvm/D3NGUa9jYbK2kawhPSwZki8leY.
  12. ECDSA key fingerprint is MD5:2a:37:d0:b3:a4:d1:6c:d6:96:d5:fe:1f:d2:58:5b:eb.
  13. Are you sure you want to continue connecting (yes/no)? yes
  14. Warning: Permanently added '192.168.233.15' (ECDSA) to the list of known hosts.
  15. Last login: Wed Sep 11 18:16:08 2024 from 192.168.233.13
  16. [devops@ANSIBLEM1 ~]$ ssh tuser@192.168.233.16
  17. The authenticity of host '192.168.233.16 (192.168.233.16)' can't be established.
  18. ECDSA key fingerprint is SHA256:L1+uIG1eWm6TCZvm/D3NGUa9jYbK2kawhPSwZki8leY.
  19. ECDSA key fingerprint is MD5:2a:37:d0:b3:a4:d1:6c:d6:96:d5:fe:1f:d2:58:5b:eb.
  20. Are you sure you want to continue connecting (yes/no)? yes
  21. Warning: Permanently added '192.168.233.16' (ECDSA) to the list of known hosts.
  22. Last login: Wed Sep 11 18:16:37 2024 from 192.168.233.13
复制代码
备注:这里注意看在我们使用devops实行初次免密登录远程主机的tuser用户时就会需要输入yes确认,由于devops不像是ansible用户,有/etc/ansible/ansible.cfg配置文件可以跳过提示验证部分内容。所以初次毗连需要输入yes举行验证,有且仅有初次需要验证。

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

农民

金牌会员
这个人很懒什么都没写!
快速回复 返回顶部 返回列表