限制方法
1、找到需要限制的进程
ps -ef | grep mysql
2、到cgroup目录创建一个专用目录
- cd /sys/fs/cgroup/cpu/
- mkdir mysql
- cd mysql
- echo 22112 > cgroup.procs # 22112 是第一步中找到的进程id
- echo "200000" > cpu.cfs_quota_us # 这是限制使用率,限制进程可以用到 200%
cpu.cfs_quota_us # 这..._echo 20000为什么能限制cpu使用率">
赞
踩
1、找到需要限制的进程
ps -ef | grep mysql
2、到cgroup目录创建一个专用目录
- cd /sys/fs/cgroup/cpu/
- mkdir mysql
- cd mysql
- echo 22112 > cgroup.procs # 22112 是第一步中找到的进程id
- echo "200000" > cpu.cfs_quota_us # 这是限制使用率,限制进程可以用到 200%
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。