12 lines
644 B
Markdown
12 lines
644 B
Markdown
# 故障排查(Server)
|
||
|
||
- 端口占用:查看 `安装报告_*.md` 中端口表;如需修改,编辑 `compose/.env` 后执行 `docker compose ... up -d`。
|
||
- 组件未就绪:
|
||
- Master: `curl http://127.0.0.1:${MASTER_PORT}/readyz -I`
|
||
- ES: `curl http://127.0.0.1:${ES_HTTP_PORT}/_cluster/health`
|
||
- Grafana: `curl http://127.0.0.1:${GRAFANA_PORT}/api/health`
|
||
- Prometheus TCP: `exec 3<>/dev/tcp/127.0.0.1/${PROMETHEUS_PORT}`
|
||
- 域名解析:进入 `argus-web-proxy` 或 `argus-master-sys` 容器:`getent hosts master.argus.com`。
|
||
- Swarm/Overlay:检查 `docker network ls | grep argus-sys-net`,或 `docker node ls`。
|
||
|