博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
03.大数据集群必备脚本大合集
阅读量:5106 次
发布时间:2019-06-13

本文共 769 字,大约阅读时间需要 2 分钟。

/usr/local/bin

 

sudo nano .hosts

s101s102s103s104s105

 xcall.sh

#!/bin/bashfor host in `cat /usr/local/bin/.hosts` ;do    tput setaf 2         echo ======== $host ========    tput setaf 7        ssh $host "source /etc/profile;$@"done

 

 
xcall.sh  "yum install -y  rsync.x86_64"
 scp -r /soft/hadoop/etc centos@s104:/soft/hadoop/   不支持软连接
   rsync -lr /soft/hadoop/etc centos@s104:/soft/hadoop/
 
xsync.sh
#!/bin/bashname=`whoami`# 指定文件所在文件夹名称dir=`dirname $1`# 指定文件的文件名filename=`basename $1`# 进入到dir中cd $dir# 得到当前目录的绝对路径fullpath=`pwd`for((i=102 ; i<=105; i++)) ; do    tput setaf 2    echo ==================== s$i $@ ===================    tput setaf 9    rsync -lr $filename "$name"@s"$i":$fullpathdone

 

 记得给文件执行权限   chmod  777    xcall.sh 

转载于:https://www.cnblogs.com/star521/p/10241047.html

你可能感兴趣的文章
(二) Go的关键字
查看>>
UML
查看>>
javascript中的this,constructor ,prototype
查看>>
MVC缓存
查看>>
android-魔法泡泡动画分析(附源码)
查看>>
C++编程规范(不断更新)
查看>>
无题2
查看>>
Windows Azure Overview
查看>>
BZOJ 1013 [JSOI2008]球形空间产生器sphere
查看>>
MVC框架的实现
查看>>
js object template
查看>>
for (Sms sms : smsLists){}
查看>>
The footer tag,html5知识,底部的标签!
查看>>
C++ 之 字符 字符串
查看>>
splay
查看>>
酷炫特效的网站
查看>>
《Linux命令行与shell脚本编程大全 第3版》Linux命令行---30
查看>>
《Linux命令行与shell脚本编程大全 第3版》Shell脚本编程基础---26
查看>>
编程入门之编码风格
查看>>
自学it18大数据笔记-第三阶段Spark-day11——会持续更新……
查看>>