当没有集中添加用户时,如何在所有 100 台服务器中添加单个用户。在所有 100 个系统中添加用户的最佳方法是什么
答案1
(这并不是一个完整的答案)
我最近一直在使用 Ansible。不管你喜欢还是讨厌它,它都非常适合你想要问的问题。
基于这个假设,这些步骤将会非常快地完成。
从:http://docs.ansible.com/intro_installation.html
$ git clone git://github.com/ansible/ansible.git
$ cd ./ansible
$ source ./hacking/env-setup
从:http://docs.ansible.com/intro_adhoc.html
创建主机清单文件
$ ansible all -m user -a "name=foo password=<crypted password here>"