设为首页 收藏本站
查看: 1177|回复: 1

[经验分享] saltstack使用cmd.run批量更改ntp统一时间

[复制链接]
累计签到:1 天
连续签到:1 天
发表于 2016-11-23 08:55:29 | 显示全部楼层 |阅读模式
[iyunv@salt-master salt]# salt-key
Accepted Keys:
hddcluster1
hddcluster2
hddcluster3
hddcluster4
salt-master
salt-minion01
Denied Keys:
Unaccepted Keys:
Rejected Keys:

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
27
28
29
30
31
32
33
34
35
36
37
38
39
查看操作系统版本以及版本号
[iyunv@salt-master salt]# salt '*' grains.item  os osrelease
salt-master:
    ----------
    os:
        CentOS
    osrelease:
        7.2.1511
hddcluster3:
    ----------
    os:
        RedHat
    osrelease:
        7.3
hddcluster2:
    ----------
    os:
        RedHat
    osrelease:
        7.2
hddcluster4:
    ----------
    os:
        RedHat
    osrelease:
        7.2
salt-minion01:
    ----------
    os:
        CentOS
    osrelease:
        6.7
hddcluster1:
    ----------
    os:
        RedHat
    osrelease:
        7.2
[iyunv@salt-master salt]#



使用cmd.run 命令,查看是否所有主机是否有ntp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
[iyunv@salt-master salt]# salt '*' cmd.run 'rpm -q ntp'         
salt-master:
    ntp-4.2.6p5-22.el7.centos.x86_64
hddcluster3:
    ntp-4.2.6p5-25.el7.x86_64
hddcluster4:
    ntp-4.2.6p5-22.el7.x86_64
hddcluster1:
    package ntp is not installed
hddcluster2:
    ntp-4.2.6p5-22.el7.x86_64
salt-minion01:
    package ntp is not installed
ERROR: Minions returned with non-zero exit code
[iyunv@salt-master salt]#



其中一台hddcluster1没有安装ntp,批量进行安装
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
[iyunv@salt-master salt]# salt '*' cmd.run 'yum install -y ntp'
hddcluster3:
    Loaded plugins: fastestmirror, product-id, search-disabled-repos, subscription-
                  : manager
    Bad id for repo: comments abridged, byte =   8
    Loading mirror speeds from cached hostfile
    Package ntp-4.2.6p5-25.el7.x86_64 already installed and latest version
    Nothing to do
hddcluster4:
    Loaded plugins: langpacks, product-id, search-disabled-repos, subscription-
                  : manager
    This system is registered to Red Hat Subscription Management, but is not receiving updates. You can use subscription-manager to assign subscriptions.
    Nothing to do
hddcluster1:
    Loaded plugins: fastestmirror, product-id, search-disabled-repos, subscription-
                  : manager
    This system is not registered to Red Hat Subscription Management. You can use subscription-manager to register.
    Bad id for repo: comments abridged, byte =   8
    Loading mirror speeds from cached hostfile
    Resolving Dependencies
    --> Running transaction check
    ---> Package ntp.x86_64 0:4.2.6p5-22.el7.centos.2 will be installed
    --> Processing Dependency: ntpdate = 4.2.6p5-22.el7.centos.2 for package: ntp-4.2.6p5-22.el7.centos.2.x86_64
    --> Running transaction check
    ---> Package ntpdate.x86_64 0:4.2.6p5-22.el7 will be updated
    ---> Package ntpdate.x86_64 0:4.2.6p5-22.el7.centos.2 will be an update
    --> Finished Dependency Resolution
     
    Dependencies Resolved
     
    ================================================================================
     Package       Arch         Version                         Repository     Size
    ================================================================================
    Installing:
     ntp           x86_64       4.2.6p5-22.el7.centos.2         updates       544 k
    Updating for dependencies:
     ntpdate       x86_64       4.2.6p5-22.el7.centos.2         updates        84 k
     
    Transaction Summary
    ================================================================================
    Install  1 Package
    Upgrade             ( 1 Dependent package)
     
    Total download size: 628 k
    Downloading packages:
    Not downloading deltainfo for updates, MD is 786 k and rpms are 84 k
    --------------------------------------------------------------------------------
    Total                                              648 kB/s | 628 kB  00:00     
    Running transaction check
    Running transaction test
    Transaction test succeeded
    Running transaction
      Updating   : ntpdate-4.2.6p5-22.el7.centos.2.x86_64                       1/3
      Installing : ntp-4.2.6p5-22.el7.centos.2.x86_64                           2/3
      Cleanup    : ntpdate-4.2.6p5-22.el7.x86_64                                3/3
      Verifying  : ntp-4.2.6p5-22.el7.centos.2.x86_64                           1/3
      Verifying  : ntpdate-4.2.6p5-22.el7.centos.2.x86_64                       2/3
      Verifying  : ntpdate-4.2.6p5-22.el7.x86_64                                3/3
     
    Installed:
      ntp.x86_64 0:4.2.6p5-22.el7.centos.2                                          
     
    Dependency Updated:
      ntpdate.x86_64 0:4.2.6p5-22.el7.centos.2                                      
     
    Complete!
