前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
社区首页 >专栏 >ansible创建用户

ansible创建用户

作者头像
summerking
发布于 2022-09-19 03:43:53
发布于 2022-09-19 03:43:53
1.6K00
代码可运行
举报
文章被收录于专栏:summerking的专栏summerking的专栏
运行总次数:0
代码可运行

ansilbe 提供了一个 user 模块,用于创建和管理用户;但如何在创建用户的同时加秘设置用户密码呢?

# ansible用户创建

  • 创建一个有登录shell 的用户,用户名是 summer1:
  • name 指定创建的用户名
  • shell 指定用户登录时获得的shell
  • home 为用户创建 HOME 目录
  • state 指定是创建还是删除用户,当 state=absent 时,为删除用户
代码语言:javascript
代码运行次数:0
运行
AI代码解释
复制
[root@localhost ansible]# ansible redis -m user -a 'name=summer1 shell=/bin/bash  home=/home/summer1/  state=present'
docker125 | CHANGED => {
    "ansible_facts": {
        "discovered_interpreter_python": "/usr/bin/python"
    }, 
    "changed": true, 
    "comment": "", 
    "create_home": true, 
    "group": 1000, 
    "home": "/home/summer1/", 
    "name": "summer1", 
    "shell": "/bin/bash", 
    "state": "present", 
    "stderr": "useradd: warning: the home directory already exists.\nNot copying any file from skel directory into it.\n", 
    "stderr_lines": [
        "useradd: warning: the home directory already exists.", 
        "Not copying any file from skel directory into it."
    ], 
    "system": false, 
    "uid": 1000
}
docker123 | CHANGED => {
    "ansible_facts": {
        "discovered_interpreter_python": "/usr/bin/python"
    }, 
    "changed": true, 
    "comment": "", 
    "create_home": true, 
    "group": 1000, 
    "home": "/home/summer1/", 
    "name": "summer1", 
    "shell": "/bin/bash", 
    "state": "present", 
    "stderr": "useradd: warning: the home directory already exists.\nNot copying any file from skel directory into it.\n", 
    "stderr_lines": [
        "useradd: warning: the home directory already exists.", 
        "Not copying any file from skel directory into it."
    ], 
    "system": false, 
    "uid": 1000
}
docker124 | CHANGED => {
    "ansible_facts": {
        "discovered_interpreter_python": "/usr/bin/python"
    }, 
    "changed": true, 
    "comment": "", 
    "create_home": true, 
    "group": 1000, 
    "home": "/home/summer1/", 
    "name": "summer1", 
    "shell": "/bin/bash", 
    "state": "present", 
    "stderr": "useradd: warning: the home directory already exists.\nNot copying any file from skel directory into it.\n", 
    "stderr_lines": [
        "useradd: warning: the home directory already exists.", 
        "Not copying any file from skel directory into it."
    ], 
    "system": false, 
    "uid": 1000
}

# 如何设置用户密码

用 ansible 设置用户的密码时,由于需要对传输的密码进行加密,所以要在主机安装python 的passlib 库。

  1. 利用 pip 安装 passlib: pip install passlib
  2. 生成的经过加密的密码(sha512 加密算法)

说明:在 Password 后输入我们的密码"xxxxx",然后再按enter键

代码语言:javascript
代码运行次数:0
运行
AI代码解释
复制
 python -c 'from passlib.hash import sha512_crypt; import getpass; print (sha512_crypt.encrypt(getpass.getpass()))'

代码语言:javascript
代码运行次数:0
运行
AI代码解释
复制
PS F:\各组件相关说明\ansible相关> pip  install  passlib
Collecting passlib
  Downloading https://pypi.tuna.tsinghua.edu.cn/packages/3b/a4/ab6b7589382ca3df236e03faa71deac88cae040af60c071a78d254a62172/passlib-1.7.4-py2.py3-none-any.whl (525 kB)      
     |████████████████████████████████| 525 kB 1.3 MB/s 
Installing collected packages: passlib
Successfully installed passlib-1.7.4
WARNING: You are using pip version 20.2.4; however, version 20.3.3 is available.
You should consider upgrading via the 'c:\users\administrator\appdata\local\programs\python\python37\python.exe -m pip install --upgrade pip' command.
PS F:\各组件相关说明\ansible相关> python -c 'from  passlib.hash  import sha512_crypt;  import  getpass;  print (sha512_crypt.encrypt(getpass.getpass()))'
Password:
-c:1: DeprecationWarning: the method passlib.handlers.sha2_crypt.sha512_crypt.encrypt() is deprecated as of Passlib 1.7, and will be removed in Passlib 2.0, use .hash() instead.
$6$rounds=656000$fkskseDMlRAr7..8$./zCF2UbGiO7RrtyILeIckqK1ZU78wVwhWFeSrh2Qki604dG3apeF7BCwynu1HcnBp1g.LaFmZsjRCzJYjvzp/

  1. 创建带加密码summer用户
