当前位置: > CentOS > CentOS教程 >

centos7 saltstack快速安装+自定义模块实例

时间:2016-12-21 12:34来源:linux.it.net.cn 作者:IT

1. 安装源

  1. # yum install http://mirrors.sohu.com/fedora-epel/7/x86_64/e/epel-release-7-8.noarch.rpm  
 2. 安装saltstack

只需要一台安装master即可,其他的全部安装minion.

2.1 安装salt-master

 
  1. # yum install salt-master  

 

 

2.2 安装salt-minion

 

  1. # yum install salt-minion  

 

 

 

3. 配置saltstack

3.1 minion配置

 

  1. # cat /etc/salt/minion  
  2.  master 172.11.0.2  

 

 

看清楚了master前面有两个空格,这行代码表示我要连接的saltstack的master是172.11.0.2

3.2 master配置

 
  1. # cat /etc/salt/master  
  2.  interface 172.11.0.2  

 

master监听172.11.0.2,老样子前面也是有两个空格,否则启动的时候会报错.




4. 启动saltstack

4.1 启动minion

 

  1. #systemctl start salt-minion  

 

 

4.1 启动master

 
  1. #systemctl start salt-master   

5. 测试saltstack

接下来的命令都在master上执行

5.1 查看minion列表

 

  1.  # salt-key -L  
  2. AcceptedKeys:  
  3. UnacceptedKeys:  
  4. minion1  
  5. RejectedKeys:  
  6. True  

 

 
 

Salt编写自定模块:

官网文档:http://docs.saltstack.com/ref/modules/index.html#grains-data

Master上创建存放模块的目录:

 

  1. mkdir -pv /srv/salt/_modules  
  2. cd /srv/salt/_modules  

 

在_modules目录下新建Python文件作为自定义模块hello_module.py

#encoding = utf8

def say_hello():
    return 'hello salt'

保存文件,然后执行同步modules命令 salt ‘*’ saltutil.sync_modules

 

[root@host109 _modules]# salt '*'  saltutil.sync_modules

 

  1. minion1:  
  2. - modules.hello_module  

这样modules就算建好了,可以通过 salt ‘*’ hello_module.say_hello 来执行此自定义module

[root@host109 _modules]# salt '*'  hello_module.say_hello

 

  1. minion1:  
  2. - hello salt  


(责任编辑:IT)
------分隔线----------------------------
栏目列表
推荐内容