ansible批量修改ubuntu系统的密码

前端之家收集整理的这篇文章主要介绍了ansible批量修改ubuntu系统的密码前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

ansible批量修改ubuntu系统的密码:

注:
1、需提前配好免密码登录
2、密码里带特殊符号的需前加转义符,如:\$、\%、*、\&等
3、被操作端需安装python

apt-get install ansible

vi /etc/ansible/hosts

[ming]
10.0.0.2
10.0.0.3
:wq

ansible ming -m shell -a 'echo root:aa\$0*BB\& | chpasswd'

改成功了会有下面提示

10.0.0.2 | SUCCESS | rc=0 >>

附:

ansible批量修改redhat密码的命令:

ansible ming2 -m shell -a 'echo aa\$0*BB\& | passwd --stdin root'

原文链接:https://www.f2er.com/ubuntu/349428.html

猜你在找的Ubuntu相关文章