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

peacewong pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-linkis-website.git


The following commit(s) were added to refs/heads/dev by this push:
     new ab881cc  update 1.0.3 deployment docs
     new 30f9c21  Merge pull request #83 from casionone/dev
ab881cc is described below

commit ab881ccdb1a36715e754e5415a0f300d5471266a
Author: casionone <[email protected]>
AuthorDate: Thu Dec 30 21:57:41 2021 +0800

    update 1.0.3 deployment docs
---
 docs/deployment/quick_deploy.md                    | 19 +++++++++++-
 docs/development/linkis_compile_and_package.md     | 35 +++++++++++++++-------
 docs/introduction.md                               | 24 +++++++--------
 .../deployment/engine_conn_plugin_installation.md  |  2 +-
 .../current/deployment/quick_deploy.md             | 23 ++++++++++++--
 .../development/linkis_compile_and_package.md      | 34 +++++++++++++++------
 .../current/introduction.md                        |  2 +-
 .../deployment/engine_conn_plugin_installation.md  |  2 +-
 i18n/zh-CN/docusaurus-theme-classic/footer.json    |  4 +--
 src/pages/team/config.json                         |  2 +-
 10 files changed, 107 insertions(+), 40 deletions(-)

diff --git a/docs/deployment/quick_deploy.md b/docs/deployment/quick_deploy.md
index a03ea52..5d84e7d 100644
--- a/docs/deployment/quick_deploy.md
+++ b/docs/deployment/quick_deploy.md
@@ -4,6 +4,9 @@ sidebar_position: 1
 ---
 
 ## Notes
+<font color="red">
+Because the mysql-connector-java driver is under the GPL2.0 agreement and does 
not meet the license policy of the Apache open source agreement, starting from 
version 1.0.3, the official deployment package of the Apache version is 
provided. The default is no mysql-connector-java-x.x.x.jar dependency package. 
You need to add dependencies to the corresponding lib package during 
installation and deployment.
+</font>
 
 If you are new to Linkis, you can ignore this chapter, however, if you are 
already a Linkis user,  we recommend you reading the following article before 
installing or upgrading: [Brief introduction of the difference between 
Linkis1.0 and Linkis0.X](architecture/difference_between_1.0_and_0.x.md).
 
@@ -224,7 +227,21 @@ You can check whether the installation is successful or 
not by viewing the logs
 
 If there is an error message, check the specific reason for that error or 
refer to FAQ for help.
 
