mounike
mounike
全部文章
shell
Hadoop(1)
hive(6)
kafka(1)
MySQL(2)
spark(5)
spider(1)
UserPortrait(1)
VMware(1)
Yarn(1)
资料汇总(1)
归档
标签
去牛客网
登录
/
注册
mounike的博客
全部文章
/ shell
(共2篇)
shell批量启动脚本之zookeeper
@zookeeper批量启动脚本 1 #!bin/bash 2 for host in master slave1 slave2 3 do 4 #输出当前服务器的zookeeper启动情况 5 echo "{$host}:{$1}ing..." 6 #...
2020-07-13
0
535
shell之复制文件脚本
shell之复制脚本 #!/bin/bash #获取输入参数的个数.没有参数直接退出 pcount=$# if((pcount==0));then echo no args; exit; fi #2.获取文件名称 p1=$1 fname=`basename $p1` echo fname=$fn...
2020-07-13
0
374