安装cpulimit限制cpu使用率,避免vps被停

一、安装cpulimit软件包
#Ubuntu/Debian系统:
[[email protected] ~]# apt-get install cpulimit

#RedHat/CentOS系统:
[[email protected] ~]# yum install cpulimit

二、命令使用举例:
#a、根据进程ID限制:进程ID为123456的程序只能使用80%的cpu
[[email protected] ~]# cpulimit -p 123456 -l 80
#b、根据进程路径限值:itkylin只能使用80%的cpu
[[email protected] ~]# cpulimit -e /opt/www/itkylin -l 80
#c、根据进程名称限制:itkylin只能使用80%的cpu
[[email protected] ~]# cpulimit -l 80 itkylin