赞
踩
tuned
是Linux调优工具(自动优化
)
RHEL8默认内置tuned,RHEL7需要手工安装
# centos安装tuned调优工具
yum install tuned -y
# Ubuntu或Debian安装
sudo apt install tuned -y
# 开机自启服务并现在就启动服务
systemctl enable --now tuned
# 编辑tuned主配置文件
vim /etc/tuned/tuned-main.conf
# 开启动态微调
dynamic_tuning = 1
## 使用sed替换配置参数
sed -ri 's#(^dynamic_tuning).*#\1 = 1#' /etc/tuned/tuned-main.conf
## 查看是否修改成功
grep dynamic_tuning /etc/tuned/tuned-main.conf
# 重启tuned服务
systemctl restart tuned
# 查看调优方案
tuned-adm list
# 查看当前生效的方案
tuned-adm active
# 使用系统推荐的优化方案
tuned-adm recommend
# 切换虚拟主机方案
tuned-adm profile virtual-guest
# 切换高吞吐量方案
tuned-adm profile network-throughput
# 可以同时使用多个方案
## 方案名使用 tuned-adm list 查看
tuned-adm profile 方案1 方案2
## 启用虚拟机方案和低时延方案
tuned-adm profile virtual-guest network-latency
tuned-adm off
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。