-### 4. Linkis quick startup
+### <font color="red"> 4. Add mysql driver package</font>
+
+:::caution Note
+Because the mysql-connector-java driver is under the GPL2.0 agreement and does 
not meet the license policy of the Apache open source agreement, starting from 
version 1.0.3, the official deployment package of the Apache version is 
provided. The default is no mysql-connector-java-x.x.x.jar dependency package, 
you need to add dependencies to the corresponding lib package during 
installation and deployment
+:::
+
+To download the mysql driver, take version 5.1.49 as an example: [download 
link](https://repo1.maven.org/maven2/mysql/mysql-connector-java/5.1.49/mysql-connector-java-5.1.49.jar)
 
https://repo1.maven.org/maven2/mysql/mysql-connector-java/5.1.49/mysql-connector-java-5.1.49.jar
+
+Copy the mysql driver package to the lib package path
+```
+cp mysql-connector-java-5.1.49.jar 
{LINKIS_INSTALL_HOME}/lib/linkis-spring-cloud-services/linkis-mg-gateway/
+cp mysql-connector-java-5.1.49.jar 
{LINKIS_INSTALL_HOME}/lib/linkis-commons/public-module/
+```
+
+### 5. Linkis quick startup
 
 (1). Start services
 
diff --git a/docs/development/linkis_compile_and_package.md 
b/docs/development/linkis_compile_and_package.md
index 20e86fc..eba2b10 100644
--- a/docs/development/linkis_compile_and_package.md
+++ b/docs/development/linkis_compile_and_package.md
@@ -3,13 +3,12 @@ title: Compile And Package
 sidebar_position: 1
 ---
 
-## 1. Fully compile Linkis
-
+## 1. Preparation
 **Environment requirements:** Version of JDK must be higher then **JDK8**,  
**Oracle/Sun** and **OpenJDK** are both supported.
 
 After obtaining the project code from [github 
repository](https://github.com/apache/incubator-linkis) 
https://github.com/apache/incubator-linkis, use maven to compile the project 
installation package.
 
-### step1 Source code acquisition
+### 1.1 Source code acquisition
 
 - Method 1: Obtain the source code of the project from [github 
repository](https://github.com/apache/incubator-linkis) 
https://github.com/apache/incubator-linkis.
 - Method 2: Download the source code package of the required version from the 
[linkis official download page](https://linkis.apache.org/download/main) 
https://linkis.apache.org/download/main.
@@ -18,8 +17,24 @@ After obtaining the project code from [github 
repository](https://github.com/apa
 
 If you want to compile Linkis with another version of Hadoop, Hive, Spark, 
please refer to: [How to Modify Linkis dependency of Hadoop, Hive, Spark](#4 
How to Modify Linkis dependency versionof Hadoop, Hive, Spark)
 
+### <font color="red">1.2 Modify dependency configuration</font>
+:::caution Note
+Because the mysql-connector-java driver is under the GPL2.0 agreement and does 
not meet the license policy of the Apache open source agreement, starting from 
version 1.0.3, the scope of the dependency on mysql-connector-java is test by 
default. If you compile by yourself , You can modify the scope scope that the 
mysql-connector-java of the top-level pom.xml depends on (just comment it out)
+:::
+```xml
+<dependency>
+     <groupId>mysql</groupId>
+     <artifactId>mysql-connector-java</artifactId>
+     <version>${mysql.connector.version}</version>
+     <!--<scope>test</scope>-->
+</dependency>
+```
+
+## 2. Fully compile Linkis
+
 
-### step2 Compile for the first time (not the first time you can skip this 
step)
+
+### step1 Compile for the first time (not the first time you can skip this 
step)
 
 **If you are compiling and using it locally for the first time, you must first 
execute the following command in the root directory of the Linkis source code 
package**:
 ```bash
@@ -27,7 +42,7 @@ If you want to compile Linkis with another version of Hadoop, 
Hive, Spark, pleas
     mvn -N install
 ```
 
-### step3 Execute compilation
+### step2 Execute compilation
 Execute the following commands in the root directory of the Linkis source code 
package:
     
 ```bash
@@ -36,7 +51,7 @@ Execute the following commands in the root directory of the 
Linkis source code p
 
 ```
 
-### step4 Obtain the installation package
+### step3 Obtain the installation package
 The compiled complete installation package is in the 
assembly-combined-package->target directory of the project:
 
 ```bash
@@ -44,7 +59,7 @@ The compiled complete installation package is in the 
assembly-combined-package->
     
incubator-linkis-x.x.x/assembly-combined-package/target/apache-linkis-x.x.x-incubating-bin.tar.gz
 ```
 
-## 2. Compile a single module
+## 3. Compile a single module
 
 ### step1 Compile for the first time (skip this step for non-first time)
 **If you are compiling and using it locally for the first time, you must first 
execute the following command in the root directory of the Linkis source code 
package**:
@@ -68,7 +83,7 @@ Get the installation package, there will be a compiled 
package in the ->target d
     
incubator-linkis-x.x.x/linkis-computation-governance/linkis-entrance/target/linkis-entrance.x.x.x.jar
 ```
 
-## 3. Compile an engine
+## 4. Compile an engine
 
 Here's an example of the Spark engine that builds Linkis:
 
@@ -95,7 +110,7 @@ Get the installation package, there will be a compiled 
package in the ->target d
 
 How to install Spark engine separately? Please refer to [Linkis Engine Plugin 
Installation Document](deployment/engine_conn_plugin_installation.md)
 
-## 4. How to modify the Hadoop, Hive, and Spark versions that Linkis depends on
+## 5. How to modify the Hadoop, Hive, and Spark versions that Linkis depends on
 
 Please note: Hadoop is a big data basic service, Linkis must rely on Hadoop 
for compilation;
 If you don't want to use an engine, you don't need to set the version of the 
engine or compile the engine plug-in.
@@ -156,7 +171,7 @@ Here's an example of changing the version of Spark. Go to 
the directory where th
 
 Modifying the version of other engines is similar to modifying the Spark 
version. First, enter the directory where the relevant engine is located, and 
manually modify the engine version information in the pom.xml file.
 
-Then please refer to [3. Compile an engine]
+Then please refer to [4. Compile an engine](#4-compile-an-engine)
 
 
 
diff --git a/docs/introduction.md b/docs/introduction.md
index e4c5440..2438cd0 100644
--- a/docs/introduction.md
+++ b/docs/introduction.md
@@ -2,7 +2,7 @@
 title: Introduction
 sidebar_position: 0
 ---
-# Introduction
+## Introduction
 
  Linkis builds a layer of computation middleware between upper applications 
and underlying engines. By using standard interfaces such as REST/WS/JDBC 
provided by Linkis, the upper applications can easily access the underlying 
engines such as MySQL/Spark/Hive/Presto/Flink, etc., and achieve the 
intercommunication of user resources like unified variables, scripts, UDFs, 
functions and resource files at the same time.
 
@@ -15,11 +15,11 @@ Since the first release of Linkis in 2019, it has 
accumulated more than **700**
 
 
![linkis-intro-03](https://user-images.githubusercontent.com/11496700/84615483-bb435d80-aefb-11ea-81b5-67f62b156628.png)
 
-# Features
+## Features
 
 - **Support for diverse underlying computation storage engines**.  
     Currently supported computation/storage engines: Spark, Hive, Python, 
Presto, ElasticSearch, MLSQL, TiSpark, JDBC, Shell, etc;      
-    Computation/storage engines to be supported: Flink, Impala, etc;      
+    Computation/storage engines to be supported: Flink((Supported in version 
>=1.0.3)), Impala, etc;      
     Supported scripting languages: SparkSQL, HiveQL, Python, Shell, Pyspark, 
R, Scala and JDBC, etc.  
   
 - **Powerful task/request governance capabilities**. With services such as 
Orchestrator, Label Manager and customized Spring Cloud Gateway, Linkis is able 
to provide multi-level labels based, cross-cluster/cross-IDC fine-grained 
routing, load balance, multi-tenancy, traffic control, resource control, and 
orchestration strategies like dual-active, active-standby, etc.  
@@ -32,7 +32,7 @@ Since the first release of Linkis in 2019, it has accumulated 
more than **700**
 
 - **Unified materials**. System and user-level unified material management, 
which can be shared and transferred across users and systems.
 
-# Supported engine types
+## Supported engine types
 
 | **Engine** | **Supported Version** | **Linkis 0.X version requirement**| 
**Linkis 1.X version requirement** | **Description** |
 |:---- |:---- |:---- |:---- |:---- |
@@ -49,22 +49,22 @@ Since the first release of Linkis in 2019, it has 
accumulated more than **700**
 |Python|\>=2.6|\>=0.5.0|\>=1.0.0_rc1|Python EngineConn. Supports python code.|
 |TiSpark|1.1|\>=0.5.0|ongoing|TiSpark EngineConn. Support querying TiDB data 
by SparkSQL.|
 
-# Download
+## Download
 
 Please go to the [Linkis releases 
page](https://github.com/apache/incubator-linkis/releases) to download a 
compiled distribution or a source code package of Linkis.
 
-# Compile and deploy
+## Compile and deploy
 Please follow [Compile Guide](development/linkis_compile_and_package.md) to 
compile Linkis from source code.  
 Please refer to [Deployment_Documents](deployment/quick_deploy.md) to do the 
deployment. 
 
-# Examples and Guidance
+## Examples and Guidance
 You can find examples and guidance for how to use and manage Linkis in 
[User_Manual](user_guide/overview.md), 
[Engine_Usage_Documents](engine_usage/overview.md) and 
[API_Documents](dapi/overview.md).
 
-# Documentation
+## Documentation
 
 The documentation of linkis is in 
[Linkis-WebSite](https://github.com/apache/incubator-linkis-website)
 
-# Architecture
+## Architecture
 Linkis services could be divided into three categories: computation governance 
services, public enhancement services and microservice governance services.  
 - The computation governance services, support the 3 major stages of 
processing a task/request: submission -> preparation -> execution;  
 - The public enhancement services, including the material library service, 
context service, and data source service;  
@@ -91,12 +91,12 @@ Based on Linkis the computation middleware, we've built a 
lot of applications an
 
 More projects upcoming, please stay tuned.
 
-# Contributing
+## Contributing
 
 Contributions are always welcomed, we need more contributors to build Linkis 
together. either code, or doc, or other supports that could help the community. 
 
 For code and documentation contributions, please follow the [contribution 
guide](/community/how-to-contribute).
 
-# Contact Us
+## Contact Us
 
 Any questions or suggestions please kindly submit an issue.  
 You can scan the QR code below to join our WeChat and QQ group to get more 
immediate response.
@@ -105,7 +105,7 @@ You can scan the QR code below to join our WeChat and QQ 
group to get more immed
 
 Meetup videos on 
[Bilibili](https://space.bilibili.com/598542776?from=search&seid=14344213924133040656).
 
-# Who is Using Linkis
+## Who is Using Linkis
 
 We opened [an issue](https://github.com/apache/incubator-linkis/issues/23) for 
users to feedback and record who is using Linkis.  
 Since the first release of Linkis in 2019, it has accumulated more than 
**700** trial companies and **1000+** sandbox trial users, which involving 
diverse industries, from finance, banking, tele-communication, to manufactory, 
internet companies and so on.
\ No newline at end of file
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/deployment/engine_conn_plugin_installation.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/deployment/engine_conn_plugin_installation.md
index 20c521c..56e2d2e 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/deployment/engine_conn_plugin_installation.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/deployment/engine_conn_plugin_installation.md
@@ -1,5 +1,5 @@
 ---
-title: 安装 EngineConnPlugin 引擎插件
+title: 安装 EngineConnPlugin 引擎
 sidebar_position: 3
 ---
 
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/deployment/quick_deploy.md 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/deployment/quick_deploy.md
index 29b62a9..13f1954 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/deployment/quick_deploy.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/deployment/quick_deploy.md
@@ -4,6 +4,9 @@ sidebar_position: 1
 ---
 
 ## 1. 注意事项
+<font color="red">
+因为mysql-connector-java驱动是GPL2.0协议,不满足Apache开源协议关于license的政策,因此从1.0.3版本开始,提供的Apache版本官方部署包,默认是没有mysql-connector-java-x.x.x.jar的依赖包,安装部署时需要添加依赖到对应的lib包中。
+</font>
 
 **如果您是首次接触并使用Linkis,您可以忽略该章节;如果您已经是 Linkis 的使用用户,安装或升级前建议先阅读:[Linkis1.0 与 
Linkis0.X 的区别简述](architecture/difference_between_1.0_and_0.x.md)**。
 
@@ -124,7 +127,8 @@ Linkis1.0.3 默认已适配的引擎列表如下:
     #version >=1.0.3
     tar -xvf  apache-linkis-x.x.x-incubating-bin.tar.gz
 ```
-      
+
+
 ### 3.4 不依赖HDFS的基础配置修改
 
 ```bash
@@ -230,7 +234,22 @@ Linkis1.0.3 默认已适配的引擎列表如下:
 
 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;您也可以通过查看我们的[常见问题](https://docs.qq.com/doc/DSGZhdnpMV3lTUUxq),获取问题的解答。
 
-### 4.4 快速启动Linkis
+### <font color="red"> 4.4 添加mysql驱动包</font>
+
+:::caution 注意
+因为mysql-connector-java驱动是GPL2.0协议,不满足Apache开源协议关于license的政策,因此从1.0.3版本开始,提供的Apache版本官方部署包,默认是没有mysql-connector-java-x.x.x.jar的依赖包,安装部署时需要自行添加依赖到对应的lib包中
+:::
+
+下载mysql驱动 
以5.1.49版本为例:[下载链接](https://repo1.maven.org/maven2/mysql/mysql-connector-java/5.1.49/mysql-connector-java-5.1.49.jar)
 
https://repo1.maven.org/maven2/mysql/mysql-connector-java/5.1.49/mysql-connector-java-5.1.49.jar
+
+拷贝mysql 驱动包至lib包下 
+```
+cp mysql-connector-java-5.1.49.jar  
{LINKIS_INSTALL_HOME}/lib/linkis-spring-cloud-services/linkis-mg-gateway/
+cp mysql-connector-java-5.1.49.jar  
{LINKIS_INSTALL_HOME}/lib/linkis-commons/public-module/
+```
+
+
+### 4.5 快速启动Linkis
 
 #### (1)、启动服务:
   
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/development/linkis_compile_and_package.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/development/linkis_compile_and_package.md
index 3952772..be099d8 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/development/linkis_compile_and_package.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/development/linkis_compile_and_package.md
@@ -2,13 +2,14 @@
 title: Linkis 编译打包
 sidebar_position: 0
 ---
-## 1. 全量编译 Linkis
+
+## 1 前置准备 
 
 __编译环境要求:__  必须 **JDK8** 以上,**Oracle/Sun** 和 **OpenJDK**都支持。
 
 从[github仓库](https://github.com/apache/incubator-linkis) 
https://github.com/apache/incubator-linkis 获取项目代码后,使用 maven 编译项目安装包。  
 
-### step1 源码获取
+### 1.1 源码获取
 
 - 方式1:从[github仓库](https://github.com/apache/incubator-linkis) 
https://github.com/apache/incubator-linkis 获取项目的源代码。
 - 方式2:从[linkis的官方下载页面](https://linkis.apache.org/download/main) 
https://linkis.apache.org/download/main 下载所需版本的源码包。
@@ -17,7 +18,22 @@ __编译环境要求:__  必须 **JDK8** 以上,**Oracle/Sun** 和 **OpenJDK
 
 如果您想使用 Hadoop、Hive、Spark 的其他版本对 Linkis 
进行编译,请参考:[如何修改Linkis的依赖的Hadoop、Hive、Spark版本](#4-如何修改linkis的依赖的hadoophivespark版本)
 
-### step2 首次编译(非首次可跳过此步)
+### <font color="red">1.2 修改依赖配置</font>  
+:::caution 注意
+因为mysql-connector-java驱动是GPL2.0协议,不满足Apache开源协议关于license的政策,因此从1.0.3版本开始,对mysql-connector-java的依赖项作用域scope默认是test,若自行编译,可以修改顶级pom.xml的mysql-connector-java依赖的scope作用域(注释掉即可)
+:::
+```xml
+<dependency>
+    <groupId>mysql</groupId>
+    <artifactId>mysql-connector-java</artifactId>
+    <version>${mysql.connector.version}</version>
+    <!--<scope>test</scope>-->
+</dependency>
+```
+
+## 2. 全量编译 Linkis
+
+### step1 首次编译(非首次可跳过此步)
 
 **如果您是本地第一次编译使用,必须在 Linkis 源码包根目录先执行以下命令**:
 ```bash
@@ -25,7 +41,7 @@ __编译环境要求:__  必须 **JDK8** 以上,**Oracle/Sun** 和 **OpenJDK
     mvn -N  install
 ```
 
-### step3 执行编译
+### step2 执行编译
 在 Linkis 源码包根目录执行以下命令:
     
 ```bash
@@ -34,7 +50,7 @@ __编译环境要求:__  必须 **JDK8** 以上,**Oracle/Sun** 和 **OpenJDK
 
 ```  
 
-### step4 获取安装包
+### step3 获取安装包
 编译后的完整安装包,在工程的assembly-combined-package->target目录下:
 
 ```bash
@@ -42,7 +58,7 @@ __编译环境要求:__  必须 **JDK8** 以上,**Oracle/Sun** 和 **OpenJDK
     
incubator-linkis-x.x.x/assembly-combined-package/target/apache-linkis-x.x.x-incubating-bin.tar.gz
 ```
 
-## 2. 编译单个模块
+## 3. 编译单个模块
 
 ### step1 首次编译(非首次可跳过此步)
 **如果您是本地第一次编译使用,必须在 Linkis 源码包根目录先执行以下命令**:
@@ -66,7 +82,7 @@ __编译环境要求:__  必须 **JDK8** 以上,**Oracle/Sun** 和 **OpenJDK
     ls 
incubator-linkis-x.x.x/linkis-computation-governance/linkis-entrance/target/linkis-entrance.x.x.x.jar
 ```
 
-## 3. 编译某个引擎
+## 4. 编译某个引擎
 
 这里以编译 Linkis 的 Spark 引擎为例:
 
@@ -93,7 +109,7 @@ __编译环境要求:__  必须 **JDK8** 以上,**Oracle/Sun** 和 **OpenJDK
 
 如何单独安装 Spark 引擎?请参考 [Linkis 
引擎插件安装文档](deployment/engine_conn_plugin_installation.md)
 
-## 4. 如何修改Linkis的依赖的Hadoop、Hive、Spark版本
+## 5. 如何修改Linkis的依赖的Hadoop、Hive、Spark版本
 
 请注意:Hadoop 作为大数据基础服务,Linkis 必须依赖 Hadoop 进行编译;
 而 Spark、Hive等计算存储引擎则不然,如果您不想使用某个引擎,可以无需设置该引擎的版本,无需编译该引擎插件。
@@ -155,4 +171,4 @@ pom:Linkis/linkis-commons/linkis-hadoop-common/pom.xml
 
 修改其他引擎的版本与修改 Spark 版本类似,先进入相关引擎所在的目录,手动修改 pom.xml 文件的引擎版本信息即可。
 
-然后请参考 [编译某个引擎](#3-编译某个引擎)
+然后请参考 [编译某个引擎](#4-编译某个引擎)
diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/current/introduction.md 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/introduction.md
index e322c6c..37315ab 100644
--- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/introduction.md
+++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/introduction.md
@@ -14,7 +14,7 @@ Linkis 自2019年开源发布以来,已累计积累了700多家试验企业和
 ## 核心特点
 - **丰富的底层计算存储引擎支持**。  
     
**目前支持的计算存储引擎**:Spark、Hive、Python、Presto、ElasticSearch、MLSQL、TiSpark、JDBC和Shell等。
  
-    **正在支持中的计算存储引擎**:Flink、Impala等。  
+    **正在支持中的计算存储引擎**:Flink(>=1.0.3版本已支持)、Impala等。  
     **支持的脚本语言**:SparkSQL, HiveQL, Python, Shell, Pyspark, R, Scala 和JDBC 等。    
 - **强大的计算治理能力**。基于Orchestrator、Label Manager和定制的Spring Cloud 
Gateway等服务,Linkis能够提供基于多级标签的跨集群/跨IDC 
细粒度路由、负载均衡、多租户、流量控制、资源控制和编排策略(如双活、主备等)支持能力。  
 - **全栈计算存储引擎架构支持**。能够接收、执行和管理针对各种计算存储引擎的任务和请求,包括离线批量任务、交互式查询任务、实时流式任务和存储型任务;
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.0.2/deployment/engine_conn_plugin_installation.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.0.2/deployment/engine_conn_plugin_installation.md
index 20c521c..56e2d2e 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.0.2/deployment/engine_conn_plugin_installation.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.0.2/deployment/engine_conn_plugin_installation.md
@@ -1,5 +1,5 @@
 ---
-title: 安装 EngineConnPlugin 引擎插件
+title: 安装 EngineConnPlugin 引擎
 sidebar_position: 3
 ---
 
diff --git a/i18n/zh-CN/docusaurus-theme-classic/footer.json 
b/i18n/zh-CN/docusaurus-theme-classic/footer.json
index bf8b80b..7c638fb 100644
--- a/i18n/zh-CN/docusaurus-theme-classic/footer.json
+++ b/i18n/zh-CN/docusaurus-theme-classic/footer.json
@@ -37,8 +37,8 @@
     "message": "订阅邮件组",
     "description": "The title of the footer links column with title=Subscribe 
mailing list in the footer"
   },
-  "link.item.label.How to subscribe": {
-    "message": "如何定阅",
+  "link.item.label.How to Subscribe": {
+    "message": "如何订阅",
     "description": "The label of footer link with label=How to subscribe 
linking to /community/how-to-subscribe"
   },
   "link.item.label.Subscribe Mail": {
diff --git a/src/pages/team/config.json b/src/pages/team/config.json
index 0eef91a..a408ac8 100644
--- a/src/pages/team/config.json
+++ b/src/pages/team/config.json
@@ -179,7 +179,7 @@
         "email": "[email protected]",
         "gitUrl": "https://github.com/junping_du";,
         "githubId": "junping_du",
-        "name": " Junping_Du"
+        "name": " Junping Du"
       },
       {
         "apacheId": "hangduo",

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

Reply via email to