搜索结果: "production"
共找到 68 个页面
DevOps 技术面试指南 — 容器/云原生/内核 59 题
tags: [linux, docker, kubernetes, deployment, networking, security, monitoring, production]
| 3 | Docker 容器和虚拟机的区别? | 容器共享宿主机内核(轻量/启动快),虚拟机有独立内核(隔离性好/占用多) | [[docker-production-pitfalls]] |
| 8 | Linux 系统性能优化? | 内核参数(sysctl) + 文件系统 + 内存管理(swap) + CPU(cgroups) + 网络参数 | [[linux-kernel-tuning-production]] |
| 52 | TCP 协议栈优化+Pod 网络? | 缓冲区增大 + tcp_fastopen + BBR + Calico DSR + MTU 调整 + eBPF + SR-IOV | [[linux-kernel-tuning-production]] |
| [[docker-production-pitfalls]] | Docker 生产环境踩坑指南 |
K8s 资源限制配置指南 — Request / Limit / QoS / CPU Throttling
tags: [kubernetes, troubleshooting, pod, deployment, production, debugging]
name: production-quota
namespace: production
- [[docker-production-pitfalls]] — Docker 原生资源限制视角(与 K8s 资源限制互补)
- [[k8s-java-memory-tuning-production-guide]] — Kubernetes 下 Java 内存调优完整指南 — 内存预算模型、生产参数配置、四层诊断流程、
Wiki Index
- [[docker-production-pitfalls]] — Docker 生产环境踩坑指南:10+5 个常见问题(存储/网络/安全/数据管理)
- [[k8s-java-memory-tuning-production-guide]] — Kubernetes 下 Java 内存调优完整指南 — 内存预算模型、生产参数配置、四层诊断流程、GC 选型、发布策略
- [[k8s-production-incident-case-studies]] — K8s 生产 10 大故障复盘:etcd/API Server/证书/节点/PDB/配额/HPA/ConfigMap
- [[linux-kernel-tuning-production]] — 生产环境 6 个必调 Linux 内核参数
- [[nginx-production-performance-optimization]] — 生产级 Nginx 性能优化 — OS 内核/Worker 进程/HTTP I/O/Upstream 代理/K8s 云原生全链路优化
Wiki Log
- Created raw: raw/articles/k8s-troubleshooting-production-guide.md
- Created raw: raw/articles/linux-kernel-tuning-production.md
- Created concepts: linux-kernel-tuning-production
- Updated: ssh-brute-force-protection-guide, linux-kernel-tuning-production
- Created raw: raw/articles/docker-production-pitfalls.md
Docker 镜像优化完全指南:瘦身、构建加速与安全加固
RUN npm ci --production
RUN npm ci --production
npm ci --production
- [[docker-production-pitfalls]] — Docker 生产环境踩坑指南(10+5 个常见问题)
运维工程师面试 50 题 — 经典 Linux/网络/数据库基础全覆盖
tags: [linux, networking, database, troubleshooting, production, security, monitoring, docker]
参见 [[docker-production-pitfalls]](Docker 生产踩坑)和 [[docker-image-optimization]](镜像优化)。
| [[docker-production-pitfalls]] | Docker 生产踩坑 |
| [[linux-kernel-tuning-production]] | 内核参数调优 |
K8s 容量规划、Pod QoS 与成本优化实战指南
environment: production # 环境拆分
- [[docker-production-pitfalls]] — Docker 生产坑(含 OOMKilled)
- [[k8s-production-incident-case-studies]] — K8s 生产故障案例
- [[k8s-java-memory-tuning-production-guide]] — Kubernetes 下 Java 内存调优完整指南 — 内存预算模型、生产参数配置、四层诊断流程、
K8s 高频问题一站式排查清单 — 10 大故障场景快速参考
tags: [kubernetes, troubleshooting, production, debugging, pod, node, service, storage, networking, security]
📖 深度排查 → [[k8s-production-incident-case-studies]](etcd 故障案例) | [[k8s-troubleshooting-principles]]
📖 深度排查 → [[resource-rbac-scheduling-troubleshooting]] | [[k8s-production-incident-case-studies]]
- [[k8s-production-incident-case-studies]] — K8s 生产 10 大故障复盘(etcd/证书/节点/PDB/配额/HPA/ConfigMap)
资源配额 / OOMKilled / RBAC / 调度排障
sources: [raw/articles/k8s-troubleshooting-production-guide.md, raw/articles/k8s-resource-limits-configuration.md]
name: production-quota
namespace: production
- [[docker-production-pitfalls]] — Docker 原生 OOMKill 与资源限制视角
服务器安全加固清单 — 新机器上线前必做的 20 件事
tags: [security, linux, production, monitoring, networking, debugging]
与 [[linux-kernel-tuning-production]] 的性能调优不同,以下是**安全加固**视角的参数:
| [[linux-kernel-tuning-production]] | 内核参数调优(性能视角)+ 安全加固参数交叉 |
| [[docker-production-pitfalls]] | Docker 生产环境踩坑(Docker API 安全与 daemon 加固) |
Docker 生产环境踩坑指南 — 10 + 5 个常见问题
tags: [docker, container, troubleshooting, security, production, networking, debugging]
sources: [raw/articles/docker-production-pitfalls.md]
**修复方案:** Always set resource limits in production(Docker Compose 或 Docker run 命令行)。
K8s CI/CD 架构实战 — Jenkins / GitLab CI / Argo CD / Helm 全链路
tags: [kubernetes, deployment, build, production]
--dest-namespace production \
helm upgrade --install myapp ./charts/myapp -f values-prod.yaml -n production
Node 排障 — NotReady 九步排查 / Kubelet / 容器运行时 / 资源压力 / 证书 / 预防
tags: [kubernetes, troubleshooting, node, production, monitoring, networking, certificate]
- raw/articles/k8s-troubleshooting-production-guide.md
- [[k8s-production-incident-case-studies]] — K8s 生产 10 大故障复盘(节点 NotReady/etcd 磁盘等实战案例)
Linux 系统调优实战 — 接口响应从 500ms 降到 100ms 全复盘
tags: [linux, performance, troubleshooting, case-study, production]
| [[linux-kernel-tuning-production]] | 内核参数调优(sysctl 详解) |
| [[k8s-java-memory-tuning-production-guide]] | Kubernetes 下 Java 内存调优完整指南 — 内存预算模型、生产参数配置、四层诊断流程、 |
Linux 入侵检测与应急响应 — AIDE/rkhunter/auditd 安全事件排查实战
tags: [linux, security, production, monitoring, debugging, networking]
| [[linux-kernel-tuning-production]] | 内核安全参数(入侵检测的底层基础设施) |
| [[docker-production-pitfalls]] | Docker 安全(Docker daemon 入侵检测补充) |
Linux 高并发内核优化手册 — 文件句柄/网络/内存/调度/I/O/安全七维调优
- **swappiness = 10** — 与 [[linux-kernel-tuning-production]] 推荐一致,尽量避免 Swap
- [[linux-kernel-tuning-production]] — 生产环境 Linux 内核参数调优(6 个必调参数)
- [[nginx-production-performance-optimization]] — 生产级 Nginx 性能优化 — OS 内核/Worker 进程/HTTP I/O/Upstream
服务器性能五维排查 — CPU/内存/磁盘/网络/文件系统深度解析
tags: [linux, troubleshooting, performance, monitoring, production, debugging, networking, mysql, filesystem]
| [[linux-kernel-tuning-production]] | sysctl 系统参数详解(内核调优) |
| [[k8s-java-memory-tuning-production-guide]] | Kubernetes 下 Java 内存调优完整指南 — 内存预算模型、生产参数配置、四层诊断流程、 |
Nginx 502/504/Connection Reset 深度排查指南
tags: [nginx, troubleshooting, networking, production, debugging, performance]
| [[nginx-production-performance-optimization]] | 生产级 Nginx 性能优化 — OS 内核/Worker 进程/HTTP I/O/Upstream |
| [[linux-kernel-tuning-production]] | net.core.somaxconn / fs.file-max 内核参数 |
Nginx 典型配置错误复盘 — 20+ 个踩坑点详解
tags: [nginx, troubleshooting, networking, production, security, deployment]
与 [[linux-kernel-tuning-production]] 中的 `fs.file-max` 配合使用。
- [[nginx-production-performance-optimization]] — 生产级 Nginx 性能优化 — OS 内核/Worker 进程/HTTP I/O/Upstream
容器网络排障 6 层模型 — K8s/Docker/containerd 统一排查体系
| [[docker-production-pitfalls]] | Docker bridge 网络踩坑(6 层模型第 ②~⑤ 层 Docker 视角) |
| [[linux-kernel-tuning-production]] | rp_filter 内核参数调优说明(6 层模型第 ⑤ 层深入) |
JVM 容器 OOM 排障指南 — 堆外内存视角
- [[docker-production-pitfalls]] — Docker 容器 OOMKilled 排查(坑四)
- [[k8s-java-memory-tuning-production-guide]] — Kubernetes 下 Java 内存调优完整指南 — 内存预算模型、生产参数配置、四层诊断流程、
K8s 滚动更新无损发布误区 — RollingUpdate 真相与真正无感发布体系
tags: [kubernetes, deployment, networking, troubleshooting, production, performance]
| [[k8s-production-incident-case-studies]] | K8s 生产 10 大故障复盘(PDB/滚动更新/ConfigMap/HPA 等实战案例)
K8s Pod 调度策略完全指南 — 六大机制全解析
tags: [kubernetes, scheduling, production, deployment]
- Master:nodeAffinity 锁定 SSD + database 节点,PriorityClass `critical-production`
StatefulSet 完全指南 — 稳定网络标识 / 独立存储 / 有序部署
tags: [kubernetes, statefulset, deployment, storage, networking, production]
| [[k8s-production-incident-case-studies]] | K8s 生产 10 大故障复盘(StatefulSet 节点维护/PDB 驱逐案例) |
K8s 生产排障基本原则与快速定位流程
tags: [kubernetes, troubleshooting, production, kubectl]
- raw/articles/k8s-troubleshooting-production-guide.md
Pod 排障 — CrashLoopBackOff / Exit Code 排查 / OOM / 探针 / 依赖服务 / ConfigMap
tags: [kubernetes, troubleshooting, pod, deployment, production, networking, configmap]
- raw/articles/k8s-troubleshooting-production-guide.md
生产级 Linux 磁盘 IO 调优 — 从核心概念到实战落地
tags: [linux, performance, storage, production, monitoring, debugging]
| [[linux-kernel-tuning-production]] | 内核参数调优总纲(vm.* 参数上下文) |
Linux 磁盘空间排查 — 8 个命令 / 四种场景 / 生产清理流程
tags: [linux, troubleshooting, disk, storage, monitoring, production, debugging]
- [[linux-kernel-tuning-production]] — 内核参数调优(IO 调度器等)
生产环境 Linux 内核参数调优 — 6 个必调参数
tags: [linux, production, networking, monitoring]
sources: [raw/articles/linux-kernel-tuning-production.md, raw/articles/server-security-hardening-checklist.md]
Linux Load Average 完全解读 — 内核原理 / 排查方法论 / 容器环境实战
tags: [linux, performance, monitoring, troubleshooting, debugging, production]
| [[linux-kernel-tuning-production]] | IO 调度算法 / sysctl 调优 |
Linux 服务器性能排查实战手册 — 三板斧/案例/阈值/参数速查
> 内核参数完整调优方案参见 [[linux-kernel-tuning-production]] 和 [[linux-kernel-tuning-guide]]。
- [[linux-kernel-tuning-production]] — 生产环境内核参数调优
SSH 暴力破解防御指南 — 公钥认证 / fail2ban / 2FA / 入侵检测 / 连接限制 / 蜜罐
tags: [security, linux, production, networking, troubleshooting, automation]
| [[linux-kernel-tuning-production]] | 安全相关内核参数 |
Keepalived+Nginx 高可用实战 — 3 个隐藏坑位与生产级防护方案
tags: [nginx, keepalived, networking, production, ha, troubleshooting, monitoring, architecture]
- ansible-playbook -i inventory/production nginx_update.yml
Nginx 安全配置实战 — 防DDoS/限流/WAF 规则编写
tags: [nginx, security, networking, production, monitoring, debugging]
| [[nginx-production-performance-optimization]] | 生产级 Nginx 性能优化 — OS 内核/Worker 进程/HTTP I/O/Upstream |
Wiki Schema
- production: 生产环境
注册中心选型 — Nacos / Zookeeper / Consul 深度对比
tags: [microservices, service-discovery, nacos, zookeeper, consul, production]
MySQL 性能调优 — 慢查询 / 锁分析 / 死锁排查 / 索引失效 / 深度分页 / 缓冲池 / 配置模板
tags: [mysql, database, performance, monitoring, production, deadlock, lock]
MySQL 主从复制指南 — 原理 / GTID / 架构 / 故障排查 / 监控
tags: [mysql, database, replication, high-availability, troubleshooting, production]
Redis 备份恢复实战 — 备份脚本 / 恢复流程 / 容灾方案
tags: [redis, database, backup, data-loss, production]
Redis 连接管理与熔断治理 — 连接数打满 / 僵尸连接 / 雪崩防护
tags: [redis, database, troubleshooting, production, monitoring, debugging]
Redis 高可用 — 主从复制 / 哨兵 / 脑裂 / 集群踩坑
tags: [redis, database, high-availability, replication, sentinel, production]
Redis 内存优化完全指南 — 数据结构/TTL/淘汰策略/Bigkey/碎片治理
tags: [redis, database, memory, production, performance, debugging]
Redis 持久化机制 — RDB / AOF / 混合持久化
tags: [redis, database, persistence, production]
Go 静态编译与 Docker 极致瘦身
- [[docker-production-pitfalls]] — Docker 生产环境踩坑指南(多阶段构建信息泄露等)
全栈性能排障方法论 — Nginx → 应用 → 数据库 → 服务器
tags: [troubleshooting, production, monitoring, networking, database, mysql, nginx]
Jenkins + Ansible 集成实战 — CI/CD 配置管理流水线
- [[docker-production-pitfalls]] — Docker 生产级实践
服务器网络排障方法论 — 分层定位七步法
tags: [networking, troubleshooting, production, debugging, monitoring, linux]
线上故障排查清单 — CPU/磁盘/内存/GC/网络 四维速查
tags: [troubleshooting, performance, linux, debugging, production, monitoring]
运维自动化脚本 5 件套 — 健康巡检/日志告警/MySQL备份/批量执行/服务守护
| [[terraform-production-guide]] | Terraform IaC 实战(自动化脚本 + IaC 互补:脚本 vs 声明式基础设施) |
数据库上 K8s 架构选型 — 收益与风险权衡
tags: [kubernetes, database, deployment, production, architecture, mysql, statefulset]
Kubernetes CoreDNS 自定义域名解析 — 五种场景从原理到生产实操
tags: [kubernetes, dns, networking, troubleshooting, production]
K8s 面试通关指南 — 100 道核心题全解析
tags: [kubernetes, deployment, troubleshooting, production, networking, security]
Kubernetes 负载均衡深度实践:Service 数据面到生产级流量治理全链路
tags: [kubernetes, networking, production, troubleshooting, performance]
K8s 持久化存储 — PV / PVC / StorageClass 生产实战
tags: [kubernetes, storage, pvc, statefulset, production]
K8s 探针机制 — Liveness / Readiness / Startup 配置指南 + 百万级故障复盘
tags: [kubernetes, pod, troubleshooting, production, monitoring]
K8s 生产环境 10 大故障复盘 — 集群级灾难到应用级问题
tags: [kubernetes, troubleshooting, production, case-study, debugging]
Service 与网络排障 — Endpoints / DNS / kube-proxy / CNI / NetworkPolicy / Ingress
- raw/articles/k8s-troubleshooting-production-guide.md
存储排障 — PVC Pending / 挂载失败
sources: [raw/articles/k8s-troubleshooting-production-guide.md]
Linux 服务器 CPU 飙高排查 — 完整方法论 + 应急响应实战
tags: [linux, performance, monitoring, debugging, production]
Linux 内存管理深潜 — Buffer/Cache/Page Cache/Slab/回收/OOM 全链路
- [[linux-kernel-tuning-production]] — 内核参数调优(vm.swappiness/vm.min_free_kbytes)
NFS 挂载参数全解析 — 测试与调优指南
- [[linux-kernel-tuning-production]] — 内核参数调优(sysctl 与 NFS 内核模块)
服务器负载过高排查 — 案例实战 / Netflix 60 秒法 / 常见根因
tags: [linux, troubleshooting, performance, production, debugging, case-study]
Linux 用户管理避坑指南 — /etc/passwd/shadow 到用户安全运维
tags: [linux, security, production, troubleshooting]
TCP 连接数爆表:攻击还是 Bug 排查指南
- [[docker-production-pitfalls]] — Docker 生产环境 TCP 连接排坑
Keepalived + Nginx 高可用实战 — VRRP / VIP 漂移 / 主备切换
tags: [nginx, networking, production, deployment, ha, keepalived]
Nginx 负载均衡策略选择实战指南
- [[nginx-production-performance-optimization]] — 生产级 Nginx 性能优化 — OS 内核/Worker 进程/HTTP I/O/Upstream
Nginx 上线前检查清单 — 7 项必查配置
tags: [nginx, deployment, production, security, networking]
Nginx 实时推送生产实践全解:SSE 与 WebSocket 的原理、架构、工程化与生产级落地
tags: [nginx, websocket, sse, production]