博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
1,Ansible---安装与配置
阅读量:6664 次
发布时间:2019-06-25

本文共 684 字,大约阅读时间需要 2 分钟。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
下载网站:http:
//releases
.ansible.com
/ansible/
中文网站:http:
//www
.ansible.com.cn
/docs/
网站:http:
//docs
.ansible.com
/ansible/index
.html
epel源:http:
//fedoraproject
.org
/wiki/EPEL
 
yum 
install 
epel*
yum 
install 
ansible
 
控制端:
vim 
/etc/ansible/hosts
[ALL]
192.168.9.168
192.168.9.169
192.168.9.250
 
[hall]
192.168.9.169
192.168.9.168
 
[ddz]
192.168.9.250
配置无密码登录
# ssh-keygen -t rsa
# ssh-copy-id -i ~/.ssh/id_rsa.pub root@192.168.9.169
# ssh-copy-id -i ~/.ssh/id_rsa.pub root@192.168.9.168
# ssh-copy-id -i ~/.ssh/id_rsa.pub root@192.168.9.176
本文转自 wpf926 51CTO博客,原文链接:http://blog.51cto.com/wupengfei/1958152,如需转载请自行联系原作者
你可能感兴趣的文章
java如何把char型数据转换成int型数据(转)
查看>>
正态分布
查看>>
HTML5 程序设计 - 使用HTML5 Canvas API
查看>>
Majority Element
查看>>
到底什么时候才需要在ObjC的Block中使用weakSelf/strongSelf
查看>>
EBS-BG&LE&OU
查看>>
如何应对网站反爬虫策略?如何高效地爬大量数据?
查看>>
Using AlloyTouch to control three.js 3D model
查看>>
Learning jQuery, 4th Edition 勘误表
查看>>
iOS通过URL Scheme启动app(收集了常用的app的URL Scheme)
查看>>
wc的用法
查看>>
Find Current Job Openings For Oracle Forms & Reports
查看>>
layer弹出层全屏及关闭
查看>>
DWG 对象与ArcGIS 要素的强制对应关系
查看>>
为图片存储而作——记一次UEditor源码的修改
查看>>
如何查看MySQL的当前存储引擎?
查看>>
Oracle BEQ方式连接配置
查看>>
老曹眼中的网络编程基础
查看>>
[转载]如何解决failed to push some refs to git
查看>>
公钥,私钥和数字签名这样最好理解
查看>>