码迷,mamicode.com
首页 >  
搜索关键字:ansible 公钥    ( 5774个结果
[Ansible]script模块
将管理节点的脚本上传至被管理节点执行,理论上此模块不许需要被管理服务器上有python [root@ceph1 ~]# cat a.sh touch /tmp/ansible-script [root@ceph1 ~]# ansible webservers -m script -a "a.sh" ...
分类:其他好文   时间:2020-09-18 01:10:39    阅读次数:31
[Ansible]copy 模块
官网 [root@ceph1 ~]# cat a.repo [epel] name=Extra Packages for Enterprise Linux 7 - $basearch #baseurl=http://download.fedoraproject.org/pub/epel/7/$bas ...
分类:其他好文   时间:2020-09-18 01:09:51    阅读次数:28
ansible运行报错CryptographyDeprecationWarning解决
ansible运行报错:CryptographyDeprecationWarning,本文旨在解决该问题。
分类:其他好文   时间:2020-09-17 22:44:47    阅读次数:58
如何在Linux/Unix上使用ssh-agent进行身份验证
https://www.a5idc.net/如何在Linux和Unix类系统(如macOS或FreeBSD桌面)上使用ssh-agent命令进行非交互式身份验证?我的私钥是用口令或密码保护的。所以我需要输入口令才能多次使用ssh私钥进行验证。我怎样才能让ssh只询问一次口令?你需要使用ssh-agent命令。它将保存你用于ssh公钥认证的私钥。换句话说,ssh-agen会记住并暂时将口令存储在内存
分类:系统相关   时间:2020-09-17 18:25:19    阅读次数:39
rsync远程备份脚本
使用rsync进行简单的数据远程备份脚本 一、实验环境:1、centos-A网站服务器:192.168.0.101/24提前准备好网站源代码和数据库2、centos-B备份服务器:192.168.0.102/24 二、ssh客户端centos-A生成公钥和私钥对ssh-keygen -t rsa 命 ...
分类:其他好文   时间:2020-09-17 18:16:25    阅读次数:34
ansible的内置变量
内置变量ansible_version获取到ansible的版本号ansibletest70-mdebug-a"msg={{ansible_version}}"内置变量hostvars操作当前主机时获取到其他主机中的信息name:"play1:Gatherfactsoftest71"hosts:test71remote_user:rootname:"
分类:其他好文   时间:2020-09-17 17:20:47    阅读次数:79
ansible进阶循环
通过item和with_items对重复操作进行循环执行示例:hosts:jack6_1remote_user:rootgather_facts:notasks:name:touchfilefile:path:"{{item}}"state:touchwith_items:"a""b""c"在jack6_1主机上创建三
分类:其他好文   时间:2020-09-17 17:20:16    阅读次数:39
ansible的循环二
with_items遍历列表中每个元素,包括嵌套列表with_list将嵌套列表作为整体元素遍历with_together将多个列表中的子列表元素,一起输出,不成对则null补位示例:hosts:jack6_1remote_user:rootgather_facts:notasks:debug:msg:"{{item}}"with_items:[1,2,3][a,b]debug
分类:其他好文   时间:2020-09-17 17:19:57    阅读次数:31
ansible循环四
with_indexed_items示例:hosts:jack6_1remote_user:rootgather_facts:notasks:debug:msg:"{{item}}"with_indexed_items:[t1,t2][t3,[t4,t5]][t6]输出结果如下:[root@jack7-1work]#ansible-playbook--syntax-checki
分类:其他好文   时间:2020-09-17 17:19:41    阅读次数:32
ansible循环四
with_indexed_items示例:hosts:jack6_1remote_user:rootgather_facts:notasks:debug:msg:"{{item}}"with_indexed_items:[t1,t2][t3,[t4,t5]][t6]输出结果如下:[root@jack7-1work]#ansible-playbook--syntax-checki
分类:其他好文   时间:2020-09-17 17:19:20    阅读次数:33
5774条   上一页 1 ... 10 11 12 13 14 ... 578 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!