2023年9月
node - npm 切换阿里源
查看当前 npm 使用的源npm config get registry切换阿里源npm config set registry https://registry.npmmirror.com
CSS - Flex 居中
flex 布局可以实现水平和垂直的居中,具体方法如下:水平居中水平居中可以使用 justify-content 属性,设置为 center 即可。.container { display: ...
MySQL - 命令查看哪些进程被锁住
在 MySQL 中,可以使用以下命令查看哪些进程被锁住了:# 查看所有进程 show full processlist; # 查询是否锁表 show OPEN TABLES where In_...
How to install mysql 8.0 on CentOS 7
# 安装仓库 rpm -ivh https://repo.mysql.com//mysql80-community-release-el7-10.noarch.rpm # 安装服务 sudo y...
How to install BBR on CentOS 7
CentOS7 开启 BBR 需要以下步骤:查看当前内核版本。uname -r如果内核版本小于 4.9,则需要升级内核。升级内核。yum install https://www.elrepo.o...