Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Ansible-playbook batch increases users, modifies user passwords, and deletes users in batch

2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)06/03 Report--

1. Add users in batch: ansible-playbook adduser.yml

[root@mgr ~] # cat adduser.yml-hosts: all remote_user: root tasks:-user: name= "{{item.name}}" group= "{{item.group}}" password= "{{'123456' | password_hash (' sha512')}}" with_items:-{name: "user1", group: "root"}-{name: "user2", group: "root"}-{name: "user3" Group: "apache"} [root@mgr ~] #

2. Modify user password in batches: ansible-playbook moduserpw.yml

[root@mgr ~] # cat moduserpw.yml-hosts: all remote_user: root tasks:-user: name= "{{item.name}}" group= "{{item.group}}" password= "{{'1234567' | password_hash (' sha512')}}" update_password=always with_items:-{name: "user1", group: "root"}-{name: "user2" Group: "root"}-{name: "user3", group: "apache"} [root@mgr ~] #

3. Delete users in batches: ansible-playbook deluser.yml

[root@mgr ~] # cat deluser.yml-hosts: all remote_user: root tasks:-user: name= "{{item.name}}" group= "{{item.group}}" password= "{{'123456' | password_hash (' sha512')}}" state=absent remove=yes with_items:-{name: "user1", group: "root"}-{name: "user2" Group: "root"}-{name: "user3", group: "apache"} [root@mgr ~] #

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report