This is an automated email from the ASF dual-hosted git repository.

liuhongyu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hertzbeat.git


The following commit(s) were added to refs/heads/master by this push:
     new bcd394b47f [docs] update doc fix wrong manager (#3850)
bcd394b47f is described below

commit bcd394b47f2ddb179dcc08fb498cfb4fad950854
Author: Tomsun28 <[email protected]>
AuthorDate: Sat Nov 8 20:33:42 2025 +0800

    [docs] update doc fix wrong manager (#3850)
    
    Signed-off-by: tomsun28 <[email protected]>
---
 .github/labeler.yml                                |  20 +--
 .gitpod.yml                                        |   6 +-
 CONTRIBUTING.md                                    |  34 +-----
 README.md                                          |   4 +-
 README_CN.md                                       |   4 +-
 README_JP.md                                       |   4 +-
 hertzbeat-startup/README.md                        | 135 ---------------------
 home/docs/community/contribution.md                |   4 +-
 home/docs/community/development.md                 |   4 +-
 home/docs/start/mysql-change.md                    |   2 +-
 home/docs/start/postgresql-change.md               |   2 +-
 home/docs/start/quickstart.md                      |   2 +-
 .../current/community/contribution.md              |   4 +-
 .../current/community/development.md               |   4 +-
 .../current/start/mysql-change.md                  |   2 +-
 .../current/start/postgresql-change.md             |   2 +-
 .../current/start/quickstart.md                    |   4 +-
 .../version-v1.6.x/community/contribution.md       |   4 +-
 .../version-v1.6.x/community/development.md        |   4 +-
 .../version-v1.6.x/start/mysql-change.md           |   2 +-
 .../version-v1.6.x/start/postgresql-change.md      |   2 +-
 .../version-v1.6.x/start/quickstart.md             |   2 +-
 .../version-v1.6.x/community/contribution.md       |   4 +-
 .../version-v1.6.x/community/development.md        |   4 +-
 .../version-v1.6.x/start/mysql-change.md           |   2 +-
 .../version-v1.6.x/start/postgresql-change.md      |   2 +-
 26 files changed, 53 insertions(+), 210 deletions(-)

diff --git a/.github/labeler.yml b/.github/labeler.yml
index 71e794a854..9c2f45c690 100644
--- a/.github/labeler.yml
+++ b/.github/labeler.yml
@@ -90,24 +90,24 @@ e2e:
 backend:
   - changed-files:
       - any-glob-to-any-file:
-          - "alerter/**/*"
-          - "collector/**/*"
-          - "common/**/*"
-          - "grafana/**/*"
-          - "manager/**/*"
-          - "push/**/*"
-          - "remoting/**/*"
-          - "warehouse/**/*"
+          - "hertzbeat-alerter/**/*"
+          - "hertzbeat-collector/**/*"
+          - "hertzbeat-common/**/*"
+          - "hertzbeat-grafana/**/*"
+          - "hertzbeat-manager/**/*"
+          - "hertzbeat-push/**/*"
+          - "hertzbeat-remoting/**/*"
+          - "hertzbeat-warehouse/**/*"
 
 collector:
   - changed-files:
       - any-glob-to-any-file:
-          - "collector/**/*"
+          - "hertzbeat-collector/**/*"
             
 monitoring-template:
   - changed-files:
       - any-glob-to-any-file:
-          - "manager/src/main/resources/define/**/*"
+          - "hertzbeat-manager/src/main/resources/define/**/*"
 
 HIP:
   - changed-files:
diff --git a/.gitpod.yml b/.gitpod.yml
index 56a9a2d415..957978bc3f 100644
--- a/.gitpod.yml
+++ b/.gitpod.yml
@@ -4,7 +4,7 @@ image:
 tasks:
 
     - name: Run backend
-      before: cd hertzbeat-manager
+      before: cd hertzbeat-startup
       command: |
           gp sync-await setup-backend
           mvn spring-boot:run
@@ -13,7 +13,7 @@ tasks:
       before: cd web-app
       command: |
           gp sync-await setup-frontend
-          yarn start --public-host "`gp url 4200`"
+          pnpm start --public-host "`gp url 4200`"
       openMode: split-right
 
     - name: Setup backend
@@ -25,7 +25,7 @@ tasks:
 
     - name: Setup frontend
       init: |
-          cd web-app && yarn install
+          cd web-app && pnpm install
       command: |
           gp sync-done setup-frontend
           exit 0
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 7ec8225b12..2e56cd4baa 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -27,20 +27,20 @@ Even small corrections to typos are very welcome :)
 ### Getting HertzBeat up and running   
 
 > To get HertzBeat code running on your development tools, and able to debug 
 > with breakpoints.
-> This is a front-end and back-end separation project. To start the local 
code, the back-end [manager](manager) and the front-end [web-app](web-app) must 
be started separately.  
+> This is a front-end and back-end separation project. To start the local 
code, the back-end [startup](hertzbeat-startup) and the front-end 
[web-app](web-app) must be started separately.  
 
 
 #### Backend start
 
 1. Requires `maven3+`, `java17` and `lombok` environments
 
-2. (Optional) Modify the configuration file: 
`manager/src/main/resources/application.yml`
+2. (Optional) Modify the configuration file: 
`hertzbeat-startup/src/main/resources/application.yml`
 
 3. Execute under the project root directory: `mvn clean install -DskipTests`
 
 4. Add VM Options: 
`--add-opens=java.base/java.nio=org.apache.arrow.memory.core,ALL-UNNAMED`
 
-5. Start `springboot manager` service: 
`manager/src/main/java/org/apache/hertzbeat/hertzbeat-manager/Manager.java`
+5. Start `springboot startup` service: 
`hertzbeat-startup/src/main/java/org/apache/hertzbeat/startup/HertzBeatApplication.java`
 
 #### Frontend start
 
@@ -131,17 +131,6 @@ Add WeChat account `ahertzbeat` to pull you into the 
WeChat group.
 
 ## 🥐 Architecture
 
-- 
**[manager](https://github.com/apache/hertzbeat/tree/master/hertzbeat-manager)**
 Provide monitoring management, system management basic services.
-> Provides monitoring management, monitoring configuration management, system 
user management, etc.
-- **[collector](https://github.com/apache/hertzbeat/tree/master/collector)** 
Provide metrics data collection services.
-> Use common protocols to remotely collect and obtain peer-to-peer metrics 
data.
-- **[warehouse](https://github.com/apache/hertzbeat/tree/master/warehouse)** 
Provide monitoring data warehousing services.
-> Metrics data management, data query, calculation and statistics.
-- 
**[alerter](https://github.com/apache/hertzbeat/tree/master/hertzbeat-alerter)**
 Provide alert service.
-> Alarm calculation trigger, monitoring status linkage, alarm configuration, 
and alarm notification.
-- **[web-app](https://github.com/apache/hertzbeat/tree/master/web-app)** 
Provide web ui.
-> Angular Web UI.
-
 ![hertzBeat](home/static/img/docs/hertzbeat-arch.png)
 
 <br>  
@@ -179,19 +168,19 @@ Add WeChat account `ahertzbeat` to pull you into the 
WeChat group.
 ### 让 HertzBeat 运行起来   
 
 > 让 HertzBeat 的代码在您的开发工具上运行起来,并且能够断点调试。   
-> 此为前后端分离项目,本地代码启动需将后端[manager](manager)和前端[web-app](web-app)分别启动生效。
+> 
此为前后端分离项目,本地代码启动需将后端[hertzbeat-startup](hertzbeat-startup)和前端[web-app](web-app)分别启动生效。
 
 #### 后端启动
 
 1. 需要 `maven3+`, `java17` 和 `lombok` 环境
 
-2. (可选)修改配置文件配置信息-`manager/src/main/resources/application.yml`
+2. (可选)修改配置文件配置信息-`hertzbeat-startup/src/main/resources/application.yml`
 
 3. 在项目根目录运行编译: `mvn clean install -DskipTests`
 
 4. 在 `jvm` 加入参数 
`--add-opens=java.base/java.nio=org.apache.arrow.memory.core,ALL-UNNAMED`
 
-5. 启动`springboot manager`服务 
`manager/src/main/java/org/apache/hertzbeat/hertzbeat-manager/Manager.java`
+5. 启动`springboot startup`服务 
`hertzbeat-startup/src/main/java/org/apache/hertzbeat/startup/HertzBeatApplication.java`
 
 
 #### 前端启动
@@ -282,15 +271,4 @@ Add WeChat account `ahertzbeat` to pull you into the 
WeChat group.
 
 ### 模块
 
-- 
**[manager](https://github.com/apache/hertzbeat/tree/master/hertzbeat-manager)**
 提供监控管理,系统管理基础服务
-> 提供对监控的管理,监控应用配置的管理,系统用户租户后台管理等。
-- **[collector](https://github.com/apache/hertzbeat/tree/master/collector)** 
提供监控数据采集服务
-> 使用通用协议远程采集获取对端指标数据。
-- **[warehouse](https://github.com/apache/hertzbeat/tree/master/warehouse)** 
提供监控数据仓储服务
-> 采集指标结果数据管理,数据落盘,查询,计算统计。
-- 
**[alerter](https://github.com/apache/hertzbeat/tree/master/hertzbeat-alerter)**
 提供告警服务
-> 告警计算触发,任务状态联动,告警配置,告警通知。
-- **[web-app](https://github.com/apache/hertzbeat/tree/master/web-app)** 
提供可视化控制台页面
-> 监控告警系统可视化控制台前端
-
 ![hertzBeat](home/static/img/docs/hertzbeat-arch.png)     
diff --git a/README.md b/README.md
index e5f192440f..1030e3d6b1 100644
--- a/README.md
+++ b/README.md
@@ -155,8 +155,8 @@ Detailed config refer to [Install HertzBeat via 
Package](https://hertzbeat.apach
 
 ##### 3:Start via source code        
 
-1. Local source code debugging needs to start the back-end project `manager` 
and the front-end project `web-app`.  
-2. Backend:need `maven3+`, `java17`, `lombok`, add VM options in IDE: ` 
--add-opens=java.base/java.nio=org.apache.arrow.memory.core,ALL-UNNAMED `, then 
start the `manager` service. 
+1. Local source code debugging needs to start the back-end project 
`hertzbeat-startup` and the front-end project `web-app`.  
+2. Backend:need `maven3+`, `java17`, `lombok`, add VM options in IDE: ` 
--add-opens=java.base/java.nio=org.apache.arrow.memory.core,ALL-UNNAMED `, then 
start the `hertzbeat-startup` service. 
 3. Web:need `nodejs npm angular-cli` environment, Run `ng serve --open` in 
`web-app` directory after backend startup.  
 4. Access `http://localhost:4200` to start, default account: `admin/hertzbeat` 
 
 
diff --git a/README_CN.md b/README_CN.md
index cde2aed6d1..b91eb8c01d 100644
--- a/README_CN.md
+++ b/README_CN.md
@@ -152,8 +152,8 @@
 
 ##### 方式三:本地代码启动
 
-1. 此为前后端分离项目,本地代码调试需要分别启动后端工程 `manager` 和前端工程 `web-app`
-2. 后端:需要 `maven3+`, `java17` 和 `lombok` 环境,修改 `YML` 
配置信息,添加JVM参数`--add-opens=java.base/java.nio=org.apache.arrow.memory.core,ALL-UNNAMED`后启动
 `manager` 服务即可。
+1. 此为前后端分离项目,本地代码调试需要分别启动后端工程 `hertzbeat-startup` 和前端工程 `web-app`
+2. 后端:需要 `maven3+`, `java17` 和 `lombok` 环境,修改 `YML` 
配置信息,添加JVM参数`--add-opens=java.base/java.nio=org.apache.arrow.memory.core,ALL-UNNAMED`后启动
 `hertzbeat-startup` 服务即可。
 3. 前端:需要 `nodejs npm angular-cli`环境,待本地后端启动后,在 `web-app` 目录下启动 `ng serve 
--open`
 4. 浏览器访问 `http://localhost:4200` 即可开始,默认账号密码 `admin/hertzbeat`
 
diff --git a/README_JP.md b/README_JP.md
index 324ccc85e1..152d7abb1e 100644
--- a/README_JP.md
+++ b/README_JP.md
@@ -155,8 +155,8 @@
 
 ##### 方式3:ローカルの実行
 
-1. ローカルの実行には、バックエンドのプロジェクト`manager`とフロントエンドのプロジェクト`web-app`を起動する必要があります。
-2. バックエンド:`maven3+`、`java17`と`lombok`の環境は必要です。`YML` 
設定を修正し、Java仮想マシンパラメータに`--add-opens=java.base/java.nio=org.apache.arrow.memory.core,ALL-UNNAMED`
 を追加し、`manager` を起動します。
+1. 
ローカルの実行には、バックエンドのプロジェクト`hertzbeat-startup`とフロントエンドのプロジェクト`web-app`を起動する必要があります。
+2. バックエンド:`maven3+`、`java17`と`lombok`の環境は必要です。`YML` 
設定を修正し、Java仮想マシンパラメータに`--add-opens=java.base/java.nio=org.apache.arrow.memory.core,ALL-UNNAMED`
 を追加し、`hertzbeat-startup` を起動します。
 3. フロントエンド:`nodejs npm angular-cli`の環境は必要です。ローカルのバックエンドが立ち上がったら、`web-app` 
ディレクトリで `ng serve --open` というコマンドを実行します。
 4. スタート:`http://localhost:4200`にアクセスします。デフォルトのアカウントとパスワード:`admin/hertzbeat`。
 
diff --git a/hertzbeat-startup/README.md b/hertzbeat-startup/README.md
deleted file mode 100644
index 7d6a59f1e1..0000000000
--- a/hertzbeat-startup/README.md
+++ /dev/null
@@ -1,135 +0,0 @@
-# HertzBeat Startup Module
-
-## 概述
-
-`hertzbeat-startup` 模块是为了实现 HertzBeat 项目的模块化重构而创建的启动模块。该模块专门负责应用的启动和初始化任务,将原本由 
`hertzbeat-manager` 模块承担的启动职责分离出来,实现更好的关注点分离。
-
-## 模块职责
-
-该启动模块主要负责以下启动任务:
-
-1. **主应用启动** - 通过 `HertzBeatApplication` 类作为主入口点
-2. **系统配置初始化** - 通过 `SystemConfigInitializer` 初始化系统配置、JWT密钥、AES密钥等
-3. **调度系统初始化** - 通过 `SchedulerSystemInitializer` 初始化收集器状态和监控任务
-4. **Netty服务器启动** - 通过 `NettyServerInitializer` 启动集群通信服务器
-
-## 架构设计
-
-### 原有架构问题
-- `manager` 模块既负责业务逻辑又负责启动,职责不够清晰
-- 启动代码散布在多个文件中,不利于维护
-
-### 重构后的架构
-```
-hertzbeat-startup/
-├── src/main/java/org/apache/hertzbeat/startup/
-│   ├── HertzBeatApplication.java          # 主启动类
-│   ├── config/
-│   │   └── SystemConfigInitializer.java   # 系统配置初始化
-│   └── scheduler/
-│       ├── SchedulerSystemInitializer.java  # 调度系统初始化
-│       └── NettyServerInitializer.java     # Netty服务器初始化
-└── pom.xml
-```
-
-## 使用方式
-
-### 主入口点
-```java
-// 原来的启动方式
-public static void main(String[] args) {
-    SpringApplication.run(Manager.class, args);
-}
-
-// 现在的启动方式
-public static void main(String[] args) {
-    SpringApplication.run(HertzBeatApplication.class, args);
-}
-```
-
-### 启动顺序
-1. `HertzBeatApplication` 作为主启动类启动Spring Boot应用
-2. `SystemConfigInitializer` (最高优先级 +2) 初始化系统配置
-3. `SchedulerSystemInitializer` (最低优先级 -1) 初始化调度系统
-4. `NettyServerInitializer` (最低优先级) 启动Netty服务器
-
-## 迁移说明
-
-### 从 Manager 模块迁移的组件
-1. **启动主类** - `Manager.java` → `HertzBeatApplication.java`
-2. **配置初始化** - `ConfigInitializer.java` → `SystemConfigInitializer.java`
-3. **调度初始化** - `SchedulerInit.java` → `SchedulerSystemInitializer.java`
-4. **Netty服务器** - `ManageServer.java` → `NettyServerInitializer.java`
-
-### Manager 模块的变化
-- 移除了所有启动相关的代码
-- 保留 `Manager.java` 作为 Spring Boot 配置类
-- 专注于业务逻辑处理
-
-## 资源文件迁移
-
-### 迁移到 startup 模块的资源
-- **应用配置文件** - `application*.yml`(包含dev、test、mysql、pg等配置)
-- **数据库迁移脚本** - `db/migration/`(支持H2、MySQL、PostgreSQL)
-- **启动横幅** - `banner.txt`
-- **安全配置** - `sureness.yml`
-
-### 保留在 manager 模块的资源
-- **监控应用定义** - `define/app-*.yml`(各种监控应用的定义文件)
-- **告警模板** - `templates/`(告警通知模板文件)
-
-## 依赖关系
-
-### 当前依赖
-- `spring-boot-starter` - Spring Boot核心
-- `spring-boot-starter-web` - Web应用支持
-- `spring-boot-starter-data-jpa` - 数据持久化
-- `flyway-core` - 数据库迁移核心
-- `flyway-mysql` - MySQL数据库迁移支持
-- `flyway-database-postgresql` - PostgreSQL数据库迁移支持
-- `h2database` - H2数据库(默认)
-- `hertzbeat-common` - 通用组件
-- `hertzbeat-base` - 基础组件
-- `hertzbeat-warehouse` - 数据仓库
-- `hertzbeat-alerter` - 告警模块
-- `hertzbeat-remoting` - 远程通信
-- `hertzbeat-manager` - 管理模块(业务逻辑)
-
-### 注意事项
-由于启动模块需要访问管理模块的服务和配置,存在对 `hertzbeat-manager` 的依赖。在实际部署时,需要确保依赖的正确性。
-
-## 配置属性
-
-### 系统配置相关
-- `sureness.jwt.secret` - JWT密钥配置
-- `common.secret` - AES密钥配置
-
-### 调度器相关
-- `scheduler.server.enabled` - 是否启用Netty服务器
-- `scheduler.server.port` - Netty服务器端口
-- `scheduler.server.idleStateEventTriggerTime` - 空闲状态触发时间
-
-## 优势
-
-1. **职责分离** - 启动逻辑与业务逻辑分离,模块职责更加清晰
-2. **易于维护** - 所有启动相关代码集中在一个模块中
-3. **可扩展性** - 新的启动功能可以轻松添加到启动模块
-4. **向后兼容** - 保持了原有的配置和功能不变
-
-## 注意事项
-
-1. **依赖管理** - 需要正确处理启动模块与业务模块之间的依赖关系
-2. **启动顺序** - 确保各个初始化组件按照正确的顺序执行
-3. **配置传递** - 启动模块需要能够访问业务模块的配置和服务
-4. **测试验证** - 重构后需要充分测试启动流程的正确性
-
-## 总结
-
-通过创建 `hertzbeat-startup` 模块,我们成功地将启动职责从业务模块中分离出来,实现了更清晰的模块划分。这种设计使得:
-
-- 启动逻辑更加集中和易于维护
-- 业务模块可以专注于业务逻辑
-- 整体架构更加模块化和可扩展
-- 保持了原有功能的完整性和稳定性
-
-这是一个典型的关注点分离重构实践,提高了代码的可维护性和可扩展性。
\ No newline at end of file
diff --git a/home/docs/community/contribution.md 
b/home/docs/community/contribution.md
index 4600ef1098..2db63265a6 100644
--- a/home/docs/community/contribution.md
+++ b/home/docs/community/contribution.md
@@ -53,10 +53,10 @@ Even small corrections to typos are very welcome :)
 #### Backend start
 
 1. Requires `maven3+`, `java17` and `lombok` environments
-2. (Optional) Modify the configuration file: 
`manager/src/main/resources/application.yml`
+2. (Optional) Modify the configuration file: 
`hertzbeat-startup/src/main/resources/application.yml`
 3. Execute under the project root directory: `mvn clean install -DskipTests`
 4. Add VM Options: 
`--add-opens=java.base/java.nio=org.apache.arrow.memory.core,ALL-UNNAMED`
-5. Start `springboot manager` service: 
`manager/src/main/java/org/apache/hertzbeat/hertzbeat-manager/Manager.java`
+5. Start `springboot startup` service: 
`hertzbeat-startup/src/main/java/org/apache/hertzbeat/startup/HertzBeatApplication.java`
 
 #### Frontend start
 
diff --git a/home/docs/community/development.md 
b/home/docs/community/development.md
index d10c7cbd12..d8764e7e1d 100644
--- a/home/docs/community/development.md
+++ b/home/docs/community/development.md
@@ -13,10 +13,10 @@ sidebar_label: Development
 ### Backend start
 
 1. Requires `maven3+`, `java17` and `lombok` environments
-2. (Optional) Modify the configuration file: 
`manager/src/main/resources/application.yml`
+2. (Optional) Modify the configuration file: 
`hertzbeat-startup/src/main/resources/application.yml`
 3. Execute under the project root directory: `mvn clean install -DskipTests`
 4. Add VM Options: 
`--add-opens=java.base/java.nio=org.apache.arrow.memory.core,ALL-UNNAMED`
-5. Start `springboot manager` service: 
`manager/src/main/java/org/apache/hertzbeat/hertzbeat-manager/Manager.java`
+5. Start `springboot startup` service: 
`hertzbeat-startup/src/main/java/org/apache/hertzbeat/startup/HertzBeatApplication.java`
 
 ### Frontend start
 
diff --git a/home/docs/start/mysql-change.md b/home/docs/start/mysql-change.md
index 48caef0d3b..ce90b344a5 100644
--- a/home/docs/start/mysql-change.md
+++ b/home/docs/start/mysql-change.md
@@ -108,6 +108,6 @@ spring:
 
 - It is recommended to set the host field in the MySQL URL to the public IP 
address when using Hertzbeat in docker.
 
-> Note: The above applies to the method of downloading and installing the 
package. For local data source switching, simply complete the [Database 
creation](./mysql-change#database-creation) and modify the configuration in 
`hertzbeat-manager/src/main/resources/application.yml`.
+> Note: The above applies to the method of downloading and installing the 
package. For local data source switching, simply complete the [Database 
creation](./mysql-change#database-creation) and modify the configuration in 
`hertzbeat-startup/src/main/resources/application.yml`.
 
 **Start HertzBeat  visit <http://ip:1157/> on the browser  You can use 
HertzBeat monitoring alarm, default account and password are admin/hertzbeat**
diff --git a/home/docs/start/postgresql-change.md 
b/home/docs/start/postgresql-change.md
index fd675b20c0..c34afbf8c7 100644
--- a/home/docs/start/postgresql-change.md
+++ b/home/docs/start/postgresql-change.md
@@ -96,6 +96,6 @@ spring:
           level: SEVERE
 ```
 
-> Note: The above applies to the method of downloading and installing the 
package. For local data source switching, simply complete the [Database 
creation](./postgresql-change#database-creation) and modify the configuration 
in `hertzbeat-manager/src/main/resources/application.yml`.
+> Note: The above applies to the method of downloading and installing the 
package. For local data source switching, simply complete the [Database 
creation](./postgresql-change#database-creation) and modify the configuration 
in `hertzbeat-startup/src/main/resources/application.yml`.
 
 **Start HertzBeat  visit <http://ip:1157/> on the browser  You can use 
HertzBeat monitoring alarm, default account and password are admin/hertzbeat**
diff --git a/home/docs/start/quickstart.md b/home/docs/start/quickstart.md
index 15956e5fe4..47d7cb94ce 100644
--- a/home/docs/start/quickstart.md
+++ b/home/docs/start/quickstart.md
@@ -63,7 +63,7 @@ Detailed config refer to [Install HertzBeat via 
Package](package-deploy)
 ##### 3:Start via source code
 
 1. Local source code debugging needs to start the back-end project `manager` 
and the front-end project `web-app`.
-2. Backend:need `maven3+`, `java17`, `lombok`, start the `manager` service.
+2. Backend:need `maven3+`, `java17`, `lombok`, start the `hertzbeat-startup` 
service.
 3. Web:need `nodejs npm angular-cli` environment, Run `ng serve --open` in 
`web-app` directory after backend startup.
 4. Access `http://localhost:4200` to start, default account: `admin/hertzbeat`
 
diff --git 
a/home/i18n/zh-cn/docusaurus-plugin-content-docs/current/community/contribution.md
 
b/home/i18n/zh-cn/docusaurus-plugin-content-docs/current/community/contribution.md
index 9b412a9993..748af5705f 100644
--- 
a/home/i18n/zh-cn/docusaurus-plugin-content-docs/current/community/contribution.md
+++ 
b/home/i18n/zh-cn/docusaurus-plugin-content-docs/current/community/contribution.md
@@ -54,13 +54,13 @@ limitations under the License.
 
 1. 需要 `maven3+`, `java17` 和 `lombok` 环境
 
-2. (可选)修改配置文件配置信息-`manager/src/main/resources/application.yml`
+2. (可选)修改配置文件配置信息-`hertzbeat-startup/src/main/resources/application.yml`
 
 3. 在项目根目录运行编译: `mvn clean install -DskipTests`
 
 4. 在 `jvm` 加入参数 
`--add-opens=java.base/java.nio=org.apache.arrow.memory.core,ALL-UNNAMED`
 
-5. 启动`springboot manager`服务 
`manager/src/main/java/org/apache/hertzbeat/hertzbeat-manager/Manager.java`
+5. 启动`springboot startup`服务 
`hertzbeat-startup/src/main/java/org/apache/hertzbeat/startup/HertzBeatApplication.java`
 
 #### 前端启动
 
diff --git 
a/home/i18n/zh-cn/docusaurus-plugin-content-docs/current/community/development.md
 
b/home/i18n/zh-cn/docusaurus-plugin-content-docs/current/community/development.md
index 8254f24fb3..30a1c479cc 100644
--- 
a/home/i18n/zh-cn/docusaurus-plugin-content-docs/current/community/development.md
+++ 
b/home/i18n/zh-cn/docusaurus-plugin-content-docs/current/community/development.md
@@ -13,13 +13,13 @@ sidebar_label: 运行编译
 
 1. 需要 `maven3+`, `java17` 和 `lombok` 环境
 
-2. (可选)修改配置文件配置信息-`manager/src/main/resources/application.yml`
+2. (可选)修改配置文件配置信息-`hertzbeat-startup/src/main/resources/application.yml`
 
 3. 在项目根目录运行编译: `mvn clean install -DskipTests`
 
 4. 在 `jvm` 加入参数 
`--add-opens=java.base/java.nio=org.apache.arrow.memory.core,ALL-UNNAMED`
 
-5. 启动`springboot manager`服务 
`manager/src/main/java/org/apache/hertzbeat/hertzbeat-manager/Manager.java`
+5. 启动`springboot startup`服务 
`hertzbeat-startup/src/main/java/org/apache/hertzbeat/startup/HertzBeatApplication.java`
 
 ### 前端启动
 
diff --git 
a/home/i18n/zh-cn/docusaurus-plugin-content-docs/current/start/mysql-change.md 
b/home/i18n/zh-cn/docusaurus-plugin-content-docs/current/start/mysql-change.md
index 8a230b9420..388998066c 100644
--- 
a/home/i18n/zh-cn/docusaurus-plugin-content-docs/current/start/mysql-change.md
+++ 
b/home/i18n/zh-cn/docusaurus-plugin-content-docs/current/start/mysql-change.md
@@ -111,6 +111,6 @@ spring:
 
 - 通过docker启动时,建议修改host为宿主机的外网IP地址,包括mysql连接字符串。
 
-> 
注意:上述是针对下载安装包的方式,对于本地切换数据源,只需完成[数据库创建](./mysql-change#数据库创建)以及修改`hertzbeat-manager/src/main/resources/application.yml`中的配置即可。
+> 
注意:上述是针对下载安装包的方式,对于本地切换数据源,只需完成[数据库创建](./mysql-change#数据库创建)以及修改`hertzbeat-startup/src/main/resources/application.yml`中的配置即可。
 
 **启动 HertzBeat 浏览器访问 <http://ip:1157/> 开始使用HertzBeat进行监控告警,默认账户密码 
admin/hertzbeat**
diff --git 
a/home/i18n/zh-cn/docusaurus-plugin-content-docs/current/start/postgresql-change.md
 
b/home/i18n/zh-cn/docusaurus-plugin-content-docs/current/start/postgresql-change.md
index 7885b330c2..54afbb00e8 100644
--- 
a/home/i18n/zh-cn/docusaurus-plugin-content-docs/current/start/postgresql-change.md
+++ 
b/home/i18n/zh-cn/docusaurus-plugin-content-docs/current/start/postgresql-change.md
@@ -98,6 +98,6 @@ spring:
           level: SEVERE
 ```
 
-> 
注意:上述是针对下载安装包的方式,对于本地切换数据源,只需完成[数据库创建](./postgresql-change#数据库创建)以及修改`hertzbeat-manager/src/main/resources/application.yml`中的配置即可。
+> 
注意:上述是针对下载安装包的方式,对于本地切换数据源,只需完成[数据库创建](./postgresql-change#数据库创建)以及修改`hertzbeat-startup/src/main/resources/application.yml`中的配置即可。
 
 **启动 HertzBeat 浏览器访问 <http://ip:1157/> 开始使用HertzBeat进行监控告警,默认账户密码 
admin/hertzbeat**
diff --git 
a/home/i18n/zh-cn/docusaurus-plugin-content-docs/current/start/quickstart.md 
b/home/i18n/zh-cn/docusaurus-plugin-content-docs/current/start/quickstart.md
index 37a5e4aa60..26232a5180 100644
--- a/home/i18n/zh-cn/docusaurus-plugin-content-docs/current/start/quickstart.md
+++ b/home/i18n/zh-cn/docusaurus-plugin-content-docs/current/start/quickstart.md
@@ -66,8 +66,8 @@ sidebar_label: 快速开始
 
 #### 方式三:本地代码启动
 
-1. 此为前后端分离项目,本地代码调试需要分别启动后端工程`manager`和前端工程`web-app`
-2. 后端:需要`maven3+`, `java17`和`lombok`环境,修改`YML`配置信息并启动`manager`服务
+1. 此为前后端分离项目,本地代码调试需要分别启动后端工程`hertzbeat-startup`和前端工程`web-app`
+2. 后端:需要`maven3+`, `java17`和`lombok`环境,修改`YML`配置信息并启动`hertzbeat-startup`服务
 3. 前端:需要`nodejs npm angular-cli`环境,待本地后端启动后,在`web-app`目录下启动 `ng serve --open`
 4. 浏览器访问 `http://localhost:4200` 即可开始,默认账号密码 `admin/hertzbeat`
 
diff --git 
a/home/i18n/zh-cn/docusaurus-plugin-content-docs/version-v1.6.x/community/contribution.md
 
b/home/i18n/zh-cn/docusaurus-plugin-content-docs/version-v1.6.x/community/contribution.md
index b3dacbc7a9..2f1c68f61d 100644
--- 
a/home/i18n/zh-cn/docusaurus-plugin-content-docs/version-v1.6.x/community/contribution.md
+++ 
b/home/i18n/zh-cn/docusaurus-plugin-content-docs/version-v1.6.x/community/contribution.md
@@ -54,13 +54,13 @@ limitations under the License.
 
 1. 需要 `maven3+`, `java17` 和 `lombok` 环境
 
-2. (可选)修改配置文件配置信息-`manager/src/main/resources/application.yml`
+2. (可选)修改配置文件配置信息-`hertzbeat-startup/src/main/resources/application.yml`
 
 3. 在项目根目录运行编译: `mvn clean install -DskipTests`
 
 4. 在 `jvm` 加入参数 
`--add-opens=java.base/java.nio=org.apache.arrow.memory.core,ALL-UNNAMED`
 
-5. 启动`springboot manager`服务 
`manager/src/main/java/org/apache/hertzbeat/hertzbeat-manager/Manager.java`
+5. 启动`springboot startup`服务 
`hertzbeat-startup/src/main/java/org/apache/hertzbeat/startup/HertzBeatApplication.java`
 
 #### 前端启动
 
diff --git 
a/home/i18n/zh-cn/docusaurus-plugin-content-docs/version-v1.6.x/community/development.md
 
b/home/i18n/zh-cn/docusaurus-plugin-content-docs/version-v1.6.x/community/development.md
index e707191ec5..c2451370b8 100644
--- 
a/home/i18n/zh-cn/docusaurus-plugin-content-docs/version-v1.6.x/community/development.md
+++ 
b/home/i18n/zh-cn/docusaurus-plugin-content-docs/version-v1.6.x/community/development.md
@@ -13,13 +13,13 @@ sidebar_label: 运行编译
 
 1. 需要 `maven3+`, `java17` 和 `lombok` 环境
 
-2. (可选)修改配置文件配置信息-`manager/src/main/resources/application.yml`
+2. (可选)修改配置文件配置信息-`hertzbeat-startup/src/main/resources/application.yml`
 
 3. 在项目根目录运行编译: `mvn clean install -DskipTests`
 
 4. 在 `jvm` 加入参数 
`--add-opens=java.base/java.nio=org.apache.arrow.memory.core,ALL-UNNAMED`
 
-5. 启动`springboot manager`服务 
`manager/src/main/java/org/apache/hertzbeat/hertzbeat-manager/Manager.java`
+5. 启动`springboot startup`服务 
`hertzbeat-startup/src/main/java/org/apache/hertzbeat/startup/HertzBeatApplication.java`
 
 ### 前端启动
 
diff --git 
a/home/i18n/zh-cn/docusaurus-plugin-content-docs/version-v1.6.x/start/mysql-change.md
 
b/home/i18n/zh-cn/docusaurus-plugin-content-docs/version-v1.6.x/start/mysql-change.md
index f1f11f4129..42fb45f75c 100644
--- 
a/home/i18n/zh-cn/docusaurus-plugin-content-docs/version-v1.6.x/start/mysql-change.md
+++ 
b/home/i18n/zh-cn/docusaurus-plugin-content-docs/version-v1.6.x/start/mysql-change.md
@@ -111,6 +111,6 @@ spring:
 
 - 通过docker启动时,建议修改host为宿主机的外网IP地址,包括mysql连接字符串。
 
-> 
注意:上述是针对下载安装包的方式,对于本地切换数据源,只需完成[数据库创建](./mysql-change#数据库创建)以及修改`hertzbeat-manager/src/main/resources/application.yml`中的配置即可。
+> 
注意:上述是针对下载安装包的方式,对于本地切换数据源,只需完成[数据库创建](./mysql-change#数据库创建)以及修改`hertzbeat-startup/src/main/resources/application.yml`中的配置即可。
 
 **启动 HertzBeat 浏览器访问 <http://ip:1157/> 开始使用HertzBeat进行监控告警,默认账户密码 
admin/hertzbeat**
diff --git 
a/home/i18n/zh-cn/docusaurus-plugin-content-docs/version-v1.6.x/start/postgresql-change.md
 
b/home/i18n/zh-cn/docusaurus-plugin-content-docs/version-v1.6.x/start/postgresql-change.md
index f2a858288a..20b48dc1b7 100644
--- 
a/home/i18n/zh-cn/docusaurus-plugin-content-docs/version-v1.6.x/start/postgresql-change.md
+++ 
b/home/i18n/zh-cn/docusaurus-plugin-content-docs/version-v1.6.x/start/postgresql-change.md
@@ -98,6 +98,6 @@ spring:
           level: SEVERE
 ```
 
-> 
注意:上述是针对下载安装包的方式,对于本地切换数据源,只需完成[数据库创建](./postgresql-change#数据库创建)以及修改`hertzbeat-manager/src/main/resources/application.yml`中的配置即可。
+> 
注意:上述是针对下载安装包的方式,对于本地切换数据源,只需完成[数据库创建](./postgresql-change#数据库创建)以及修改`hertzbeat-startup/src/main/resources/application.yml`中的配置即可。
 
 **启动 HertzBeat 浏览器访问 <http://ip:1157/> 开始使用HertzBeat进行监控告警,默认账户密码 
admin/hertzbeat**
diff --git 
a/home/i18n/zh-cn/docusaurus-plugin-content-docs/version-v1.6.x/start/quickstart.md
 
b/home/i18n/zh-cn/docusaurus-plugin-content-docs/version-v1.6.x/start/quickstart.md
index 66dd0a3d46..9606153215 100644
--- 
a/home/i18n/zh-cn/docusaurus-plugin-content-docs/version-v1.6.x/start/quickstart.md
+++ 
b/home/i18n/zh-cn/docusaurus-plugin-content-docs/version-v1.6.x/start/quickstart.md
@@ -66,7 +66,7 @@ sidebar_label: 快速开始
 
 #### 方式三:本地代码启动
 
-1. 此为前后端分离项目,本地代码调试需要分别启动后端工程`manager`和前端工程`web-app`
+1. 此为前后端分离项目,本地代码调试需要分别启动后端工程`hertzbeat-startup`和前端工程`web-app`
 2. 后端:需要`maven3+`, `java17`和`lombok`环境,修改`YML`配置信息并启动`manager`服务
 3. 前端:需要`nodejs npm angular-cli`环境,待本地后端启动后,在`web-app`目录下启动 `ng serve --open`
 4. 浏览器访问 `http://localhost:4200` 即可开始,默认账号密码 `admin/hertzbeat`
diff --git a/home/versioned_docs/version-v1.6.x/community/contribution.md 
b/home/versioned_docs/version-v1.6.x/community/contribution.md
index 9981729722..ab7dc14335 100644
--- a/home/versioned_docs/version-v1.6.x/community/contribution.md
+++ b/home/versioned_docs/version-v1.6.x/community/contribution.md
@@ -53,10 +53,10 @@ Even small corrections to typos are very welcome :)
 #### Backend start
 
 1. Requires `maven3+`, `java17` and `lombok` environments
-2. (Optional) Modify the configuration file: 
`manager/src/main/resources/application.yml`
+2. (Optional) Modify the configuration file: 
`hertzbeat-startup/src/main/resources/application.yml`
 3. Execute under the project root directory: `mvn clean install -DskipTests`
 4. Add VM Options: 
`--add-opens=java.base/java.nio=org.apache.arrow.memory.core,ALL-UNNAMED`
-5. Start `springboot manager` service: 
`manager/src/main/java/org/apache/hertzbeat/hertzbeat-manager/Manager.java`
+5. Start `springboot startup` service: 
`hertzbeat-startup/src/main/java/org/apache/hertzbeat/startup/HertzBeatApplication.java`
 
 #### Frontend start
 
diff --git a/home/versioned_docs/version-v1.6.x/community/development.md 
b/home/versioned_docs/version-v1.6.x/community/development.md
index 9031204fc5..e5ff4fc80a 100644
--- a/home/versioned_docs/version-v1.6.x/community/development.md
+++ b/home/versioned_docs/version-v1.6.x/community/development.md
@@ -13,10 +13,10 @@ sidebar_label: Development
 ### Backend start
 
 1. Requires `maven3+`, `java17` and `lombok` environments
-2. (Optional) Modify the configuration file: 
`manager/src/main/resources/application.yml`
+2. (Optional) Modify the configuration file: 
`hertzbeat-startup/src/main/resources/application.yml`
 3. Execute under the project root directory: `mvn clean install -DskipTests`
 4. Add VM Options: 
`--add-opens=java.base/java.nio=org.apache.arrow.memory.core,ALL-UNNAMED`
-5. Start `springboot manager` service: 
`manager/src/main/java/org/apache/hertzbeat/hertzbeat-manager/Manager.java`
+5. Start `springboot startup` service: 
`hertzbeat-startup/src/main/java/org/apache/hertzbeat/startup/HertzBeatApplication.java`
 
 ### Frontend start
 
diff --git a/home/versioned_docs/version-v1.6.x/start/mysql-change.md 
b/home/versioned_docs/version-v1.6.x/start/mysql-change.md
index 353fcdeb54..bf147bb26a 100644
--- a/home/versioned_docs/version-v1.6.x/start/mysql-change.md
+++ b/home/versioned_docs/version-v1.6.x/start/mysql-change.md
@@ -108,6 +108,6 @@ spring:
 
 - It is recommended to set the host field in the MySQL URL to the public IP 
address when using Hertzbeat in docker.
 
-> Note: The above applies to the method of downloading and installing the 
package. For local data source switching, simply complete the [Database 
creation](./mysql-change#database-creation) and modify the configuration in 
`hertzbeat-manager/src/main/resources/application.yml`.
+> Note: The above applies to the method of downloading and installing the 
package. For local data source switching, simply complete the [Database 
creation](./mysql-change#database-creation) and modify the configuration in 
`hertzbeat-startup/src/main/resources/application.yml`.
 
 **Start HertzBeat  visit <http://ip:1157/> on the browser  You can use 
HertzBeat monitoring alarm, default account and password are admin/hertzbeat**
diff --git a/home/versioned_docs/version-v1.6.x/start/postgresql-change.md 
b/home/versioned_docs/version-v1.6.x/start/postgresql-change.md
index 4083711eb6..1e7039d2d6 100644
--- a/home/versioned_docs/version-v1.6.x/start/postgresql-change.md
+++ b/home/versioned_docs/version-v1.6.x/start/postgresql-change.md
@@ -96,6 +96,6 @@ spring:
           level: SEVERE
 ```
 
-> Note: The above applies to the method of downloading and installing the 
package. For local data source switching, simply complete the [Database 
creation](./postgresql-change#database-creation) and modify the configuration 
in `hertzbeat-manager/src/main/resources/application.yml`.
+> Note: The above applies to the method of downloading and installing the 
package. For local data source switching, simply complete the [Database 
creation](./postgresql-change#database-creation) and modify the configuration 
in `hertzbeat-startup/src/main/resources/application.yml`.
 
 **Start HertzBeat  visit <http://ip:1157/> on the browser  You can use 
HertzBeat monitoring alarm, default account and password are admin/hertzbeat**


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]


Reply via email to