|
|
@@ -6,9 +6,9 @@
|
|
|
|
|
|
| 服务文件 | 服务名 | 端口 | 说明 |
|
|
|
|---------|--------|------|------|
|
|
|
-| `lingyue-starter.service` | lingyue-starter | 5232 | Java 主应用(单体启动器) |
|
|
|
-| `lingyue-extract.service` | lingyue-extract | 8086 | 模板系统服务 |
|
|
|
-| `lingyue-ner.service` | lingyue-ner | 8001 | NER Python 服务 |
|
|
|
+| `lingyue-starter.service` | lingyue-starter | 18520 | Java 主应用(单体启动器) |
|
|
|
+| `lingyue-extract.service` | lingyue-extract | 18521 | 模板系统服务 |
|
|
|
+| `lingyue-ner.service` | lingyue-ner | 18522 | NER Python 服务 |
|
|
|
|
|
|
## 安装步骤
|
|
|
|
|
|
@@ -116,13 +116,13 @@ sudo systemctl restart lingyue-starter
|
|
|
|
|
|
```bash
|
|
|
# 主应用健康检查
|
|
|
-curl http://localhost:5232/actuator/health
|
|
|
+curl http://localhost:18520/actuator/health
|
|
|
|
|
|
# 模板服务健康检查
|
|
|
-curl http://localhost:8086/api/v1/extract/health
|
|
|
+curl http://localhost:18521/api/v1/extract/health
|
|
|
|
|
|
# NER 服务健康检查
|
|
|
-curl http://localhost:8001/health
|
|
|
+curl http://localhost:18522/health
|
|
|
```
|
|
|
|
|
|
## 一键脚本
|