salt-master:
    Loaded plugins: fastestmirror, langpacks
    Loading mirror speeds from cached hostfile
     * base: mirrors.163.com
     * epel: mirror01.idc.hinet.net
     * extras: mirrors.163.com
     * updates: centos.ustc.edu.cn
    Resolving Dependencies
    --> Running transaction check
    ---> Package ntp.x86_64 0:4.2.6p5-22.el7.centos will be updated
    ---> Package ntp.x86_64 0:4.2.6p5-22.el7.centos.2 will be an update
    --> Processing Dependency: ntpdate = 4.2.6p5-22.el7.centos.2 for package: ntp-4.2.6p5-22.el7.centos.2.x86_64
    --> Running transaction check
    ---> Package ntpdate.x86_64 0:4.2.6p5-22.el7.centos will be updated
    ---> Package ntpdate.x86_64 0:4.2.6p5-22.el7.centos.2 will be an update
    --> Finished Dependency Resolution
     
    Dependencies Resolved
     
    ================================================================================
     Package       Arch         Version                         Repository     Size
    ================================================================================
    Updating:
     ntp           x86_64       4.2.6p5-22.el7.centos.2         updates       544 k
    Updating for dependencies:
     ntpdate       x86_64       4.2.6p5-22.el7.centos.2         updates        84 k
     
    Transaction Summary
    ================================================================================
    Upgrade  1 Package (+1 Dependent package)
     
    Total size: 628 k
    Downloading packages:
    Running transaction check
    Running transaction test
    Transaction test succeeded
    Running transaction
      Updating   : ntpdate-4.2.6p5-22.el7.centos.2.x86_64                       1/4
      Updating   : ntp-4.2.6p5-22.el7.centos.2.x86_64                           2/4
      Cleanup    : ntp-4.2.6p5-22.el7.centos.x86_64                             3/4
      Cleanup    : ntpdate-4.2.6p5-22.el7.centos.x86_64                         4/4
      Verifying  : ntp-4.2.6p5-22.el7.centos.2.x86_64                           1/4
      Verifying  : ntpdate-4.2.6p5-22.el7.centos.2.x86_64                       2/4
      Verifying  : ntp-4.2.6p5-22.el7.centos.x86_64                             3/4
      Verifying  : ntpdate-4.2.6p5-22.el7.centos.x86_64                         4/4
     
    Updated:
      ntp.x86_64 0:4.2.6p5-22.el7.centos.2                                          
     
    Dependency Updated:
      ntpdate.x86_64 0:4.2.6p5-22.el7.centos.2                                      
     
    Complete!
