2025年7月16日
摘要: 1、“Host 'XXX' is blocked because of many connection errors; unblock with 'mysqladmin flush-hosts'” 同一个IP连接失败次数超过了最大的max_connection_errors,就会阻止连接 max_c 阅读全文
posted @ 2025-07-16 09:14 chengxuyuan123 阅读(35) 评论(0) 推荐(0)
  2025年6月9日
摘要: 一.下载Minio#在线下载二进制文件wget https://dl.min.io/server/minio/release/linux-amd64/miniochmod +x minio 二.编辑Service文件vi /usr/lib/systemd/system/minio.service # 阅读全文
posted @ 2025-06-09 11:04 chengxuyuan123 阅读(80) 评论(0) 推荐(0)
  2025年4月10日
摘要: 1、C:\Windows\System32\DriverStore\FileRepository 使用DriverStoreExplorer清理无用驱动 2、C:\Windows\servicing\LCU 正常 LCU文件夹存放的是更新系统后,用于回滚更新的修复包,是解决因更新后所造成的系统故障, 阅读全文
posted @ 2025-04-10 09:04 chengxuyuan123 阅读(59) 评论(0) 推荐(0)
  2023年11月18日
摘要: help:effective-settings 打印出项目的实际settings, 包括从全局的settings和用户级别settings继承的 配置 阅读全文
posted @ 2023-11-18 11:47 chengxuyuan123 阅读(12) 评论(0) 推荐(0)
  2023年9月7日
摘要: 负载均衡配置 http模块下 upstream webservers{ server 10.19.1.188:8082; server 10.19.1.181:8082; } 阅读全文
posted @ 2023-09-07 18:26 chengxuyuan123 阅读(38) 评论(0) 推荐(0)
  2023年3月21日
摘要: #ls 命令 根据日期降序排列 ls -lht --time-style=long-iso 根据日期升序排列 ls -lhtr --time-style=long-iso 根据文件大小降序 ls -lhS 根据文件大小升序 ls -lhSr #head head -n -2 file 除了后面2行, 阅读全文
posted @ 2023-03-21 21:01 chengxuyuan123 阅读(48) 评论(0) 推荐(0)
  2023年2月1日
摘要: 全局配置文件保存在用户主目录下的.gitconfig 查看全局用户名和email:git config --global user.name git config --global user.email 设置全局用户名和email:git config --global user.name xxx 阅读全文
posted @ 2023-02-01 15:14 chengxuyuan123 阅读(70) 评论(0) 推荐(0)
  2021年3月4日
摘要: 1、选中需要操作的行2、Ctrl + H 调出替换栏3、在 Find 栏中输入(同时按这三个键) Ctrl + Shift + Enter , Replace 栏不填4、按Replace All 阅读全文
posted @ 2021-03-04 17:56 chengxuyuan123 阅读(1501) 评论(0) 推荐(0)
摘要: 前言 作为一名运维人员,文本IDE的列编辑模式对工作效率的提升很大。以前总用UE,觉得UE的列编辑模式设置很人性化(alt+c)。后来接触了sublime,个人觉得它的列编辑模式使用对比UE略有差距。本文讲解windows下如何使用和设置sublime 列编辑模式 方式 一: Shift+鼠标右键 阅读全文
posted @ 2021-03-04 17:49 chengxuyuan123 阅读(460) 评论(0) 推荐(0)