搜索结果: "command"

共找到 32 个页面

MySQL 性能调优 — 慢查询 / 锁分析 / 死锁排查 / 索引失效 / 深度分页 / 缓冲池 / 配置模板

SELECT p.ID, p.USER, p.HOST, p.DB, p.COMMAND, p.TIME,

WHERE p.COMMAND != 'Sleep'

WHERE COMMAND != 'Sleep' AND TIME > 300

SELECT p.ID, p.USER, p.HOST, p.DB, p.COMMAND, p.TIME, p.STATE,

2. 找到谁持有了该表的 MDL — 查 `PROCESSLIST` 中 `Command=Sleep` 但未提交的事务

Wiki Log

- Created raw: raw/articles/cpu-spike-3-commands.md

- Created concepts: cpu-spike-3-commands(同伴案例页)

- Merged into: pod-troubleshooting(Exit Code 143/Java OOM/command override/三探针配合/8 步排查法)

- Updated: cpu-spike-3-commands(同伴交叉引用,三命令速查 → 完整排查方法论)

- concepts/linux/cpu-spike-3-commands.md(添加交叉引用 + bump updated)

运维自动化脚本 5 件套 — 健康巡检/日志告警/MySQL备份/批量执行/服务守护

def run_command(server, cmd):

stdin, stdout, stderr = ssh.exec_command(cmd)

def batch_execute(command):

futures = [executor.submit(run_command, s, command) for s in servers]

线上故障排查清单 — CPU/磁盘/内存/GC/网络 四维速查

详细排查流程参见 [[cpu-spike-troubleshooting-guide]](四层定位法)和 [[cpu-spike-3-commands]](三命令速查)。

| [[cpu-spike-3-commands]] | CPU 飙高三命令速查 |

| [[linux-essential-commands-reference]] | Linux 30 个高频命令速查(排查场景 → 命令映射表) |

K8s 探针机制 — Liveness / Readiness / Startup 配置指南 + 百万级故障复盘

command:

command:

command:

Linux 服务器 CPU 飙高排查 — 完整方法论 + 应急响应实战

![](参考浓缩版参见 [[cpu-spike-3-commands]](top → strace -c → /proc/PID/fd/ 三命令速查)。)

| [[cpu-spike-3-commands]] | CPU 飙高三命令速查(top → strace -c → /proc/PID/fd/,同伴快速参考) |

- [[linux-essential-commands-reference]] — Linux 30 个高频命令速查(top/ps/kill 等进程管理命令速查)

Java 应用 CPU 100% 排查实战 — 从告警到代码行的四步法

> 排查方法论参见 [[cpu-spike-troubleshooting-guide]](通用 Linux 四层体系),三命令速查参见 [[cpu-spike-3-commands]]。

PID USER %CPU COMMAND

- [[cpu-spike-3-commands]] — 三命令速查(top → strace → /proc/PID/fd/)

Linux 硬件信息查询与软件管理命令速查 — CPU/内存/磁盘/网络/主板全覆盖

tags: [linux, command, performance, monitoring, disk, networking, troubleshooting, architecture]

服务器硬件信息排查是运维日常高频场景。本文集中整理 CPU、内存、磁盘、网络、主板五类硬件查询命令,以及软件包管理命令,作为 [[linux-essential-commands-reference]] 的硬件侧补充。

- [[linux-essential-commands-reference]] — Linux 运维工程师 30 个高频命令速查(基础文件/进程/权限/网络操作)

Linux 端口探查三工具 — ss / netstat / lsof 完全指南

COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME

| COMMAND | 进程名 |

- [[linux-essential-commands-reference]] — Linux 30 个高频命令速查手册(ss/netstat/lsof 等核心命令速查)

服务器性能五维排查 — CPU/内存/磁盘/网络/文件系统深度解析

- raw/articles/cpu-spike-3-commands.md

参见 [[cpu-spike-3-commands]] 获取完整的三命令排查法实战案例。

| [[linux-essential-commands-reference]] | Linux 30 个高频命令速查(vmstat/free/iostat 等监控命令一览) |