hddcluster2:
    Loaded plugins: fastestmirror, product-id, search-disabled-repos, subscription-
                  : manager
    This system is not registered to Red Hat Subscription Management. You can use subscription-manager to register.
    Bad id for repo: comments abridged, byte =   8
    Loading mirror speeds from cached hostfile
     * epel: ftp.cuhk.edu.hk
    Resolving Dependencies
    --> Running transaction check
    ---> Package ntp.x86_64 0:4.2.6p5-22.el7 will be updated
    ---> Package ntp.x86_64 0:4.2.6p5-22.el7.centos.2 will be an update
    --> Processing Dependency: ntpdate = 4.2.6p5-22.el7.centos.2 for package: ntp-4.2.6p5-22.el7.centos.2.x86_64
    --> Running transaction check
    ---> Package ntpdate.x86_64 0:4.2.6p5-22.el7 will be updated
    ---> Package ntpdate.x86_64 0:4.2.6p5-22.el7.centos.2 will be an update
    --> Finished Dependency Resolution
     
    Dependencies Resolved
     
    ================================================================================
     Package       Arch         Version                         Repository     Size
    ================================================================================
    Updating:
     ntp           x86_64       4.2.6p5-22.el7.centos.2         updates       544 k
    Updating for dependencies:
     ntpdate       x86_64       4.2.6p5-22.el7.centos.2         updates        84 k
     
    Transaction Summary
    ================================================================================
    Upgrade  1 Package (+1 Dependent package)
     
    Total download size: 628 k
    Downloading packages:
    Not downloading deltainfo for updates, MD is 786 k and rpms are 628 k
    --------------------------------------------------------------------------------
    Total                                              729 kB/s | 628 kB  00:00     
    Running transaction check
    Running transaction test
    Transaction test succeeded
    Running transaction
      Updating   : ntpdate-4.2.6p5-22.el7.centos.2.x86_64                       1/4
      Updating   : ntp-4.2.6p5-22.el7.centos.2.x86_64                           2/4
      Cleanup    : ntp-4.2.6p5-22.el7.x86_64                                    3/4
      Cleanup    : ntpdate-4.2.6p5-22.el7.x86_64                                4/4
      Verifying  : ntp-4.2.6p5-22.el7.centos.2.x86_64                           1/4
      Verifying  : ntpdate-4.2.6p5-22.el7.centos.2.x86_64                       2/4
      Verifying  : ntpdate-4.2.6p5-22.el7.x86_64                                3/4
      Verifying  : ntp-4.2.6p5-22.el7.x86_64                                    4/4
     
    Updated:
      ntp.x86_64 0:4.2.6p5-22.el7.centos.2                                          
     
    Dependency Updated:
      ntpdate.x86_64 0:4.2.6p5-22.el7.centos.2                                      
     
    Complete!
salt-minion01:
    Loaded plugins: fastestmirror
    Setting up Install Process
    Loading mirror speeds from cached hostfile
     * base: mirrors.cn99.com
     * extras: mirrors.cn99.com
     * updates: centos.ustc.edu.cn
    Resolving Dependencies
    There are unfinished transactions remaining. You might consider running yum-complete-transaction first to finish them.
    --> Running transaction check
    ---> Package ntp.x86_64 0:4.2.6p5-10.el6.centos.1 will be installed
    --> Processing Dependency: ntpdate = 4.2.6p5-10.el6.centos.1 for package: ntp-4.2.6p5-10.el6.centos.1.x86_64
    --> Running transaction check
    ---> Package ntpdate.x86_64 0:4.2.6p5-10.el6.centos.1 will be installed
    --> Finished Dependency Resolution
     
    Dependencies Resolved
     
    ================================================================================
     Package       Arch         Version                         Repository     Size
    ================================================================================
    Installing:
     ntp           x86_64       4.2.6p5-10.el6.centos.1         updates       598 k
    Installing for dependencies:
     ntpdate       x86_64       4.2.6p5-10.el6.centos.1         updates        78 k
     
    Transaction Summary
    ================================================================================
    Install       2 Package(s)
     
    Total download size: 677 k
    Installed size: 1.8 M
    Downloading Packages:
    --------------------------------------------------------------------------------
    Total                                            42 kB/s | 677 kB     00:16     
    Running rpm_check_debug
    Running Transaction Test
    Transaction Test Succeeded
    Running Transaction
     
      Installing : ntpdate-4.2.6p5-10.el6.centos.1.x86_64                       1/2
     
      Installing : ntp-4.2.6p5-10.el6.centos.1.x86_64                           2/2
     
      Verifying  : ntpdate-4.2.6p5-10.el6.centos.1.x86_64                       1/2
     
      Verifying  : ntp-4.2.6p5-10.el6.centos.1.x86_64                           2/2
     
    Installed:
      ntp.x86_64 0:4.2.6p5-10.el6.centos.1                                          
     
    Dependency Installed:
      ntpdate.x86_64 0:4.2.6p5-10.el6.centos.1                                      
     
    Complete!
