2018-07-05 09:17:40
生成加密密码:
安装python passlib 库
pip install passlib
如果系统中没有pip命令,则先安装pip:
下载epel yum repo文件(使用阿里云镜像):
wget -O /etc/yum.repos.d/epel-7.repo http://mirrors.aliyun.com/repo/epel-7.repo
yum install python-pip
之后就可以生成加密密码了(这里的root经测试没有实际作用,可以把生成的加密密码设置给任何用户):
python -c ‘import crypt; print(crypt.crypt(“1234!@#$”,“root”))’
修改密码:
ansible db -m user -a “name=tom shell=/bin/bash password=roPBH1WZmqUe. update_password=always”