DNS 故障排查实战指南 — 从本地解析到权威 DNS 全链路

tags: [dns, networking, linux, troubleshooting, command]

- [[linux-essential-commands-reference]] — Linux 常用命令

systemd 日志管理与实时监控:journalctl 命令完全指南

tags: [linux, command, monitoring, debugging]

- [[linux-essential-commands-reference]] — 30 个高频命令速查(含 journalctl 基础用法)

Linux 批量重命名指南 — rename/prename 8 大场景实战

tags: [linux, command, automation]

- [[linux-essential-commands-reference]] — Linux 命令综合参考

Linux 压缩解压工具对比与实战指南

tags: [linux, command, compression, tar, gzip, archive, performance]

- [[linux-essential-commands-reference]] — Linux 30 个高频命令速查(含 tar/gzip 基础用法)

磁盘排查工具实战指南 — iostat/smartctl/lsscsi 详解

tags: [linux, disk, storage, command, monitoring, troubleshooting]

- [[linux-essential-commands-reference]] — Linux 常用命令

Linux 目录结构完全指南 — FHS 标准与运维实战

tags: [linux, command, storage, disk, architecture, troubleshooting]

- [[linux-essential-commands-reference]] — Linux 常用命令速查

Linux 海量文件删除指南 — find/perl/rsync/shred 四种方法对比

tags: [linux, command, performance, case-study, security, networking]

- [[linux-essential-commands-reference]] — Linux 命令速查(`rm`/`find`/`truncate` 等基础操作)

Linux RAID 与 LVM 基础指南 — 磁盘组合与空间管理

tags: [linux, storage, disk, architecture, command]

- [[linux-essential-commands-reference]] — Linux 常用命令

Wiki Index

- [[cpu-spike-3-commands]] — CPU 飙高三命令排查法:top → strace -c → /proc/PID/fd/ 实战案例

- [[linux-essential-commands-reference]] — Linux 运维工程师 30 个高频命令速查手册(ls/cd/grep/find/top/ss/tcpdump 等全覆盖)

Wiki Schema

- command: Linux 命令与工具用法

MySQL 慢查询排查案例复盘 — 从发现到根治的完整链路

WHERE COMMAND != 'Sleep' AND TIME > 2

Redis 备份恢复实战 — 备份脚本 / 恢复流程 / 容灾方案

- **安全配置** — `rename-command FLUSHALL ""`、`requirepass`、`protected-mode`

Jenkins + Ansible 集成实战 — CI/CD 配置管理流水线

| ① Jenkins 找不到 ansible | `ansible: command not found` | Systemd 环境变量与登录 shell 不同 | Global Tool Configuration 配对路径;或 Jenkinsfile 中手动设 `PATH` |

运维工程师面试 50 题 — 经典 Linux/网络/数据库基础全覆盖

command & # 后台启动

ConfigMap 挂载踩坑指南 — 符号链接 / 只读 / 热更新 / 标准挂载模式

- command:

Jenkins 多 Master 架构部署方案 — K8S + Gateway API

command: "cat"

K8s 资源限制配置指南 — Request / Limit / QoS / CPU Throttling

command: ["redis-server", "--maxmemory", "1536mb", "--maxmemory-policy", "allkeys-lru"]

K8s 滚动更新无损发布误区 — RollingUpdate 真相与真正无感发布体系

command:

Pod 排障 — CrashLoopBackOff / Exit Code 排查 / OOM / 探针 / 依赖服务 / ConfigMap

# 或直接修改 Deployment 的 command 字段临时覆盖

CPU 飙高三命令排查法 — top → strace → /proc/PID/fd/ 实战

sources: [raw/articles/cpu-spike-3-commands.md]

Linux 磁盘空间排查 — 8 个命令 / 四种场景 / 生产清理流程

- [[linux-essential-commands-reference]] — Linux 30 个高频命令速查(df/du/find 等磁盘管理命令速查)

Linux 运维工程师 30 个高频命令速查手册

nice -n 10 command # 以低优先级启动