当前位置:   article > 正文

Linux自动性能调整工具tuned_linux tuned

linux tuned

tuned调优工具简介

tuned是Linux调优工具(自动优化)
RHEL8默认内置tuned,RHEL7需要手工安装


安装tuned

# centos安装tuned调优工具
yum install tuned -y

# Ubuntu或Debian安装
sudo apt install tuned -y
	       
# 开机自启服务并现在就启动服务
systemctl enable --now tuned
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

开启动态微调

在这里插入图片描述

# 编辑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
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13

在这里插入图片描述


查看性能调整方案列表

# 查看调优方案
tuned-adm list
  • 1
  • 2

查看当前活动的配置文件

# 查看当前生效的方案
tuned-adm active
  • 1
  • 2

使用系统推荐的调优方案

# 使用系统推荐的优化方案
tuned-adm recommend
  • 1
  • 2

切换调优方案

# 切换虚拟主机方案
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
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

在这里插入图片描述


禁用所有优化调整

tuned-adm off
  • 1
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/149177?site
推荐阅读
相关标签
  

闽ICP备14008679号