摘要:
常规备份 1 导出一个数据库的结构 mysqldump d dbname uroot p dbname.sql 2 导出多个数据库的结构 mysqldump d B dbname1 dbname2 uroot p dbname.sql 3 导出一个数据库中数据(不包含结构) mysqldump t 阅读全文
摘要:
通过headless service 可以轻松找到statefulSet 的所有节点。 特别是在部署集群的时候,很多服务需要配置节点信息来创建集群。 statefulSet.spec.serviceName 当serviceName 配置成与headless service的Name 相同的时候 可 阅读全文
摘要:
[base]: ../../docs/glossary.md base [config]: https://github.com/kinflate/example hello [gitops]: ../../docs/glossary.md gitops [hello]: https://githu 阅读全文
摘要:
索引操作 // Index maps the indexed value to a set of keys in the store that match on that value type Index map[string]sets.String // Indexers maps a name 阅读全文
摘要:
iptables 1. iptables 是什么 iptables 是一个 客户端 ,用户通过ipatbales这个代理,将用户的安全设定执行到对应的“安全框架中”, 这个安全框架才是真正的防火墙,框架的名字叫 netfilter 。 iptables 处于用户空间,netfiler 在内核空间。 阅读全文
摘要:
https://www.cnblogs.com/wajika/p/6575656.html 阅读全文
摘要:
keepalived 双机热备 1. keepalived 双机热备的原理 首先,要知道 keepalived 有三个模块,分别是core、check和vrrp。其中core模块为keepalived的核心,负责主进程的启动、维护以及全局配置文件的加载和解析,check模块负责健康检查,vrrp模块 阅读全文
摘要:
TCP的三次握手与四次挥手理解及面试题 https://blog.csdn.net/qq_38950316/article/details/81087809 linux 内核优化 https://www.cnblogs.com/sykblogs/p/9488656.html TIME_WAIT 处理 阅读全文
摘要:
location表达式类型 ~ 表示执行一个正则匹配,区分大小写 ~ 表示执行一个正则匹配,不区分大小写 ^~ 表示普通字符匹配。使用前缀匹配。如果匹配成功,则不再匹配其他location。 = 进行普通字符精确匹配。也就是完全匹配。 @ 它定义一个命名的 location,使用在内部定向时,例如 阅读全文
摘要:
CentOS 系统启动流程 1. linux系统的组成部分 内核 + 根文件系统 内核: 进程管理 内存管理 网络协议栈 文件系统 驱动程序 安全功能 IPC : inner Proccess communication 本地进程间通信机制 消息对列 semerphor shm 远程 阅读全文