saltstack常用遠程命令
salt命令語法
salt ‘<操作目標>‘ <模塊方法> [參數]
具體有哪些<模塊方法>參考:
https://docs.saltstack.com/en/develop/ref/modules/all/index.html#all-salt-modules
<操作目標>,Saltstack提供了多種方法對被控主機(id)進行過濾。下面列舉出常用具體參數:
[[email protected] ~]# salt ‘*‘ test.ping# *匹配所有目標
-E,--pcre,通過正則表達式進行匹配:
[[email protected]
-L,--list,以主機id名列表的形式進行過濾,格式與Python的列表相似,即不同主機id名稱使用逗號分離。
[[email protected] ~]# salt -L ‘node1,node2‘ grains.item osfullname #獲取主機id為:node1,node2完整操作系統發行版名稱
-G,--grain,根據被控主機的grains信息進行匹配過濾,格式為:<grain value>:<grain expression>
[[email protected] ~]# salt ‘*‘ grains.items#獲取grains收集的信息
[[email protected] ~]# salt -G ‘osrelease:6.6‘ cmd.run ‘uptime‘ #獲取發行版本為6.6的uptime
-I,--pillar,根據被控主機的pillar信息進行匹配過濾,格式為:"對象名稱":"對象值"
salt -I ‘nginx:root:/data‘ test.ping #探測具有‘nginx:root:/data‘信息的連通性。
#pillar屬性配置文件如下:
nginx:
root: /data
-N,--nodegroup,根據主控端master配置文件中的分組名稱進行過濾。
#分組配置:【/etc/salt/master】
nodegroups:
web1group: [email protected]
web2group: [email protected]
#其中L@表示後面的主機id格式為列表,即主機id以逗號分隔:G@表示以grain格式描述:S@表示以IP子網或地址格式描述
salt -N web2group test.ping #探測web2group被控主機的連通性
-C,--compound,根據條件運算符not、and、or去匹配不同規則的主機信息
salt -C ‘E@^node.* and [email protected]:Centos‘ test.ping #探測node開頭並且操作系統版本為CentOS的主機的連通性
-S,--ipcidr,根據被控主機的IP地址或IP子網進行匹配
salt -S 192.168.10.0/24 test.ping
salt -S 192.168.10.128 test.ping
本文出自 “feng” 博客,請務必保留此出處http://fengxiaoli.blog.51cto.com/12104465/1957989
saltstack常用遠程命令