大数据集群缓存清理

1.在集群中编写shell脚本:vim drop_cache
2.添加执行权限:chmod +x drop_cache
3.执行文件:bash drop_cache

echo "开始清理集群缓存~" &&
sync &&
for i in {13,12,11} 
do 
ssh 10.192.168.$i "sudo sh -c '/usr/bin/echo 3 > /proc/sys/vm/drop_caches'"; 
done &&
echo "缓存清理完毕!";

你可能感兴趣的:(Linux环境,linux)