Linux 定时释放内存cache 定时清理缓存
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
一:创建脚本
[root@iZ23evimvf8Z /]# cd /usr/local
[root@iZ23evimvf8Z local]# mkdir clearcache & cd clearcache
[root@iZ23evimvf8Z local]#
[root@iZ23evimvf8Z clearcache]# touch clear-cache.sh & vi clear-cache.sh
二:写入执行脚本
#!/bin/bash
#每12小时清除一次缓存
echo "开始清除缓存"
sync;sync;sync #写入硬盘,防止数据丢失
sleep 15 #延迟15秒
echo 3 > /proc/sys/vm/drop_caches
三:配置权限
[root@iZ23evimvf8Z clearcache]# chmod 777 clear-cache.sh
四:配置自动调度
[root@iZ23evimvf8Z logs]# crontab -e
内容如下:
#每12小时清理缓存-本来不建议生产使用,但是缓存消耗太大了
0 */12 * * * bash /usr/local/clearcache/clear-cache.sh
五:看一下效果吧
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献29条内容
所有评论(0)