rpmdb报错参考文章:https://elstec.cn/archives/fixrpmdb/

我本来想着国内机器装个BBR玩玩,然后直接找了一键脚本,就像这种

一键脚本

然后我选了BBR/BBR魔改版,因为机器就1M带宽反正装啥都一样。安装之后很快就提示我重启,再然后就开不了机了。

重装之后我就换种方法,用升级内核来开启BBR。

先升级软件最新

yum update -y

然后导入 elrepo 软件源的 key 并安装

rpm --import https://www.elrepo.org/RPM-GPG-KEY-elrepo.org
rpm -Uvh https://www.elrepo.org/elrepo-release-7.0-3.el7.elrepo.noarch.rpm

安装最新内核

yum -y --enablerepo=elrepo-kernel install kernel-ml-devel kernel-ml

查看系统启动项并修改新内核为默认启动方式

grep menuentry /boot/grub2/grub.cfg
//把最新的那个内核名称复制下来,并设置新内核为第一启动方式(引导)
grub2-set-default 'CentOS Linux (5.7.8-1.el7.elrepo.x86_64) 7 (Core)'

删除旧内核并生成新配置文件之后重启

grub2-mkconfig --output /boot/grub2/grub.cfg

重启进入系统查看当前内核

uname -a
Linux VM-0-7-centos 5.7.8-1.el7.elrepo.x86_64 #1 SMP Tue Jul 7 18:43:16 EDT 2020 x86_64 x86_64 x86_64 GNU/Linux

开启BBR

echo "net.core.default_qdisc=fq" >> /etc/sysctl.conf
echo "net.ipv4.tcp_congestion_control=bbr" >> /etc/sysctl.conf
//保存并生效
sysctl -p
//检查BBR是否运行
lsmod |grep bbr
tcp_bbr                20480  14 
最后修改:2022 年 02 月 20 日 04 : 37 PM
如果觉得我的文章对你有用,请随意赞赏