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

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


The following commit(s) were added to refs/heads/dev by this push:
     new 48a90207b9 correct linkis home (#647)
48a90207b9 is described below

commit 48a90207b92a46018047c81aab7018a32576d2a0
Author: GuoPhilipse <[email protected]>
AuthorDate: Tue Jan 3 09:55:53 2023 +0800

    correct linkis home (#647)
---
 docs/deployment/deploy-quick.md                                | 10 +++++-----
 docs/development/debug.md                                      |  8 ++++----
 .../current/deployment/deploy-console.md                       |  2 +-
 .../current/deployment/deploy-quick.md                         | 10 +++++-----
 .../current/development/debug.md                               | 10 +++++-----
 .../version-1.0.3/deployment/quick-deploy.md                   |  4 ++--
 .../version-1.1.0/deployment/quick-deploy.md                   |  4 ++--
 .../version-1.1.0/development/linkis-debug.md                  |  2 +-
 .../version-1.1.1/deployment/quick-deploy.md                   | 10 +++++-----
 .../version-1.1.1/deployment/web-install.md                    |  2 +-
 .../version-1.1.1/development/linkis-debug.md                  |  2 +-
 .../version-1.1.2/deployment/quick-deploy.md                   | 10 +++++-----
 .../version-1.1.2/deployment/web-install.md                    |  2 +-
 .../version-1.1.2/development/linkis-debug.md                  |  2 +-
 .../version-1.1.3/deployment/quick-deploy.md                   | 10 +++++-----
 .../version-1.1.3/deployment/web-install.md                    |  2 +-
 .../version-1.1.3/development/linkis-debug.md                  |  2 +-
 .../version-1.2.0/deployment/quick-deploy.md                   | 10 +++++-----
 .../version-1.2.0/deployment/web-install.md                    |  2 +-
 .../version-1.2.0/development/linkis-debug.md                  | 10 +++++-----
 .../version-1.3.0/deployment/deploy-console.md                 |  2 +-
 .../version-1.3.0/deployment/deploy-quick.md                   | 10 +++++-----
 .../version-1.3.0/development/debug.md                         | 10 +++++-----
 versioned_docs/version-1.0.3/deployment/quick-deploy.md        |  4 ++--
 versioned_docs/version-1.1.0/deployment/quick-deploy.md        |  4 ++--
 versioned_docs/version-1.1.0/development/linkis-debug.md       |  4 ++--
 versioned_docs/version-1.1.1/deployment/quick-deploy.md        | 10 +++++-----
 versioned_docs/version-1.1.1/development/linkis-debug.md       |  4 ++--
 versioned_docs/version-1.1.2/deployment/quick-deploy.md        | 10 +++++-----
 versioned_docs/version-1.1.2/development/linkis-debug.md       |  4 ++--
 versioned_docs/version-1.1.3/deployment/quick-deploy.md        | 10 +++++-----
 versioned_docs/version-1.1.3/development/linkis-debug.md       |  4 ++--
 versioned_docs/version-1.2.0/deployment/quick-deploy.md        | 10 +++++-----
 versioned_docs/version-1.2.0/development/linkis-debug.md       |  4 ++--
 versioned_docs/version-1.3.0/deployment/deploy-quick.md        | 10 +++++-----
 versioned_docs/version-1.3.0/development/debug.md              |  4 ++--
 36 files changed, 109 insertions(+), 109 deletions(-)

diff --git a/docs/deployment/deploy-quick.md b/docs/deployment/deploy-quick.md
index 887665b832..1d5cd31793 100644
--- a/docs/deployment/deploy-quick.md
+++ b/docs/deployment/deploy-quick.md
@@ -157,7 +157,7 @@ SPARK_CONF_DIR=/appcom/config/spark-config
 #### LDAP login configuration (optional)
 
 :::caution note
-The default is to use a static user and password. The static user is the 
deployment user. The static password will generate a random password string 
during deployment and store it in 
`{LINKIS_HOME}/conf/linkis-mg-gateway.properties`(>=1.0.3 Version)
+The default is to use a static user and password. The static user is the 
deployment user. The static password will generate a random password string 
during deployment and store it in 
`${LINKIS_HOME}/conf/linkis-mg-gateway.properties`(>=1.0.3 Version)
 :::
 
 
@@ -245,8 +245,8 @@ To download the mysql driver, take version 5.1.49 as an 
example: [download link]
 
 Copy the mysql driver package to the lib package
 ````
-cp mysql-connector-java-5.1.49.jar 
{LINKIS_HOME}/lib/linkis-spring-cloud-services/linkis-mg-gateway/
-cp mysql-connector-java-5.1.49.jar 
{LINKIS_HOME}/lib/linkis-commons/public-module/
+cp mysql-connector-java-5.1.49.jar 
${LINKIS_HOME}/lib/linkis-spring-cloud-services/linkis-mg-gateway/
+cp mysql-connector-java-5.1.49.jar 
${LINKIS_HOME}/lib/linkis-commons/public-module/
 ````
 
 ### 3.3 Configuration Adjustment (Optional)
@@ -383,7 +383,7 @@ If you need to modify the port or static resource 
directory, etc., please modify
 ### 4.4 Login to the console
 
 Browser login `http://xx.xx.xx.xx:8188/#/login`
-Username/password can be found in 
`{LINKIS_HOME}/conf/linkis-mg-gateway.properties`
+Username/password can be found in 
`${LINKIS_HOME}/conf/linkis-mg-gateway.properties`
 ```shell script
 wds.linkis.admin.user= #User
 wds.linkis.admin.password= #Password
@@ -542,7 +542,7 @@ hdfs dfs -chown hadoop:hadoop/apps-data
 ### 8.3 Login password problem
 
 By default, linkis uses a static user and password. The static user is the 
deployment user. The static password will randomly generate a password string 
during deployment and store it in
-`{LINKIS_HOME}/conf/linkis-mg-gateway.properties` (>=1.0.3 version)
+`${LINKIS_HOME}/conf/linkis-mg-gateway.properties` (>=1.0.3 version)
 
 ### 8.4 version compatibility issues
 
diff --git a/docs/development/debug.md b/docs/development/debug.md
index 580339bd2f..e7aa205ec6 100644
--- a/docs/development/debug.md
+++ b/docs/development/debug.md
@@ -284,7 +284,7 @@ When starting engineplugin, you may encounter the following 
error:
 You need to add the publicly dependent modules to the classpath of the ecp 
module, and modify the pom of pes to add the following dependencies:
 
linkis-computation-governance/linkis-engineconn/linkis-engineconn-plugin-server/pom.xml
 ````xml
- <dependency>
+    <dependency>
       <groupId>org.apache.linkis</groupId>
       <artifactId>linkis-dist</artifactId>
       <version>${project.version}</version>
@@ -294,7 +294,7 @@ 
linkis-computation-governance/linkis-engineconn/linkis-engineconn-plugin-server/
       <groupId>mysql</groupId>
       <artifactId>mysql-connector-java</artifactId>
       <version>${mysql.connector.version}</version>
-</dependency>
+    </dependency>
 
 ````
 
@@ -492,7 +492,7 @@ GET 
http://127.0.0.1:9001/api/rest_j/v1/filesystem/openFile?path=file:///Users/l
 
 Identify the service where the package that needs to be debugged is located, 
and determine the service to which it belongs according to the location of the 
code to be debugged
 
-### 4.2 Enter {LINKIS_HOME}/sbin/ext, modify the module configuration file to 
open the remote call port
+### 4.2 Enter ${LINKIS_HOME}/sbin/ext, modify the module configuration file to 
open the remote call port
 ![c-port](images/c-port.png)
 
 ### 4.3 Restart the service that needs to be debugged
@@ -501,7 +501,7 @@ Identify the service where the package that needs to be 
debugged is located, and
 sh linkis-daemon.sh restart ps-publicservice
 ````
 
-(If you are not sure about the service name, check in 
{LINKIS_HOME}/sbin/linkis-start-all.sh )
+(If you are not sure about the service name, check in 
${LINKIS_HOME}/sbin/linkis-start-all.sh )
 
 ### 4.4 Compiler configuration remote debugging
 
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/deployment/deploy-console.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/deployment/deploy-console.md
index 62e389ff76..3d1f3213ca 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/deployment/deploy-console.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/deployment/deploy-console.md
@@ -161,7 +161,7 @@ sudo systemctl restart nginx
 
 浏览器访问`http://linkis_ipaddr:linkis_port` 
其中linkis_port为config.sh里面配置的端口,linkis_ipaddr为安装机器的IP
 
-用户名/密码在`{LINKIS_HOME}/conf/linkis-mg-gateway.properties`中查看
+用户名/密码在`${LINKIS_HOME}/conf/linkis-mg-gateway.properties`中查看
 ```shell script
 wds.linkis.admin.user= #用户
 wds.linkis.admin.password= #密码
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/deployment/deploy-quick.md 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/deployment/deploy-quick.md
index 75052b2a5a..0f1c00396a 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/deployment/deploy-quick.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/deployment/deploy-quick.md
@@ -157,7 +157,7 @@ SPARK_CONF_DIR=/appcom/config/spark-config
 #### LDAP 登录配置(可选)
 
 :::caution 注意
-默认是使用静态用户和密码,静态用户即部署用户,静态密码会在执行部署是随机生成一个密码串,存储于`{LINKIS_HOME}/conf/linkis-mg-gateway.properties`(>=1.0.3版本)
+默认是使用静态用户和密码,静态用户即部署用户,静态密码会在执行部署是随机生成一个密码串,存储于`${LINKIS_HOME}/conf/linkis-mg-gateway.properties`(>=1.0.3版本)
 :::
 
 
@@ -244,8 +244,8 @@ Your default account password is [hadoop/5e8e312b4]`
 
 拷贝mysql 驱动包至lib包下 
 ```
-cp mysql-connector-java-5.1.49.jar  
{LINKIS_HOME}/lib/linkis-spring-cloud-services/linkis-mg-gateway/
-cp mysql-connector-java-5.1.49.jar  
{LINKIS_HOME}/lib/linkis-commons/public-module/
+cp mysql-connector-java-5.1.49.jar  
${LINKIS_HOME}/lib/linkis-spring-cloud-services/linkis-mg-gateway/
+cp mysql-connector-java-5.1.49.jar  
${LINKIS_HOME}/lib/linkis-commons/public-module/
 ```
 
 ### 3.3 配置调整(可选)
@@ -374,7 +374,7 @@ nginx的日志文件在 `/var/log/nginx/access.log` 
和`/var/log/nginx/error.log
 ### 4.4 登录管理台
 
 浏览器登陆 `http://xx.xx.xx.xx:8188/#/login`
-用户名/密码在`{LINKIS_HOME}/conf/linkis-mg-gateway.properties`中查看
+用户名/密码在`${LINKIS_HOME}/conf/linkis-mg-gateway.properties`中查看
 ```shell script
 wds.linkis.admin.user= #用户
 wds.linkis.admin.password= #密码
@@ -533,7 +533,7 @@ hdfs dfs -chown hadoop:hadoop   /apps-data
 ### 8.3 登陆密码问题
 
 linkis默认是使用静态用户和密码,静态用户即部署用户,静态密码会在执行部署是随机生成一个密码串,存储于
-`{LINKIS_HOME}/conf/linkis-mg-gateway.properties`(>=1.0.3版本)
+`${LINKIS_HOME}/conf/linkis-mg-gateway.properties`(>=1.0.3版本)
 
 ### 8.4 版本兼容性问题
 
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/development/debug.md 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/development/debug.md
index 721ff640c3..4760ad4305 100644
--- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/development/debug.md
+++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/development/debug.md
@@ -193,7 +193,7 @@ org.apache.linkis.filesystem.LinkisPublicServiceApp
 需要把公共依赖的模块加到linkis-public-enhancements模块的classpath下,修改pes的pom增加以下依赖:
 linkis-public-enhancements/pom.xml
 ```xml
- <dependency>
+    <dependency>
       <groupId>org.apache.linkis</groupId>
       <artifactId>linkis-dist</artifactId>
       <version>${project.version}</version>
@@ -203,7 +203,7 @@ linkis-public-enhancements/pom.xml
       <groupId>mysql</groupId>
       <artifactId>mysql-connector-java</artifactId>
       <version>${mysql.connector.version}</version>
-</dependency>
+    </dependency>
 
 ```
 
@@ -285,7 +285,7 @@ 
org.apache.linkis.engineplugin.server.LinkisEngineConnPluginServer
 需要把公共依赖的模块加到ecp模块的classpath下,修改pes的pom增加以下依赖:
 
linkis-computation-governance/linkis-engineconn/linkis-engineconn-plugin-server/pom.xml
 ```xml
- <dependency>
+    <dependency>
       <groupId>org.apache.linkis</groupId>
       <artifactId>linkis-dist</artifactId>
       <version>${project.version}</version>
@@ -295,7 +295,7 @@ 
linkis-computation-governance/linkis-engineconn/linkis-engineconn-plugin-server/
       <groupId>mysql</groupId>
       <artifactId>mysql-connector-java</artifactId>
       <version>${mysql.connector.version}</version>
-</dependency>
+    </dependency>
 
 ```
 
@@ -505,7 +505,7 @@ GET 
http://127.0.0.1:9001/api/rest_j/v1/filesystem/openFile?path=file:///Users/l
 sh linkis-daemon.sh restart ps-publicservice
 ```
 
-(如果不确定服务名称,在 {LINKIS_HOME}/sbin/linkis-start-all.sh 内查询)
+(如果不确定服务名称,在 ${LINKIS_HOME}/sbin/linkis-start-all.sh 内查询)
 
 ### 4.4 编译器配置远程调试
 
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.0.3/deployment/quick-deploy.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.0.3/deployment/quick-deploy.md
index 5b5b290852..502a05660f 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.0.3/deployment/quick-deploy.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.0.3/deployment/quick-deploy.md
@@ -232,8 +232,8 @@ Linkis1.0.3 默认已适配的引擎列表如下:
 
 拷贝mysql 驱动包至lib包下 
 ```
-cp mysql-connector-java-5.1.49.jar  
{LINKIS_HOME}/lib/linkis-spring-cloud-services/linkis-mg-gateway/
-cp mysql-connector-java-5.1.49.jar  
{LINKIS_HOME}/lib/linkis-commons/public-module/
+cp mysql-connector-java-5.1.49.jar  
${LINKIS_HOME}/lib/linkis-spring-cloud-services/linkis-mg-gateway/
+cp mysql-connector-java-5.1.49.jar  
${LINKIS_HOME}/lib/linkis-commons/public-module/
 ```
 
 
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.1.0/deployment/quick-deploy.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.1.0/deployment/quick-deploy.md
index 5b5b290852..502a05660f 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.1.0/deployment/quick-deploy.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.1.0/deployment/quick-deploy.md
@@ -232,8 +232,8 @@ Linkis1.0.3 默认已适配的引擎列表如下:
 
 拷贝mysql 驱动包至lib包下 
 ```
-cp mysql-connector-java-5.1.49.jar  
{LINKIS_HOME}/lib/linkis-spring-cloud-services/linkis-mg-gateway/
-cp mysql-connector-java-5.1.49.jar  
{LINKIS_HOME}/lib/linkis-commons/public-module/
+cp mysql-connector-java-5.1.49.jar  
${LINKIS_HOME}/lib/linkis-spring-cloud-services/linkis-mg-gateway/
+cp mysql-connector-java-5.1.49.jar  
${LINKIS_HOME}/lib/linkis-commons/public-module/
 ```
 
 
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.1.0/development/linkis-debug.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.1.0/development/linkis-debug.md
index 4ca68234df..a2e99993d4 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.1.0/development/linkis-debug.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.1.0/development/linkis-debug.md
@@ -496,7 +496,7 @@ GET 
http://127.0.0.1:9001/api/rest_j/v1/filesystem/openFile?path=file:///Users/l
 sh linkis-daemon.sh restart ps-publicservice
 ```
 
-(如果不确定服务名称,在 {LINKIS_HOME}/sbin/linkis-start-all.sh 内查询)
+(如果不确定服务名称,在 ${LINKIS_HOME}/sbin/linkis-start-all.sh 内查询)
 
 ### 4.4 编译器配置远程调试
 
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.1.1/deployment/quick-deploy.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.1.1/deployment/quick-deploy.md
index 50e878bb9b..0accd79549 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.1.1/deployment/quick-deploy.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.1.1/deployment/quick-deploy.md
@@ -157,7 +157,7 @@ SPARK_CONF_DIR=/appcom/config/spark-config
 #### LDAP 登录配置(可选)
 
 :::caution 注意
-默认是使用静态用户和密码,静态用户即部署用户,静态密码会在执行部署是随机生成一个密码串,存储于`{LINKIS_HOME}/conf/linkis-mg-gateway.properties`(>=1.0.3版本)
+默认是使用静态用户和密码,静态用户即部署用户,静态密码会在执行部署是随机生成一个密码串,存储于`${LINKIS_HOME}/conf/linkis-mg-gateway.properties`(>=1.0.3版本)
 :::
 
 
@@ -238,8 +238,8 @@ Your default account password is [hadoop/5e8e312b4]`
 
 拷贝mysql 驱动包至lib包下 
 ```
-cp mysql-connector-java-5.1.49.jar  
{LINKIS_HOME}/lib/linkis-spring-cloud-services/linkis-mg-gateway/
-cp mysql-connector-java-5.1.49.jar  
{LINKIS_HOME}/lib/linkis-commons/public-module/
+cp mysql-connector-java-5.1.49.jar  
${LINKIS_HOME}/lib/linkis-spring-cloud-services/linkis-mg-gateway/
+cp mysql-connector-java-5.1.49.jar  
${LINKIS_HOME}/lib/linkis-commons/public-module/
 ```
 
 ### 3.3 配置调整(可选)
@@ -378,7 +378,7 @@ nginx的日志文件在 `/var/log/nginx/access.log` 
和`/var/log/nginx/error.log
 ### 4.4 登录管理台
 
 浏览器登陆 `http://xx.xx.xx.xx:8188/#/login`
-用户名/密码在`{LINKIS_HOME}/conf/linkis-mg-gateway.properties`中查看
+用户名/密码在`${LINKIS_HOME}/conf/linkis-mg-gateway.properties`中查看
 ```shell script
 wds.linkis.admin.user= #用户
 wds.linkis.admin.password= #密码
@@ -537,7 +537,7 @@ hdfs dfs -chown hadoop:hadoop   /apps-data
 
 ### 8.3 登陆密码问题
 linkis默认是使用静态用户和密码,静态用户即部署用户,静态密码会在执行部署是随机生成一个密码串,存储于
-`{LINKIS_HOME}/conf/linkis-mg-gateway.properties`(>=1.0.3版本)
+`${LINKIS_HOME}/conf/linkis-mg-gateway.properties`(>=1.0.3版本)
 
 ### 8.4 版本兼容性问题
 
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.1.1/deployment/web-install.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.1.1/deployment/web-install.md
index ca831bb9cb..0c25504f7a 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.1.1/deployment/web-install.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.1.1/deployment/web-install.md
@@ -161,7 +161,7 @@ sudo systemctl restart nginx
 
 浏览器访问`http://linkis_ipaddr:linkis_port` 
其中linkis_port为config.sh里面配置的端口,linkis_ipaddr为安装机器的IP
 
-用户名/密码在`{LINKIS_HOME}/conf/linkis-mg-gateway.properties`中查看
+用户名/密码在`${LINKIS_HOME}/conf/linkis-mg-gateway.properties`中查看
 ```shell script
 wds.linkis.admin.user= #用户
 wds.linkis.admin.password= #密码
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.1.1/development/linkis-debug.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.1.1/development/linkis-debug.md
index bf90cecee0..c901b1f038 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.1.1/development/linkis-debug.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.1.1/development/linkis-debug.md
@@ -496,7 +496,7 @@ GET 
http://127.0.0.1:9001/api/rest_j/v1/filesystem/openFile?path=file:///Users/l
 sh linkis-daemon.sh restart ps-publicservice
 ```
 
-(如果不确定服务名称,在 {LINKIS_HOME}/sbin/linkis-start-all.sh 内查询)
+(如果不确定服务名称,在 ${LINKIS_HOME}/sbin/linkis-start-all.sh 内查询)
 
 ### 4.4 编译器配置远程调试
 
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.1.2/deployment/quick-deploy.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.1.2/deployment/quick-deploy.md
index c60e7e9201..a964a4767a 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.1.2/deployment/quick-deploy.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.1.2/deployment/quick-deploy.md
@@ -157,7 +157,7 @@ SPARK_CONF_DIR=/appcom/config/spark-config
 #### LDAP 登录配置(可选)
 
 :::caution 注意
-默认是使用静态用户和密码,静态用户即部署用户,静态密码会在执行部署是随机生成一个密码串,存储于`{LINKIS_HOME}/conf/linkis-mg-gateway.properties`(>=1.0.3版本)
+默认是使用静态用户和密码,静态用户即部署用户,静态密码会在执行部署是随机生成一个密码串,存储于`${LINKIS_HOME}/conf/linkis-mg-gateway.properties`(>=1.0.3版本)
 :::
 
 
@@ -239,8 +239,8 @@ Your default account password is [hadoop/5e8e312b4]`
 
 拷贝mysql 驱动包至lib包下 
 ```
-cp mysql-connector-java-5.1.49.jar  
{LINKIS_HOME}/lib/linkis-spring-cloud-services/linkis-mg-gateway/
-cp mysql-connector-java-5.1.49.jar  
{LINKIS_HOME}/lib/linkis-commons/public-module/
+cp mysql-connector-java-5.1.49.jar  
${LINKIS_HOME}/lib/linkis-spring-cloud-services/linkis-mg-gateway/
+cp mysql-connector-java-5.1.49.jar  
${LINKIS_HOME}/lib/linkis-commons/public-module/
 ```
 
 ### 3.3 配置调整(可选)
@@ -382,7 +382,7 @@ nginx的日志文件在 `/var/log/nginx/access.log` 
和`/var/log/nginx/error.log
 ### 4.4 登录管理台
 
 浏览器登陆 `http://xx.xx.xx.xx:8188/#/login`
-用户名/密码在`{LINKIS_HOME}/conf/linkis-mg-gateway.properties`中查看
+用户名/密码在`${LINKIS_HOME}/conf/linkis-mg-gateway.properties`中查看
 ```shell script
 wds.linkis.admin.user= #用户
 wds.linkis.admin.password= #密码
@@ -542,7 +542,7 @@ hdfs dfs -chown hadoop:hadoop   /apps-data
 ### 8.3 登陆密码问题
 
 linkis默认是使用静态用户和密码,静态用户即部署用户,静态密码会在执行部署是随机生成一个密码串,存储于
-`{LINKIS_HOME}/conf/linkis-mg-gateway.properties`(>=1.0.3版本)
+`${LINKIS_HOME}/conf/linkis-mg-gateway.properties`(>=1.0.3版本)
 
 ### 8.4 版本兼容性问题
 
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.1.2/deployment/web-install.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.1.2/deployment/web-install.md
index ca831bb9cb..0c25504f7a 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.1.2/deployment/web-install.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.1.2/deployment/web-install.md
@@ -161,7 +161,7 @@ sudo systemctl restart nginx
 
 浏览器访问`http://linkis_ipaddr:linkis_port` 
其中linkis_port为config.sh里面配置的端口,linkis_ipaddr为安装机器的IP
 
-用户名/密码在`{LINKIS_HOME}/conf/linkis-mg-gateway.properties`中查看
+用户名/密码在`${LINKIS_HOME}/conf/linkis-mg-gateway.properties`中查看
 ```shell script
 wds.linkis.admin.user= #用户
 wds.linkis.admin.password= #密码
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.1.2/development/linkis-debug.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.1.2/development/linkis-debug.md
index 4ca68234df..a2e99993d4 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.1.2/development/linkis-debug.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.1.2/development/linkis-debug.md
@@ -496,7 +496,7 @@ GET 
http://127.0.0.1:9001/api/rest_j/v1/filesystem/openFile?path=file:///Users/l
 sh linkis-daemon.sh restart ps-publicservice
 ```
 
-(如果不确定服务名称,在 {LINKIS_HOME}/sbin/linkis-start-all.sh 内查询)
+(如果不确定服务名称,在 ${LINKIS_HOME}/sbin/linkis-start-all.sh 内查询)
 
 ### 4.4 编译器配置远程调试
 
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.1.3/deployment/quick-deploy.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.1.3/deployment/quick-deploy.md
index 806d9bc40b..7e3af2e119 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.1.3/deployment/quick-deploy.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.1.3/deployment/quick-deploy.md
@@ -157,7 +157,7 @@ SPARK_CONF_DIR=/appcom/config/spark-config
 #### LDAP 登录配置(可选)
 
 :::caution 注意
-默认是使用静态用户和密码,静态用户即部署用户,静态密码会在执行部署是随机生成一个密码串,存储于`{LINKIS_HOME}/conf/linkis-mg-gateway.properties`(>=1.0.3版本)
+默认是使用静态用户和密码,静态用户即部署用户,静态密码会在执行部署是随机生成一个密码串,存储于`${LINKIS_HOME}/conf/linkis-mg-gateway.properties`(>=1.0.3版本)
 :::
 
 
@@ -239,8 +239,8 @@ Your default account password is [hadoop/5e8e312b4]`
 
 拷贝mysql 驱动包至lib包下 
 ```
-cp mysql-connector-java-5.1.49.jar  
{LINKIS_HOME}/lib/linkis-spring-cloud-services/linkis-mg-gateway/
-cp mysql-connector-java-5.1.49.jar  
{LINKIS_HOME}/lib/linkis-commons/public-module/
+cp mysql-connector-java-5.1.49.jar  
${LINKIS_HOME}/lib/linkis-spring-cloud-services/linkis-mg-gateway/
+cp mysql-connector-java-5.1.49.jar  
${LINKIS_HOME}/lib/linkis-commons/public-module/
 ```
 
 ### 3.3 配置调整(可选)
@@ -382,7 +382,7 @@ nginx的日志文件在 `/var/log/nginx/access.log` 
和`/var/log/nginx/error.log
 ### 4.4 登录管理台
 
 浏览器登陆 `http://xx.xx.xx.xx:8188/#/login`
-用户名/密码在`{LINKIS_HOME}/conf/linkis-mg-gateway.properties`中查看
+用户名/密码在`${LINKIS_HOME}/conf/linkis-mg-gateway.properties`中查看
 ```shell script
 wds.linkis.admin.user= #用户
 wds.linkis.admin.password= #密码
@@ -542,7 +542,7 @@ hdfs dfs -chown hadoop:hadoop   /apps-data
 ### 8.3 登陆密码问题
 
 linkis默认是使用静态用户和密码,静态用户即部署用户,静态密码会在执行部署是随机生成一个密码串,存储于
-`{LINKIS_HOME}/conf/linkis-mg-gateway.properties`(>=1.0.3版本)
+`${LINKIS_HOME}/conf/linkis-mg-gateway.properties`(>=1.0.3版本)
 
 ### 8.4 版本兼容性问题
 
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.1.3/deployment/web-install.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.1.3/deployment/web-install.md
index 3b53018a03..e7557cf9f0 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.1.3/deployment/web-install.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.1.3/deployment/web-install.md
@@ -161,7 +161,7 @@ sudo systemctl restart nginx
 
 浏览器访问`http://linkis_ipaddr:linkis_port` 
其中linkis_port为config.sh里面配置的端口,linkis_ipaddr为安装机器的IP
 
-用户名/密码在`{LINKIS_HOME}/conf/linkis-mg-gateway.properties`中查看
+用户名/密码在`${LINKIS_HOME}/conf/linkis-mg-gateway.properties`中查看
 ```shell script
 wds.linkis.admin.user= #用户
 wds.linkis.admin.password= #密码
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.1.3/development/linkis-debug.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.1.3/development/linkis-debug.md
index 4ca68234df..a2e99993d4 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.1.3/development/linkis-debug.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.1.3/development/linkis-debug.md
@@ -496,7 +496,7 @@ GET 
http://127.0.0.1:9001/api/rest_j/v1/filesystem/openFile?path=file:///Users/l
 sh linkis-daemon.sh restart ps-publicservice
 ```
 
-(如果不确定服务名称,在 {LINKIS_HOME}/sbin/linkis-start-all.sh 内查询)
+(如果不确定服务名称,在 ${LINKIS_HOME}/sbin/linkis-start-all.sh 内查询)
 
 ### 4.4 编译器配置远程调试
 
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.2.0/deployment/quick-deploy.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.2.0/deployment/quick-deploy.md
index a7780cd852..6ed9dc7fe9 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.2.0/deployment/quick-deploy.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.2.0/deployment/quick-deploy.md
@@ -157,7 +157,7 @@ SPARK_CONF_DIR=/appcom/config/spark-config
 #### LDAP 登录配置(可选)
 
 :::caution 注意
-默认是使用静态用户和密码,静态用户即部署用户,静态密码会在执行部署是随机生成一个密码串,存储于`{LINKIS_HOME}/conf/linkis-mg-gateway.properties`(>=1.0.3版本)
+默认是使用静态用户和密码,静态用户即部署用户,静态密码会在执行部署是随机生成一个密码串,存储于`${LINKIS_HOME}/conf/linkis-mg-gateway.properties`(>=1.0.3版本)
 :::
 
 
@@ -239,8 +239,8 @@ Your default account password is [hadoop/5e8e312b4]`
 
 拷贝mysql 驱动包至lib包下 
 ```
-cp mysql-connector-java-5.1.49.jar  
{LINKIS_HOME}/lib/linkis-spring-cloud-services/linkis-mg-gateway/
-cp mysql-connector-java-5.1.49.jar  
{LINKIS_HOME}/lib/linkis-commons/public-module/
+cp mysql-connector-java-5.1.49.jar  
${LINKIS_HOME}/lib/linkis-spring-cloud-services/linkis-mg-gateway/
+cp mysql-connector-java-5.1.49.jar  
${LINKIS_HOME}/lib/linkis-commons/public-module/
 ```
 
 ### 3.3 配置调整(可选)
@@ -382,7 +382,7 @@ nginx的日志文件在 `/var/log/nginx/access.log` 
和`/var/log/nginx/error.log
 ### 4.4 登录管理台
 
 浏览器登陆 `http://xx.xx.xx.xx:8188/#/login`
-用户名/密码在`{LINKIS_HOME}/conf/linkis-mg-gateway.properties`中查看
+用户名/密码在`${LINKIS_HOME}/conf/linkis-mg-gateway.properties`中查看
 ```shell script
 wds.linkis.admin.user= #用户
 wds.linkis.admin.password= #密码
@@ -542,7 +542,7 @@ hdfs dfs -chown hadoop:hadoop   /apps-data
 ### 8.3 登陆密码问题
 
 linkis默认是使用静态用户和密码,静态用户即部署用户,静态密码会在执行部署是随机生成一个密码串,存储于
-`{LINKIS_HOME}/conf/linkis-mg-gateway.properties`(>=1.0.3版本)
+`${LINKIS_HOME}/conf/linkis-mg-gateway.properties`(>=1.0.3版本)
 
 ### 8.4 版本兼容性问题
 
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.2.0/deployment/web-install.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.2.0/deployment/web-install.md
index 3b53018a03..e7557cf9f0 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.2.0/deployment/web-install.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.2.0/deployment/web-install.md
@@ -161,7 +161,7 @@ sudo systemctl restart nginx
 
 浏览器访问`http://linkis_ipaddr:linkis_port` 
其中linkis_port为config.sh里面配置的端口,linkis_ipaddr为安装机器的IP
 
-用户名/密码在`{LINKIS_HOME}/conf/linkis-mg-gateway.properties`中查看
+用户名/密码在`${LINKIS_HOME}/conf/linkis-mg-gateway.properties`中查看
 ```shell script
 wds.linkis.admin.user= #用户
 wds.linkis.admin.password= #密码
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.2.0/development/linkis-debug.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.2.0/development/linkis-debug.md
index 68add29623..3fa31c425e 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.2.0/development/linkis-debug.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.2.0/development/linkis-debug.md
@@ -192,7 +192,7 @@ org.apache.linkis.filesystem.LinkisPublicServiceApp
 需要把公共依赖的模块加到linkis-public-enhancements模块的classpath下,修改pes的pom增加以下依赖:
 linkis-public-enhancements/pom.xml
 ```xml
- <dependency>
+    <dependency>
       <groupId>org.apache.linkis</groupId>
       <artifactId>linkis-dist</artifactId>
       <version>${project.version}</version>
@@ -202,7 +202,7 @@ linkis-public-enhancements/pom.xml
       <groupId>mysql</groupId>
       <artifactId>mysql-connector-java</artifactId>
       <version>${mysql.connector.version}</version>
-</dependency>
+    </dependency>
 
 ```
 
@@ -284,7 +284,7 @@ 
org.apache.linkis.engineplugin.server.LinkisEngineConnPluginServer
 需要把公共依赖的模块加到ecp模块的classpath下,修改pes的pom增加以下依赖:
 
linkis-computation-governance/linkis-engineconn/linkis-engineconn-plugin-server/pom.xml
 ```xml
- <dependency>
+    <dependency>
       <groupId>org.apache.linkis</groupId>
       <artifactId>linkis-dist</artifactId>
       <version>${project.version}</version>
@@ -294,7 +294,7 @@ 
linkis-computation-governance/linkis-engineconn/linkis-engineconn-plugin-server/
       <groupId>mysql</groupId>
       <artifactId>mysql-connector-java</artifactId>
       <version>${mysql.connector.version}</version>
-</dependency>
+    </dependency>
 
 ```
 
@@ -504,7 +504,7 @@ GET 
http://127.0.0.1:9001/api/rest_j/v1/filesystem/openFile?path=file:///Users/l
 sh linkis-daemon.sh restart ps-publicservice
 ```
 
-(如果不确定服务名称,在 {LINKIS_HOME}/sbin/linkis-start-all.sh 内查询)
+(如果不确定服务名称,在 ${LINKIS_HOME}/sbin/linkis-start-all.sh 内查询)
 
 ### 4.4 编译器配置远程调试
 
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.3.0/deployment/deploy-console.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.3.0/deployment/deploy-console.md
index 5214094e0a..675e9ca643 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.3.0/deployment/deploy-console.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.3.0/deployment/deploy-console.md
@@ -161,7 +161,7 @@ sudo systemctl restart nginx
 
 浏览器访问`http://linkis_ipaddr:linkis_port` 
其中linkis_port为config.sh里面配置的端口,linkis_ipaddr为安装机器的IP
 
-用户名/密码在`{LINKIS_HOME}/conf/linkis-mg-gateway.properties`中查看
+用户名/密码在`${LINKIS_HOME}/conf/linkis-mg-gateway.properties`中查看
 ```shell script
 wds.linkis.admin.user= #用户
 wds.linkis.admin.password= #密码
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.3.0/deployment/deploy-quick.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.3.0/deployment/deploy-quick.md
index 8ecbf75c96..cd0b88c589 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.3.0/deployment/deploy-quick.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.3.0/deployment/deploy-quick.md
@@ -157,7 +157,7 @@ SPARK_CONF_DIR=/appcom/config/spark-config
 #### LDAP 登录配置(可选)
 
 :::caution 注意
-默认是使用静态用户和密码,静态用户即部署用户,静态密码会在执行部署是随机生成一个密码串,存储于`{LINKIS_HOME}/conf/linkis-mg-gateway.properties`(>=1.0.3版本)
+默认是使用静态用户和密码,静态用户即部署用户,静态密码会在执行部署是随机生成一个密码串,存储于`${LINKIS_HOME}/conf/linkis-mg-gateway.properties`(>=1.0.3版本)
 :::
 
 
@@ -239,8 +239,8 @@ Your default account password is [hadoop/5e8e312b4]`
 
 拷贝mysql 驱动包至lib包下 
 ```
-cp mysql-connector-java-5.1.49.jar  
{LINKIS_HOME}/lib/linkis-spring-cloud-services/linkis-mg-gateway/
-cp mysql-connector-java-5.1.49.jar  
{LINKIS_HOME}/lib/linkis-commons/public-module/
+cp mysql-connector-java-5.1.49.jar  
${LINKIS_HOME}/lib/linkis-spring-cloud-services/linkis-mg-gateway/
+cp mysql-connector-java-5.1.49.jar  
${LINKIS_HOME}/lib/linkis-commons/public-module/
 ```
 
 ### 3.3 配置调整(可选)
@@ -382,7 +382,7 @@ nginx的日志文件在 `/var/log/nginx/access.log` 
和`/var/log/nginx/error.log
 ### 4.4 登录管理台
 
 浏览器登陆 `http://xx.xx.xx.xx:8188/#/login`
-用户名/密码在`{LINKIS_HOME}/conf/linkis-mg-gateway.properties`中查看
+用户名/密码在`${LINKIS_HOME}/conf/linkis-mg-gateway.properties`中查看
 ```shell script
 wds.linkis.admin.user= #用户
 wds.linkis.admin.password= #密码
@@ -542,7 +542,7 @@ hdfs dfs -chown hadoop:hadoop   /apps-data
 ### 8.3 登陆密码问题
 
 linkis默认是使用静态用户和密码,静态用户即部署用户,静态密码会在执行部署是随机生成一个密码串,存储于
-`{LINKIS_HOME}/conf/linkis-mg-gateway.properties`(>=1.0.3版本)
+`${LINKIS_HOME}/conf/linkis-mg-gateway.properties`(>=1.0.3版本)
 
 ### 8.4 版本兼容性问题
 
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.3.0/development/debug.md 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.3.0/development/debug.md
index fd0f41c516..ae794da730 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.3.0/development/debug.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.3.0/development/debug.md
@@ -193,7 +193,7 @@ org.apache.linkis.filesystem.LinkisPublicServiceApp
 需要把公共依赖的模块加到linkis-public-enhancements模块的classpath下,修改pes的pom增加以下依赖:
 linkis-public-enhancements/pom.xml
 ```xml
- <dependency>
+    <dependency>
       <groupId>org.apache.linkis</groupId>
       <artifactId>linkis-dist</artifactId>
       <version>${project.version}</version>
@@ -203,7 +203,7 @@ linkis-public-enhancements/pom.xml
       <groupId>mysql</groupId>
       <artifactId>mysql-connector-java</artifactId>
       <version>${mysql.connector.version}</version>
-</dependency>
+    </dependency>
 
 ```
 
@@ -285,7 +285,7 @@ 
org.apache.linkis.engineplugin.server.LinkisEngineConnPluginServer
 需要把公共依赖的模块加到ecp模块的classpath下,修改pes的pom增加以下依赖:
 
linkis-computation-governance/linkis-engineconn/linkis-engineconn-plugin-server/pom.xml
 ```xml
- <dependency>
+    <dependency>
       <groupId>org.apache.linkis</groupId>
       <artifactId>linkis-dist</artifactId>
       <version>${project.version}</version>
@@ -295,7 +295,7 @@ 
linkis-computation-governance/linkis-engineconn/linkis-engineconn-plugin-server/
       <groupId>mysql</groupId>
       <artifactId>mysql-connector-java</artifactId>
       <version>${mysql.connector.version}</version>
-</dependency>
+    </dependency>
 
 ```
 
@@ -505,7 +505,7 @@ GET 
http://127.0.0.1:9001/api/rest_j/v1/filesystem/openFile?path=file:///Users/l
 sh linkis-daemon.sh restart ps-publicservice
 ```
 
-(如果不确定服务名称,在 {LINKIS_HOME}/sbin/linkis-start-all.sh 内查询)
+(如果不确定服务名称,在 ${LINKIS_HOME}/sbin/linkis-start-all.sh 内查询)
 
 ### 4.4 编译器配置远程调试
 
diff --git a/versioned_docs/version-1.0.3/deployment/quick-deploy.md 
b/versioned_docs/version-1.0.3/deployment/quick-deploy.md
index 057e7894bf..6a502d8b5a 100644
--- a/versioned_docs/version-1.0.3/deployment/quick-deploy.md
+++ b/versioned_docs/version-1.0.3/deployment/quick-deploy.md
@@ -237,8 +237,8 @@ To download the mysql driver, take version 5.1.49 as an 
example: [download link]
 
 Copy the mysql driver package to the lib package path
 ```
-cp mysql-connector-java-5.1.49.jar 
{LINKIS_HOME}/lib/linkis-spring-cloud-services/linkis-mg-gateway/
-cp mysql-connector-java-5.1.49.jar 
{LINKIS_HOME}/lib/linkis-commons/public-module/
+cp mysql-connector-java-5.1.49.jar 
${LINKIS_HOME}/lib/linkis-spring-cloud-services/linkis-mg-gateway/
+cp mysql-connector-java-5.1.49.jar 
${LINKIS_HOME}/lib/linkis-commons/public-module/
 ```
 
 ### 5. Linkis quick startup
diff --git a/versioned_docs/version-1.1.0/deployment/quick-deploy.md 
b/versioned_docs/version-1.1.0/deployment/quick-deploy.md
index 057e7894bf..6a502d8b5a 100644
--- a/versioned_docs/version-1.1.0/deployment/quick-deploy.md
+++ b/versioned_docs/version-1.1.0/deployment/quick-deploy.md
@@ -237,8 +237,8 @@ To download the mysql driver, take version 5.1.49 as an 
example: [download link]
 
 Copy the mysql driver package to the lib package path
 ```
-cp mysql-connector-java-5.1.49.jar 
{LINKIS_HOME}/lib/linkis-spring-cloud-services/linkis-mg-gateway/
-cp mysql-connector-java-5.1.49.jar 
{LINKIS_HOME}/lib/linkis-commons/public-module/
+cp mysql-connector-java-5.1.49.jar 
${LINKIS_HOME}/lib/linkis-spring-cloud-services/linkis-mg-gateway/
+cp mysql-connector-java-5.1.49.jar 
${LINKIS_HOME}/lib/linkis-commons/public-module/
 ```
 
 ### 5. Linkis quick startup
diff --git a/versioned_docs/version-1.1.0/development/linkis-debug.md 
b/versioned_docs/version-1.1.0/development/linkis-debug.md
index b85fe40f83..23f61ee5f2 100644
--- a/versioned_docs/version-1.1.0/development/linkis-debug.md
+++ b/versioned_docs/version-1.1.0/development/linkis-debug.md
@@ -487,7 +487,7 @@ GET 
http://127.0.0.1:9001/api/rest_j/v1/filesystem/openFile?path=file:///Users/l
 
 Identify the service where the package that needs to be debugged is located, 
and determine the service to which it belongs according to the location of the 
code to be debugged
 
-### 4.2 Enter {LINKIS_HOME}/sbin/ext, modify the module configuration file to 
open the remote call port
+### 4.2 Enter ${LINKIS_HOME}/sbin/ext, modify the module configuration file to 
open the remote call port
 
![c-port](https://user-images.githubusercontent.com/29391030/167364775-4f5d2774-b6b9-4a65-b69c-69319db870c4.png)
 
 ### 4.3 Restart the service that needs to be debugged
@@ -496,7 +496,7 @@ Identify the service where the package that needs to be 
debugged is located, and
 sh linkis-daemon.sh restart ps-publicservice
 ````
 
-(If you are not sure about the service name, check in 
{LINKIS_HOME}/sbin/linkis-start-all.sh )
+(If you are not sure about the service name, check in 
${LINKIS_HOME}/sbin/linkis-start-all.sh )
 
 ### 4.4 Compiler configuration remote debugging
 
diff --git a/versioned_docs/version-1.1.1/deployment/quick-deploy.md 
b/versioned_docs/version-1.1.1/deployment/quick-deploy.md
index a0837e3057..f52c206bbc 100644
--- a/versioned_docs/version-1.1.1/deployment/quick-deploy.md
+++ b/versioned_docs/version-1.1.1/deployment/quick-deploy.md
@@ -156,7 +156,7 @@ SPARK_CONF_DIR=/appcom/config/spark-config
 #### LDAP login configuration (optional)
 
 :::caution note
-The default is to use a static user and password. The static user is the 
deployment user. The static password will generate a random password string 
during deployment and store it in 
`{LINKIS_HOME}/conf/linkis-mg-gateway.properties`(>=1.0.3 Version)
+The default is to use a static user and password. The static user is the 
deployment user. The static password will generate a random password string 
during deployment and store it in 
`${LINKIS_HOME}/conf/linkis-mg-gateway.properties`(>=1.0.3 Version)
 :::
 
 
@@ -238,8 +238,8 @@ To download the mysql driver, take version 5.1.49 as an 
example: [download link]
 
 Copy the mysql driver package to the lib package
 ````
-cp mysql-connector-java-5.1.49.jar 
{LINKIS_HOME}/lib/linkis-spring-cloud-services/linkis-mg-gateway/
-cp mysql-connector-java-5.1.49.jar 
{LINKIS_HOME}/lib/linkis-commons/public-module/
+cp mysql-connector-java-5.1.49.jar 
${LINKIS_HOME}/lib/linkis-spring-cloud-services/linkis-mg-gateway/
+cp mysql-connector-java-5.1.49.jar 
${LINKIS_HOME}/lib/linkis-commons/public-module/
 ````
 
 ### 3.3 Configuration Adjustment (Optional)
@@ -381,7 +381,7 @@ If you need to modify the port or static resource 
directory, etc., please modify
 ### 4.4 Login to the console
 
 Browser login `http://xx.xx.xx.xx:8188/#/login`
-Username/password can be found in 
`{LINKIS_HOME}/conf/linkis-mg-gateway.properties`
+Username/password can be found in 
`${LINKIS_HOME}/conf/linkis-mg-gateway.properties`
 ```shell script
 wds.linkis.admin.user= #User
 wds.linkis.admin.password= #Password
@@ -541,7 +541,7 @@ hdfs dfs -chown hadoop:hadoop/apps-data
 ### 8.3 Login password problem
 
 By default, linkis uses a static user and password. The static user is the 
deployment user. The static password will randomly generate a password string 
during deployment and store it in
-`{LINKIS_HOME}/conf/linkis-mg-gateway.properties` (>=1.0.3 version)
+`${LINKIS_HOME}/conf/linkis-mg-gateway.properties` (>=1.0.3 version)
 
 ### 8.4 version compatibility issues
 
diff --git a/versioned_docs/version-1.1.1/development/linkis-debug.md 
b/versioned_docs/version-1.1.1/development/linkis-debug.md
index b85fe40f83..23f61ee5f2 100644
--- a/versioned_docs/version-1.1.1/development/linkis-debug.md
+++ b/versioned_docs/version-1.1.1/development/linkis-debug.md
@@ -487,7 +487,7 @@ GET 
http://127.0.0.1:9001/api/rest_j/v1/filesystem/openFile?path=file:///Users/l
 
 Identify the service where the package that needs to be debugged is located, 
and determine the service to which it belongs according to the location of the 
code to be debugged
 
-### 4.2 Enter {LINKIS_HOME}/sbin/ext, modify the module configuration file to 
open the remote call port
+### 4.2 Enter ${LINKIS_HOME}/sbin/ext, modify the module configuration file to 
open the remote call port
 
![c-port](https://user-images.githubusercontent.com/29391030/167364775-4f5d2774-b6b9-4a65-b69c-69319db870c4.png)
 
 ### 4.3 Restart the service that needs to be debugged
@@ -496,7 +496,7 @@ Identify the service where the package that needs to be 
debugged is located, and
 sh linkis-daemon.sh restart ps-publicservice
 ````
 
-(If you are not sure about the service name, check in 
{LINKIS_HOME}/sbin/linkis-start-all.sh )
+(If you are not sure about the service name, check in 
${LINKIS_HOME}/sbin/linkis-start-all.sh )
 
 ### 4.4 Compiler configuration remote debugging
 
diff --git a/versioned_docs/version-1.1.2/deployment/quick-deploy.md 
b/versioned_docs/version-1.1.2/deployment/quick-deploy.md
index 46c2bb7108..3eb6eeeb97 100644
--- a/versioned_docs/version-1.1.2/deployment/quick-deploy.md
+++ b/versioned_docs/version-1.1.2/deployment/quick-deploy.md
@@ -156,7 +156,7 @@ SPARK_CONF_DIR=/appcom/config/spark-config
 #### LDAP login configuration (optional)
 
 :::caution note
-The default is to use a static user and password. The static user is the 
deployment user. The static password will generate a random password string 
during deployment and store it in 
`{LINKIS_HOME}/conf/linkis-mg-gateway.properties`(>=1.0.3 Version)
+The default is to use a static user and password. The static user is the 
deployment user. The static password will generate a random password string 
during deployment and store it in 
`${LINKIS_HOME}/conf/linkis-mg-gateway.properties`(>=1.0.3 Version)
 :::
 
 
@@ -238,8 +238,8 @@ To download the mysql driver, take version 5.1.49 as an 
example: [download link]
 
 Copy the mysql driver package to the lib package
 ````
-cp mysql-connector-java-5.1.49.jar 
{LINKIS_HOME}/lib/linkis-spring-cloud-services/linkis-mg-gateway/
-cp mysql-connector-java-5.1.49.jar 
{LINKIS_HOME}/lib/linkis-commons/public-module/
+cp mysql-connector-java-5.1.49.jar 
${LINKIS_HOME}/lib/linkis-spring-cloud-services/linkis-mg-gateway/
+cp mysql-connector-java-5.1.49.jar 
${LINKIS_HOME}/lib/linkis-commons/public-module/
 ````
 
 ### 3.3 Configuration Adjustment (Optional)
@@ -381,7 +381,7 @@ If you need to modify the port or static resource 
directory, etc., please modify
 ### 4.4 Login to the console
 
 Browser login `http://xx.xx.xx.xx:8188/#/login`
-Username/password can be found in 
`{LINKIS_HOME}/conf/linkis-mg-gateway.properties`
+Username/password can be found in 
`${LINKIS_HOME}/conf/linkis-mg-gateway.properties`
 ```shell script
 wds.linkis.admin.user= #User
 wds.linkis.admin.password= #Password
@@ -541,7 +541,7 @@ hdfs dfs -chown hadoop:hadoop/apps-data
 ### 8.3 Login password problem
 
 By default, linkis uses a static user and password. The static user is the 
deployment user. The static password will randomly generate a password string 
during deployment and store it in
-`{LINKIS_HOME}/conf/linkis-mg-gateway.properties` (>=1.0.3 version)
+`${LINKIS_HOME}/conf/linkis-mg-gateway.properties` (>=1.0.3 version)
 
 ### 8.4 version compatibility issues
 
diff --git a/versioned_docs/version-1.1.2/development/linkis-debug.md 
b/versioned_docs/version-1.1.2/development/linkis-debug.md
index b85fe40f83..23f61ee5f2 100644
--- a/versioned_docs/version-1.1.2/development/linkis-debug.md
+++ b/versioned_docs/version-1.1.2/development/linkis-debug.md
@@ -487,7 +487,7 @@ GET 
http://127.0.0.1:9001/api/rest_j/v1/filesystem/openFile?path=file:///Users/l
 
 Identify the service where the package that needs to be debugged is located, 
and determine the service to which it belongs according to the location of the 
code to be debugged
 
-### 4.2 Enter {LINKIS_HOME}/sbin/ext, modify the module configuration file to 
open the remote call port
+### 4.2 Enter ${LINKIS_HOME}/sbin/ext, modify the module configuration file to 
open the remote call port
 
![c-port](https://user-images.githubusercontent.com/29391030/167364775-4f5d2774-b6b9-4a65-b69c-69319db870c4.png)
 
 ### 4.3 Restart the service that needs to be debugged
@@ -496,7 +496,7 @@ Identify the service where the package that needs to be 
debugged is located, and
 sh linkis-daemon.sh restart ps-publicservice
 ````
 
-(If you are not sure about the service name, check in 
{LINKIS_HOME}/sbin/linkis-start-all.sh )
+(If you are not sure about the service name, check in 
${LINKIS_HOME}/sbin/linkis-start-all.sh )
 
 ### 4.4 Compiler configuration remote debugging
 
diff --git a/versioned_docs/version-1.1.3/deployment/quick-deploy.md 
b/versioned_docs/version-1.1.3/deployment/quick-deploy.md
index 8c63888af4..0553b56400 100644
--- a/versioned_docs/version-1.1.3/deployment/quick-deploy.md
+++ b/versioned_docs/version-1.1.3/deployment/quick-deploy.md
@@ -156,7 +156,7 @@ SPARK_CONF_DIR=/appcom/config/spark-config
 #### LDAP login configuration (optional)
 
 :::caution note
-The default is to use a static user and password. The static user is the 
deployment user. The static password will generate a random password string 
during deployment and store it in 
`{LINKIS_HOME}/conf/linkis-mg-gateway.properties`(>=1.0.3 Version)
+The default is to use a static user and password. The static user is the 
deployment user. The static password will generate a random password string 
during deployment and store it in 
`${LINKIS_HOME}/conf/linkis-mg-gateway.properties`(>=1.0.3 Version)
 :::
 
 
@@ -237,8 +237,8 @@ Because the mysql-connector-java driver is under the GPL2.0 
protocol, it does no
 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)
 Copy the mysql driver package to the lib package
 ````
-cp mysql-connector-java-5.1.49.jar 
{LINKIS_HOME}/lib/linkis-spring-cloud-services/linkis-mg-gateway/
-cp mysql-connector-java-5.1.49.jar 
{LINKIS_HOME}/lib/linkis-commons/public-module/
+cp mysql-connector-java-5.1.49.jar 
${LINKIS_HOME}/lib/linkis-spring-cloud-services/linkis-mg-gateway/
+cp mysql-connector-java-5.1.49.jar 
${LINKIS_HOME}/lib/linkis-commons/public-module/
 ````
 
 ### 3.3 Configuration Adjustment (Optional)
@@ -380,7 +380,7 @@ If you need to modify the port or static resource 
directory, etc., please modify
 ### 4.4 Login to the console
 
 Browser login `http://xx.xx.xx.xx:8188/#/login`
-Username/password can be found in 
`{LINKIS_HOME}/conf/linkis-mg-gateway.properties`
+Username/password can be found in 
`${LINKIS_HOME}/conf/linkis-mg-gateway.properties`
 ```shell script
 wds.linkis.admin.user= #User
 wds.linkis.admin.password= #Password
@@ -540,7 +540,7 @@ hdfs dfs -chown hadoop:hadoop/apps-data
 ### 8.3 Login password problem
 
 By default, linkis uses a static user and password. The static user is the 
deployment user. The static password will randomly generate a password string 
during deployment and store it in
-`{LINKIS_HOME}/conf/linkis-mg-gateway.properties` (>=1.0.3 version)
+`${LINKIS_HOME}/conf/linkis-mg-gateway.properties` (>=1.0.3 version)
 
 ### 8.4 version compatibility issues
 
diff --git a/versioned_docs/version-1.1.3/development/linkis-debug.md 
b/versioned_docs/version-1.1.3/development/linkis-debug.md
index b85fe40f83..23f61ee5f2 100644
--- a/versioned_docs/version-1.1.3/development/linkis-debug.md
+++ b/versioned_docs/version-1.1.3/development/linkis-debug.md
@@ -487,7 +487,7 @@ GET 
http://127.0.0.1:9001/api/rest_j/v1/filesystem/openFile?path=file:///Users/l
 
 Identify the service where the package that needs to be debugged is located, 
and determine the service to which it belongs according to the location of the 
code to be debugged
 
-### 4.2 Enter {LINKIS_HOME}/sbin/ext, modify the module configuration file to 
open the remote call port
+### 4.2 Enter ${LINKIS_HOME}/sbin/ext, modify the module configuration file to 
open the remote call port
 
![c-port](https://user-images.githubusercontent.com/29391030/167364775-4f5d2774-b6b9-4a65-b69c-69319db870c4.png)
 
 ### 4.3 Restart the service that needs to be debugged
@@ -496,7 +496,7 @@ Identify the service where the package that needs to be 
debugged is located, and
 sh linkis-daemon.sh restart ps-publicservice
 ````
 
-(If you are not sure about the service name, check in 
{LINKIS_HOME}/sbin/linkis-start-all.sh )
+(If you are not sure about the service name, check in 
${LINKIS_HOME}/sbin/linkis-start-all.sh )
 
 ### 4.4 Compiler configuration remote debugging
 
diff --git a/versioned_docs/version-1.2.0/deployment/quick-deploy.md 
b/versioned_docs/version-1.2.0/deployment/quick-deploy.md
index 025723f1ef..8be778cf72 100644
--- a/versioned_docs/version-1.2.0/deployment/quick-deploy.md
+++ b/versioned_docs/version-1.2.0/deployment/quick-deploy.md
@@ -156,7 +156,7 @@ SPARK_CONF_DIR=/appcom/config/spark-config
 #### LDAP login configuration (optional)
 
 :::caution note
-The default is to use a static user and password. The static user is the 
deployment user. The static password will generate a random password string 
during deployment and store it in 
`{LINKIS_HOME}/conf/linkis-mg-gateway.properties`(>=1.0.3 Version)
+The default is to use a static user and password. The static user is the 
deployment user. The static password will generate a random password string 
during deployment and store it in 
`${LINKIS_HOME}/conf/linkis-mg-gateway.properties`(>=1.0.3 Version)
 :::
 
 
@@ -238,8 +238,8 @@ To download the mysql driver, take version 5.1.49 as an 
example: [download link]
 
 Copy the mysql driver package to the lib package
 ````
-cp mysql-connector-java-5.1.49.jar 
{LINKIS_HOME}/lib/linkis-spring-cloud-services/linkis-mg-gateway/
-cp mysql-connector-java-5.1.49.jar 
{LINKIS_HOME}/lib/linkis-commons/public-module/
+cp mysql-connector-java-5.1.49.jar 
${LINKIS_HOME}/lib/linkis-spring-cloud-services/linkis-mg-gateway/
+cp mysql-connector-java-5.1.49.jar 
${LINKIS_HOME}/lib/linkis-commons/public-module/
 ````
 
 ### 3.3 Configuration Adjustment (Optional)
@@ -381,7 +381,7 @@ If you need to modify the port or static resource 
directory, etc., please modify
 ### 4.4 Login to the console
 
 Browser login `http://xx.xx.xx.xx:8188/#/login`
-Username/password can be found in 
`{LINKIS_HOME}/conf/linkis-mg-gateway.properties`
+Username/password can be found in 
`${LINKIS_HOME}/conf/linkis-mg-gateway.properties`
 ```shell script
 wds.linkis.admin.user= #User
 wds.linkis.admin.password= #Password
@@ -541,7 +541,7 @@ hdfs dfs -chown hadoop:hadoop/apps-data
 ### 8.3 Login password problem
 
 By default, linkis uses a static user and password. The static user is the 
deployment user. The static password will randomly generate a password string 
during deployment and store it in
-`{LINKIS_HOME}/conf/linkis-mg-gateway.properties` (>=1.0.3 version)
+`${LINKIS_HOME}/conf/linkis-mg-gateway.properties` (>=1.0.3 version)
 
 ### 8.4 version compatibility issues
 
diff --git a/versioned_docs/version-1.2.0/development/linkis-debug.md 
b/versioned_docs/version-1.2.0/development/linkis-debug.md
index 7ed83f89c5..50c3c78bce 100644
--- a/versioned_docs/version-1.2.0/development/linkis-debug.md
+++ b/versioned_docs/version-1.2.0/development/linkis-debug.md
@@ -493,7 +493,7 @@ GET 
http://127.0.0.1:9001/api/rest_j/v1/filesystem/openFile?path=file:///Users/l
 
 Identify the service where the package that needs to be debugged is located, 
and determine the service to which it belongs according to the location of the 
code to be debugged
 
-### 4.2 Enter {LINKIS_HOME}/sbin/ext, modify the module configuration file to 
open the remote call port
+### 4.2 Enter ${LINKIS_HOME}/sbin/ext, modify the module configuration file to 
open the remote call port
 
![c-port](https://user-images.githubusercontent.com/29391030/167364775-4f5d2774-b6b9-4a65-b69c-69319db870c4.png)
 
 ### 4.3 Restart the service that needs to be debugged
@@ -502,7 +502,7 @@ Identify the service where the package that needs to be 
debugged is located, and
 sh linkis-daemon.sh restart ps-publicservice
 ````
 
-(If you are not sure about the service name, check in 
{LINKIS_HOME}/sbin/linkis-start-all.sh )
+(If you are not sure about the service name, check in 
${LINKIS_HOME}/sbin/linkis-start-all.sh )
 
 ### 4.4 Compiler configuration remote debugging
 
diff --git a/versioned_docs/version-1.3.0/deployment/deploy-quick.md 
b/versioned_docs/version-1.3.0/deployment/deploy-quick.md
index bde787067e..2c93d25aa1 100644
--- a/versioned_docs/version-1.3.0/deployment/deploy-quick.md
+++ b/versioned_docs/version-1.3.0/deployment/deploy-quick.md
@@ -157,7 +157,7 @@ SPARK_CONF_DIR=/appcom/config/spark-config
 #### LDAP login configuration (optional)
 
 :::caution note
-The default is to use a static user and password. The static user is the 
deployment user. The static password will generate a random password string 
during deployment and store it in 
`{LINKIS_HOME}/conf/linkis-mg-gateway.properties`(>=1.0.3 Version)
+The default is to use a static user and password. The static user is the 
deployment user. The static password will generate a random password string 
during deployment and store it in 
`${LINKIS_HOME}/conf/linkis-mg-gateway.properties`(>=1.0.3 Version)
 :::
 
 
@@ -239,8 +239,8 @@ To download the mysql driver, take version 5.1.49 as an 
example: [download link]
 
 Copy the mysql driver package to the lib package
 ````
-cp mysql-connector-java-5.1.49.jar 
{LINKIS_HOME}/lib/linkis-spring-cloud-services/linkis-mg-gateway/
-cp mysql-connector-java-5.1.49.jar 
{LINKIS_HOME}/lib/linkis-commons/public-module/
+cp mysql-connector-java-5.1.49.jar 
${LINKIS_HOME}/lib/linkis-spring-cloud-services/linkis-mg-gateway/
+cp mysql-connector-java-5.1.49.jar 
${LINKIS_HOME}/lib/linkis-commons/public-module/
 ````
 
 ### 3.3 Configuration Adjustment (Optional)
@@ -382,7 +382,7 @@ If you need to modify the port or static resource 
directory, etc., please modify
 ### 4.4 Login to the console
 
 Browser login `http://xx.xx.xx.xx:8188/#/login`
-Username/password can be found in 
`{LINKIS_HOME}/conf/linkis-mg-gateway.properties`
+Username/password can be found in 
`${LINKIS_HOME}/conf/linkis-mg-gateway.properties`
 ```shell script
 wds.linkis.admin.user= #User
 wds.linkis.admin.password= #Password
@@ -542,7 +542,7 @@ hdfs dfs -chown hadoop:hadoop/apps-data
 ### 8.3 Login password problem
 
 By default, linkis uses a static user and password. The static user is the 
deployment user. The static password will randomly generate a password string 
during deployment and store it in
-`{LINKIS_HOME}/conf/linkis-mg-gateway.properties` (>=1.0.3 version)
+`${LINKIS_HOME}/conf/linkis-mg-gateway.properties` (>=1.0.3 version)
 
 ### 8.4 version compatibility issues
 
diff --git a/versioned_docs/version-1.3.0/development/debug.md 
b/versioned_docs/version-1.3.0/development/debug.md
index 6f67e7d098..6194d49cf2 100644
--- a/versioned_docs/version-1.3.0/development/debug.md
+++ b/versioned_docs/version-1.3.0/development/debug.md
@@ -493,7 +493,7 @@ GET 
http://127.0.0.1:9001/api/rest_j/v1/filesystem/openFile?path=file:///Users/l
 
 Identify the service where the package that needs to be debugged is located, 
and determine the service to which it belongs according to the location of the 
code to be debugged
 
-### 4.2 Enter {LINKIS_HOME}/sbin/ext, modify the module configuration file to 
open the remote call port
+### 4.2 Enter ${LINKIS_HOME}/sbin/ext, modify the module configuration file to 
open the remote call port
 ![c-port](images/c-port.png)
 
 ### 4.3 Restart the service that needs to be debugged
@@ -502,7 +502,7 @@ Identify the service where the package that needs to be 
debugged is located, and
 sh linkis-daemon.sh restart ps-publicservice
 ````
 
-(If you are not sure about the service name, check in 
{LINKIS_HOME}/sbin/linkis-start-all.sh )
+(If you are not sure about the service name, check in 
${LINKIS_HOME}/sbin/linkis-start-all.sh )
 
 ### 4.4 Compiler configuration remote debugging
 


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

Reply via email to