2
0
mirror of https://github.com/acepanel/acepanel.github.io.git synced 2026-02-04 14:07:16 +08:00
Files
acepanel.github.io/zh_CN/advanced/toolbox/process.md
github-actions[bot] 612a7cd5ec New Crowdin translations by GitHub Action (#75)
Co-authored-by: Crowdin Bot <support+bot@crowdin.com>
2026-01-27 01:38:03 +08:00

62 lines
1.5 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 进程管理
进程管理页面用于查看和管理系统中运行的进程。
## 进程列表
![进程管理](/images/toolbox/toolbox-process.png)
页面以表格形式展示所有运行中的进程。
列表显示以下信息:
- **PID**:进程 ID
- **名称**:进程名称
- **父进程 PID**:父进程的 PID
- **线程**:线程数量
- **用户**:运行进程的用户
- **状态**:进程状态
- **CPU**CPU 使用率
- **内存**:内存使用量
- **启动时间**:进程启动时间
## 进程状态
| 状态 | 说明 |
| --- | ---------- |
| 运行中 | 进程正在执行 |
| 睡眠 | 进程等待事件 |
| 空闲 | 内核线程空闲 |
| 停止 | 进程已停止 |
| 僵尸 | 进程已结束但未被回收 |
## 搜索和筛选
- **搜索**:按 PID 或进程名称搜索
- **状态筛选**:筛选特定状态的进程
## 进程操作
右键点击进程可以:
- **结束进程**:发送 SIGTERM 信号
- **强制结束**:发送 SIGKILL 信号
- **查看详情**:查看进程详细信息
## 常见进程
| 进程 | 说明 |
| -------- | ----------------- |
| nginx | Nginx Web 服务器 |
| php-fpm | PHP FastCGI 进程管理器 |
| mysqld | MySQL 数据库服务 |
| postgres | PostgreSQL 数据库服务 |
| dockerd | Docker 守护进程 |
| ace | AcePanel 面板进程 |
## 注意事项
1. 结束系统关键进程可能导致系统不稳定
2. 结束面板进程会导致面板无法访问
3. 建议只结束确认无用的进程