[iyunv@salt-master salt]#


[iyunv@salt-master salt]# salt '*' cmd.run 'rpm -q ntp'        
salt-master:
    ntp-4.2.6p5-22.el7.centos.2.x86_64
salt-minion01:
    ntp-4.2.6p5-10.el6.centos.1.x86_64
hddcluster4:
    ntp-4.2.6p5-22.el7.x86_64
hddcluster1:
    ntp-4.2.6p5-22.el7.centos.2.x86_64
hddcluster3:
    ntp-4.2.6p5-25.el7.x86_64
hddcluster2:
    ntp-4.2.6p5-22.el7.centos.2.x86_64



1
2
3
4
5
6
7
8
9
10
11
12
13
[iyunv@salt-master salt]# salt '*' cmd.run 'rpm -q ntp'        
salt-master:
    ntp-4.2.6p5-22.el7.centos.2.x86_64
salt-minion01:
    ntp-4.2.6p5-10.el6.centos.1.x86_64
hddcluster4:
    ntp-4.2.6p5-22.el7.x86_64
hddcluster1:
    ntp-4.2.6p5-22.el7.centos.2.x86_64
hddcluster3:
    ntp-4.2.6p5-25.el7.x86_64
hddcluster2:
    ntp-4.2.6p5-22.el7.centos.2.x86_64



已经全部安装完成

下面查看一下未同步前的时间
1
2
3
4
5
6
7
8
9
10
11
12
13
[iyunv@salt-master salt]# salt '*' cmd.run 'date'      
salt-master:
    Tue Nov 22 23:15:59 HKT 2016
hddcluster4:
    Tue Nov 22 15:38:33 HKT 2016
hddcluster3:
    Tue Nov 22 15:32:47 HKT 2016
hddcluster2:
    Tue Nov 22 15:39:42 HKT 2016
salt-minion01:
    Tue Nov 22 07:14:59 HKT 2016
hddcluster1:
    Tue Nov 22 15:38:23 HKT 2016



查看时间,发现所有的机器时间不同步

执行下面命令同步所有时间,cn.pool.ntp.org  是阿里云的时间同步
1
2
3
4
5
6
7
8
9
10
11
12
13
[iyunv@salt-master salt]# salt '*' cmd.run 'ntpdate -u cn.pool.ntp.org'
salt-minion01:
    22 Nov 15:15:49 ntpdate[2377]: step time server 120.25.108.11 offset 28798.690332 sec
salt-master:
    22 Nov 15:15:55 ntpdate[5931]: step time server 120.25.108.11 offset -28860.874730 sec
hddcluster2:
    22 Nov 15:15:55 ntpdate[5572]: step time server 120.25.108.11 offset -1484.484047 sec
hddcluster3:
    22 Nov 15:15:55 ntpdate[25012]: step time server 120.25.108.11 offset -1069.462786 sec
hddcluster1:
    22 Nov 15:15:55 ntpdate[13243]: step time server 120.25.108.11 offset -1404.857463 sec
hddcluster4:
    22 Nov 15:15:55 ntpdate[30399]: step time server 120.25.108.11 offset -1415.696896 sec



1
2
3
4
5
6
7
8
9
10
11
12
13
14
再次查看一下,会有惊喜:
[iyunv@salt-master salt]# salt '*' cmd.run 'date'
salt-master:
    Tue Nov 22 15:17:18 HKT 2016
