101 lines
2.0 KiB
Bash
101 lines
2.0 KiB
Bash
#!/bin/bash
|
|
PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin
|
|
export PATH
|
|
#+------------------------------------
|
|
#+ 宝塔释放内存脚本
|
|
#+------------------------------------
|
|
|
|
endDate=`date +"%Y-%m-%d %H:%M:%S"`
|
|
log="Free up memory!"
|
|
echo "★[$endDate] $log"
|
|
echo '----------------------------------------------------------------------------'
|
|
|
|
if [ -f "/etc/init.d/php-fpm-52" ];then
|
|
/etc/init.d/php-fpm-52 reload
|
|
fi
|
|
|
|
if [ -f "/etc/init.d/php-fpm-53" ];then
|
|
/etc/init.d/php-fpm-53 reload
|
|
fi
|
|
|
|
if [ -f "/etc/init.d/php-fpm-54" ];then
|
|
/etc/init.d/php-fpm-54 reload
|
|
fi
|
|
|
|
if [ -f "/etc/init.d/php-fpm-55" ];then
|
|
/etc/init.d/php-fpm-55 reload
|
|
fi
|
|
|
|
if [ -f "/etc/init.d/php-fpm-56" ];then
|
|
/etc/init.d/php-fpm-56 reload
|
|
fi
|
|
|
|
if [ -f "/etc/init.d/php-fpm-70" ];then
|
|
/etc/init.d/php-fpm-70 reload
|
|
fi
|
|
|
|
if [ -f "/etc/init.d/php-fpm-71" ];then
|
|
/etc/init.d/php-fpm-71 reload
|
|
fi
|
|
|
|
if [ -f "/etc/init.d/php-fpm-72" ];then
|
|
/etc/init.d/php-fpm-72 reload
|
|
fi
|
|
|
|
if [ -f "/etc/init.d/php-fpm-73" ];then
|
|
/etc/init.d/php-fpm-73 reload
|
|
fi
|
|
|
|
if [ -f "/etc/init.d/php-fpm-74" ];then
|
|
/etc/init.d/php-fpm-74 reload
|
|
fi
|
|
|
|
if [ -f "/etc/init.d/php-fpm-80" ];then
|
|
/etc/init.d/php-fpm-80 reload
|
|
fi
|
|
|
|
if [ -f "/etc/init.d/php-fpm-81" ];then
|
|
/etc/init.d/php-fpm-81 reload
|
|
fi
|
|
|
|
if [ -f "/etc/init.d/php-fpm-82" ];then
|
|
/etc/init.d/php-fpm-82 reload
|
|
fi
|
|
|
|
if [ -f "/etc/init.d/php-fpm-83" ];then
|
|
/etc/init.d/php-fpm-83 reload
|
|
fi
|
|
|
|
if [ -f "/etc/init.d/php-fpm-84" ];then
|
|
/etc/init.d/php-fpm-84 reload
|
|
fi
|
|
|
|
if [ -f "/etc/init.d/php-fpm-85" ];then
|
|
/etc/init.d/php-fpm-85 reload
|
|
fi
|
|
|
|
if [ -f "/etc/init.d/mysqld" ];then
|
|
/etc/init.d/mysqld reload
|
|
fi
|
|
|
|
if [ -f "/etc/init.d/nginx" ];then
|
|
/etc/init.d/nginx reload
|
|
fi
|
|
|
|
if [ -f "/etc/init.d/httpd" ];then
|
|
/etc/init.d/httpd graceful
|
|
fi
|
|
|
|
if [ -f "/etc/init.d/pure-ftpd" ];then
|
|
pkill -9 pure-ftpd
|
|
sleep 0.3
|
|
/etc/init.d/pure-ftpd start 2>/dev/null
|
|
fi
|
|
|
|
sync
|
|
sleep 2
|
|
sync
|
|
echo 3 > /proc/sys/vm/drop_caches
|
|
|
|
echo '----------------------------------------------------------------------------'
|