代码语言:javascript
代码运行次数:0
运行
AI代码解释
复制
[root@localhost ansible]# ansible redis -m user -a 'name=summer shell=/bin/bash password=$6$rounds=656000$fkskseDMlRAr7..8$./zCF2UbGiO7RrtyILeIckqK1ZU78wVwhWFeSrh2Qki604dG3apeF7BCwynu1HcnBp1g.LaFmZsjRCzJYjvzp/ update_password=always'
docker125 | CHANGED => {
    "ansible_facts": {
        "discovered_interpreter_python": "/usr/bin/python"
    }, 
    "changed": true, 
    "comment": "", 
    "create_home": true, 
    "group": 1001, 
    "home": "/home/summer", 
    "name": "summer", 
    "password": "NOT_LOGGING_PASSWORD", 
    "shell": "/bin/bash", 
    "state": "present", 
    "system": false, 
    "uid": 1001
}
docker124 | CHANGED => {
    "ansible_facts": {
        "discovered_interpreter_python": "/usr/bin/python"
    }, 
    "changed": true, 
    "comment": "", 
    "create_home": true, 
    "group": 1001, 
    "home": "/home/summer", 
    "name": "summer", 
    "password": "NOT_LOGGING_PASSWORD", 
    "shell": "/bin/bash", 
    "state": "present", 
    "system": false, 
    "uid": 1001
}
docker123 | CHANGED => {
    "ansible_facts": {
        "discovered_interpreter_python": "/usr/bin/python"
    }, 
    "changed": true, 
    "comment": "", 
    "create_home": true, 
    "group": 1001, 
    "home": "/home/summer", 
    "name": "summer", 
    "password": "NOT_LOGGING_PASSWORD", 
    "shell": "/bin/bash", 
    "state": "present", 
    "system": false, 
    "uid": 1001
}
[root@localhost ansible]# history

# 验证

代码语言:javascript
代码运行次数:0
运行
AI代码解释
复制
[root@33a870725069 home]# ll
total 0
drwx------ 2 summer1 summer1 62 Apr 11  2018 summer1
drwx------ 2 summer      summer      62 Dec 23 07:29 summer
[root@33a870725069 home]# su summer1
[summer1@33a870725069 home]$ su summer
Password: 
[summer@33a870725069 home]$ 
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2020-06-23,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
暂无评论
推荐阅读
编辑精选文章
换一批
centos ansible常用命令
ansible在日常运维中经常使用,特别是批量执行多台服务器的时候,有效减小重复的操作成本,以下从安装到使用仅讲解工作中常用的几种方式,模块很多功能很强大,但不做全面讨论。
钢铁知识库
2022/08/20
4430
004.Ansible Ad-Hoc命令集
<host-pattern>:指Inventory中定义的主机或主机组,可以为ip、hostname、Inventory中的group组名等。同时支持具有“.”、“*”或“:”等特殊字符的匹配型字符串。
木二
2019/07/01
1.1K0
Linux云计算运维架构师(连载)-自动化运维ansible-06
在主机清单中,Ansible将所有机器分成不同的组并定义不同的组名,运行命令时只需要指定特定的组名就能达到批量操作的目的。下面将从六个方面对Ansible的主机清单作具体讲解。
用户1880875
2021/07/05
2.5K0
Ansible自动化运维学习笔记2
前言:在ansible中使用变量,能让我们的工作变得更加灵活,在ansible中变量的使用方式有很多种
全栈工程师修炼指南
2020/10/26
3K0
Ansible自动化运维学习笔记2
Ansible自动化运维工具主机清单配置
Ansible主机清单文件用于定义要管理的主机及其相关信息。它是Ansible的核心配置文件之一,用于Ansible识别目标主机并与其建立连接。
神秘泣男子
2024/06/03
1890
Ansible自动化运维工具主机清单配置
Linux云计算运维架构师(连载)-自动化运维ansible-07
在Ansible中的变量分为内置变量与自定义变量,通过在主机清单中添加一些变量能简化主机清单的设置。1.3.2小节在主机清单中添加客户机的用户名与密码,其实就是在向主机清单中添加变量。
用户1880875
2021/07/05
8120
Linux云计算运维架构师(连载)-自动化运维ansible-10
用户模块可以帮助用户管理远程客户机中的用户,例如创建、删除、修改用户属性等。其常用的参数如表1.5所示。
用户1880875
2021/07/05
1.5K0
Ansible-user模块
https://docs.ansible.com/ansible/latest/modules/user_module.html#user-module
星哥玩云
2022/09/15
4150
Ansible的介绍与安装
​ 大多系统管理和基础架构管理都依赖于通过图形或者命令行用户界面执行的手动任务,系统管理员通常使用检查清单、其他文档或者记忆的例程来执行标准任务,这样的做法容易出错,系统管理员很容易跳过某个步骤或者错误的执行某个步骤,对步骤执行是否正确或者产生的预期的结果的验证通常有限。
Alone-林
2022/11/07
6440
Ansible的介绍与安装
ansible 基本命令学习
1、替换某行内容 2、在某行前插入内容 3、在某行后面插入内容 4、删除某行
用户9949933
2023/02/24
1.3K0
Ansible自动化运维工具之常用模块使用实战(5)
 可以看到在创建testfile文件时,并没有创建在tmp目录下,而是被默认创建到了root目录下,说明ansible 是使用 ssh 多次连接执行,连接退出以后之前的状态就全部失效了。
