标签:system 状态 私钥 授权 nbsp 主机名 本地 systemctl sys
作者住在盐湖城,称为salt,而当时各种stack火,故名saltstack。他有三种模式
三大功能
1. master端安装
[root@joker ~]# yum install salt-master -y
[root@joker ~]# systemctl start salt-master
2. 奴才端安装
[root@Poppy ~]# yum install salt-minion -y
奴才配置文件修改,告知master
16行指向master,78行默认是fqdn完整主机名
[root@Poppy ~]# cat /etc/salt/minion |grep -v "#" master: master_ip 域名也是可以的
[root@Poppy ~]# systemctl start salt-minion
3. master进行奴才端的授权认证
1)master
[root@joker master]# tree /etc/salt/pki/ /etc/salt/pki/ └── master ├── master.pem 私钥 ├── master.pub 公钥 ├── minions ├── minions_autosign ├── minions_denied 无权限的主机 ├── minions_pre 待确认的主机 └── minions_rejected 拒绝的主机
2)minion
标签:system 状态 私钥 授权 nbsp 主机名 本地 systemctl sys
原文地址:https://www.cnblogs.com/jokerbj/p/9261503.html