03.大数据集群必备脚本大合集
Posted star521
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了03.大数据集群必备脚本大合集相关的知识,希望对你有一定的参考价值。
/usr/local/bin
sudo nano .hosts
s101
s102
s103
s104
s105
xcall.sh
#!/bin/bash for 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/bash name=`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":$fullpath done
记得给文件执行权限 chmod 777 xcall.sh
以上是关于03.大数据集群必备脚本大合集的主要内容,如果未能解决你的问题,请参考以下文章
大数据超详细大数据常用框架集群搭建合集 | 附带详细安装过程
大数据超详细大数据常用框架集群搭建合集 | 附带详细安装过程