码迷,mamicode.com
首页 > 其他好文 > 详细

centos7 集群整体操作脚本

时间:2021-03-05 12:59:52      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:done   cal   配置   命令   权限   color   编写   centos   chmod   

 

1、在/root/bin目录创建脚本xcall.sh
2、脚本本周编写内容
[root@wd ~]# vi xcall.sh

!/bin/bash
for i in  wd1 wd2 wd3 
do
    echo -------------------$i--------------
    ssh $i "$*"    
done
3、修改脚本执行权限
[root@wd1 bin]# chmod 777 xcall.sh 
4、将/etc/profile文件追加到 ~/.bashrc(每个节点都要执行)
[root@wd1 bin]# cat /etc/profile >> ~/.bashrc
5、测试
sh xcall.sh “执行命令”
[root@wd1 bin]#sh xcall.sh ls

说明:服务器之间配置免秘钥登录

centos7 集群整体操作脚本

标签:done   cal   配置   命令   权限   color   编写   centos   chmod   

原文地址:https://www.cnblogs.com/uestc2007/p/14480746.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!