hddcluster4:
    Tue Nov 22 15:17:18 HKT 2016
hddcluster2:
    Tue Nov 22 15:17:18 HKT 2016
hddcluster3:
    Tue Nov 22 15:17:18 HKT 2016
salt-minion01:
    Tue Nov 22 15:17:18 HKT 2016
hddcluster1:
    Tue Nov 22 15:17:18 HKT 2016



设置开机启动,发现centos6系列的salt-minion01主机没有找到命令,返回一个非0的退出代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
[iyunv@salt-master salt]# salt '*' cmd.run 'systemctl enable ntpd'     
salt-minion01:
    /bin/bash: systemctl: command not found
salt-master:
    Created symlink from /etc/systemd/system/multi-user.target.wants/ntpd.service to /usr/lib/systemd/system/ntpd.service.
hddcluster3:
    Created symlink from /etc/systemd/system/multi-user.target.wants/ntpd.service to /usr/lib/systemd/system/ntpd.service.
hddcluster2:
    Created symlink from /etc/systemd/system/multi-user.target.wants/ntpd.service to /usr/lib/systemd/system/ntpd.service.
hddcluster1:
    Created symlink from /etc/systemd/system/multi-user.target.wants/ntpd.service to /usr/lib/systemd/system/ntpd.service.
hddcluster4:
    Created symlink from /etc/systemd/system/multi-user.target.wants/ntpd.service to /usr/lib/systemd/system/ntpd.service.
ERROR: Minions returned with non-zero exit code



批量启动ntpd服务器,发现再次没有找到命令并返回非0退出代码,说有某个命令没有正常运行
1
2
3
4
5
6
7
8
9
[iyunv@salt-master salt]# salt '*' cmd.run 'systemctl start ntpd'
salt-minion01:
    /bin/bash: systemctl: command not found
salt-master:
hddcluster3:
hddcluster2:
hddcluster4:
hddcluster1:
ERROR: Minions returned with non-zero exit code   



单独运行一个salt-minion01主机使用centos6系列下的命令,返回0正常。
1
2
3
4
5
6
7
8
9
10
[iyunv@salt-master salt]# salt 'salt-minion01' cmd.run 'service ntpd start'
salt-minion01:
    Starting ntpd: ?[60G[?[0;32m  OK  ?[0;39m]
[iyunv@salt-master salt]# salt 'salt-minion01' cmd.run 'chkconfig ntpd on'
salt-minion01:
[iyunv@salt-master salt]# salt 'salt-minion01' cmd.run 'chkconfig --list|grep ntpd'
salt-minion01:
    ntpd                0:off   1:off   2:on    3:on    4:on    5:on    6:off
    ntpdate             0:off   1:off   2:off   3:off   4:off   5:off   6:off
[iyunv@salt-master salt]#



运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其承担任何法律责任,如涉及侵犯版权等问题,请您及时通知我们,我们将立即处理,联系人Email:kefu@iyunv.com,QQ:1061981298 本贴地址:https://www.yunweiku.com/thread-304246-1-1.html 上篇帖子: Saltstack安装 (CentOS7.x) 下篇帖子: saltsatck-grains
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

扫码加入运维网微信交流群X

扫码加入运维网微信交流群

扫描二维码加入运维网微信交流群,最新一手资源尽在官方微信交流群!快快加入我们吧...

扫描微信二维码查看详情

客服E-mail:kefu@iyunv.com 客服QQ:1061981298


QQ群⑦:运维网交流群⑦ QQ群⑧:运维网交流群⑧ k8s群:运维网kubernetes交流群


提醒:禁止发布任何违反国家法律、法规的言论与图片等内容;本站内容均来自个人观点与网络等信息,非本站认同之观点.


本站大部分资源是网友从网上搜集分享而来,其版权均归原作者及其网站所有,我们尊重他人的合法权益,如有内容侵犯您的合法权益,请及时与我们联系进行核实删除!



合作伙伴: 青云cloud

快速回复 返回顶部 返回列表