非著名运维
2022/06/22
4060
Ansible自动化运维工具之常用模块使用实战(5)
《Ansible自动化运维:技术与最佳实践》第三章读书笔记
本章主要通过对 Ansible 经常使用的组件进行讲解,使对 Ansible 有一个更全面的了解,主要包含以下内容:
武培轩
2019/09/24
1.1K0
Ansible自动化运维工具
Ansible 是一个极其简单的 IT 自动化平台,可让您的应用程序和系统更易于部署和维护。从代码部署到网络配置再到云管理,使用一种接近简单英语的语言,使用 SSH 实现一切自动化,无需在远程系统上安装代理。
BoyChai
2022/06/22
2.6K0
Ansible自动化运维工具
深入浅出自动化运维工具-----aniible
ansible特性 1.模块化设计,调用特定的模块来完成特定任务 2.基于python语言实现 3.其模块支持JSON、YAML等标准输出格式 4.支持playbook
不吃小白菜
2020/10/28
1.6K0
深入浅出自动化运维工具-----aniible
[Ansible专栏]Ansible常用模块介绍和使用 (文末抽奖)
前面我们介绍了,ansible能作为自动化配置管理,其实是由ansible的多种多样的模块来实现的。截止目前,ansible的模块已经高达3000+之多。但是个人在日常工作中,比较常见的大约20多个。下面我就大概介绍一些常见常用的模块。
没有故事的陈师傅
2022/12/06
5420
Ansible自动化运维工具之常用模块使用实战(6)
--》可以看到不加任何参数时,返回的信息非常多,很多情况我们并不需要全部的信息,可以通过加入过滤参数来获得指定的信息。
非著名运维
2022/06/22
4170
Ansible自动化运维工具之常用模块使用实战(6)
Ansible-copy模块
https://docs.ansible.com/ansible/latest/modules/copy_module.html#copy-module
星哥玩云
2022/09/15
8220
ansible之inventory文件以及免密登陆
简介 ansible的inventory是一个静态的ini文件,可以使用组和子组的方式记录列出所有被管理节点机器的清单, 默认配置文件路径/etc/ansible/hosts,当然,你也可以使用-i 选项在命令行中指定其他清单文件。 inventory (INI格式)示例 我们在 ansible自动化运维工具环境准备 这一篇文章中,已经把node1、node2、node3 绑定到了/etc/hosts里面如下。 [vagrant@controller my_ansible_dir]$ cat /etc/ho
友儿
2022/07/27
8220
没有集群照样学Ansible:托管的容器环境(实用)
Ansible[1]是一个自动化运维框架,由Python语言开发,通过ssh实现无Agent对服务器进行一些列的自动化管理,比如进行软件安装、配置文件更新、文件分发等操作。这些功能的实现实际上是通过Ansible的诸多模块实现的,通过与模块之间的交互通信,实现这些功能。今天我们首先准备一下Ansible的实验环境,然后在此试验环境内进行Ansible由浅入深的学习。
公众号: 云原生生态圈
2020/11/10
3940
玩转企业常见应用与服务系列(十四):自动化运维工具 Ansible 基础入门
目前,随着IT行业的高速发展,市场上出现了一大批自动化管理工具,这些工具可以使得我们通过一台设备管理控制成千上万台不同的设备,使得我们更方便、更快捷的进行运维管理。
民工哥
2023/11/29
8600
玩转企业常见应用与服务系列(十四):自动化运维工具 Ansible 基础入门
相关推荐
centos ansible常用命令
更多 >
领券
社区富文本编辑器全新改版!诚邀体验~
全新交互,全新视觉,新增快捷键、悬浮工具栏、高亮块等功能并同时优化现有功能,全面提升创作效率和体验
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档
查看详情【社区公告】 技术创作特训营有奖征文