摘要:
shell脚本 #!/bin/bash ######################### #删除7天之前的文件 # ######################### tmp_path=/tmp/test/* find ${tmp_path} -maxdepth 0 -type d -ctime 阅读全文
摘要:
查看mysql使用端口 ps -ef | grep mysql ss -antp | grep [ps查出来的pid] 停止HIVE写入服务 创建备份路径 mkdir -p /root/hivebackup/ 执行备份数据库命令:(在目标集群执行) mysqldump -uroot -pPasswo 阅读全文