salt系列之安装

 简介:

 

  
  
  
  
  1. Salt is: 
  2. • a configuration management system, capable of maintaining remote nodes in defined states (for example, ensuring 
  3. that specific packages are installed and specific services are running) 
  4. • a distributed remote execution system used to execute commands and query data on remote nodes, either individually 
  5. or by arbitrary selection criteria 

前提:已安装epel第三方源;

 
1,at master
 
   
   
   
   
  1. echo "master_IP     master_hostname" >> /etc/hosts 
  2. echo "slave_IP     slave_hostname" >> /etc/hosts 
  3. yum install salt -y 
  4. yum install salt-master -y 
  5. yum install salt-minion -y 
配置文件所在目录:/etc/salt
主要包括master,minion
修改master里面的interface
 
   
   
   
   
  1. #interface:  0.0.0.0 
  2. interface: master_IP 
-------------------
修改minion里面的master
 
   
   
   
   
  1. #master: salt 
  2. master: master_IP 
-------------------
 
   
   
   
   
  1. /etc/init.d/salt-master start 
  2. /etc/init.d/salt-minion start 
+++++++++++++++++++++++++
2,at client
 
   
   
   
   
  1. echo "master_IP     master_hostname" >> /etc/hosts 
  2. echo "slave_IP     slave_hostname" >> /etc/hosts 
  3. yum install salt -y 
  4. yum instal salt-minion -y 
--------------------
配置文件所在目录:/etc/salt
-------------------
修改minion里面的master
 
   
   
   
   
  1. #master: salt 
  2. master: master_IP 
-------------------
 
   
   
   
   
  1. /etc/init.d/salt-minion start 
++++++++++++++++++++++++++++++++
3,key 管理
salt-key -L   ----------------查看key全部信息
salt-key -a xxx   -----------批准xxx的认证
salt-key -A   ---------------批准客户端全部的认证请求
 
4,注意selinux关闭,防火墙端口4505,4506要开启
-A RH-Firewall-1-INPUT -m state --state NEW,ESTABLISHED,RELATED -j ACCEPT
-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 4505 -j ACCEPT
-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 4506 -j ACCEPT

你可能感兴趣的:(linux,安装,SALT)