correct linkis home (#647)
diff --git a/docs/deployment/deploy-quick.md b/docs/deployment/deploy-quick.md
index 887665b..1d5cd31 100644
--- a/docs/deployment/deploy-quick.md
+++ b/docs/deployment/deploy-quick.md
@@ -157,7 +157,7 @@
#### 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 @@
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 @@
### 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 @@
### 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 580339b..e7aa205 100644
--- a/docs/development/debug.md
+++ b/docs/development/debug.md
@@ -284,7 +284,7 @@
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 @@
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>${mysql.connector.version}</version>
-</dependency>
+ </dependency>
````
@@ -492,7 +492,7 @@
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

### 4.3 Restart the service that needs to be debugged
@@ -501,7 +501,7 @@
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 62e389f..3d1f321 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 @@
浏览器访问`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 75052b2..0f1c003 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 @@
#### 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 @@
拷贝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 @@
### 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 @@
### 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 721ff64..4760ad4 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 @@
需要把公共依赖的模块加到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 @@
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>${mysql.connector.version}</version>
-</dependency>
+ </dependency>
```
@@ -285,7 +285,7 @@
需要把公共依赖的模块加到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 @@
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>${mysql.connector.version}</version>
-</dependency>
+ </dependency>
```
@@ -505,7 +505,7 @@
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 5b5b290..502a056 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 @@
拷贝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 5b5b290..502a056 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 @@
拷贝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 4ca6823..a2e9999 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 @@
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 50e878b..0accd79 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 @@
#### 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 @@
拷贝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 @@
### 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 @@
### 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 ca831bb..0c25504 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 @@
浏览器访问`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 bf90cec..c901b1f 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 @@
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 c60e7e9..a964a47 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 @@
#### 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 @@
拷贝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 @@
### 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 @@
### 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 ca831bb..0c25504 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 @@
浏览器访问`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 4ca6823..a2e9999 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 @@
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 806d9bc..7e3af2e 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 @@
#### 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 @@
拷贝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 @@
### 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 @@
### 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 3b53018..e7557cf 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 @@
浏览器访问`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 4ca6823..a2e9999 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 @@
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 a7780cd..6ed9dc7 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 @@
#### 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 @@
拷贝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 @@
### 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 @@
### 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 3b53018..e7557cf 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 @@
浏览器访问`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 68add29..3fa31c4 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 @@
需要把公共依赖的模块加到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 @@
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>${mysql.connector.version}</version>
-</dependency>
+ </dependency>
```
@@ -284,7 +284,7 @@
需要把公共依赖的模块加到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 @@
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>${mysql.connector.version}</version>
-</dependency>
+ </dependency>
```
@@ -504,7 +504,7 @@
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 5214094..675e9ca 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 @@
浏览器访问`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 8ecbf75..cd0b88c 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 @@
#### 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 @@
拷贝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 @@
### 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 @@
### 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 fd0f41c..ae794da 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 @@
需要把公共依赖的模块加到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 @@
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>${mysql.connector.version}</version>
-</dependency>
+ </dependency>
```
@@ -285,7 +285,7 @@
需要把公共依赖的模块加到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 @@
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>${mysql.connector.version}</version>
-</dependency>
+ </dependency>
```
@@ -505,7 +505,7 @@
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 057e789..6a502d8 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 @@
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 057e789..6a502d8 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 @@
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 b85fe40..23f61ee 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 @@
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

### 4.3 Restart the service that needs to be debugged
@@ -496,7 +496,7 @@
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 a0837e3..f52c206 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 @@
#### 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 @@
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 @@
### 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 @@
### 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 b85fe40..23f61ee 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 @@
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

### 4.3 Restart the service that needs to be debugged
@@ -496,7 +496,7 @@
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 46c2bb7..3eb6eee 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 @@
#### 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 @@
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 @@
### 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 @@
### 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 b85fe40..23f61ee 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 @@
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

### 4.3 Restart the service that needs to be debugged
@@ -496,7 +496,7 @@
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 8c63888..0553b56 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 @@
#### 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 @@
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 @@
### 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 @@
### 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 b85fe40..23f61ee 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 @@
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

### 4.3 Restart the service that needs to be debugged
@@ -496,7 +496,7 @@
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 025723f..8be778c 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 @@
#### 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 @@
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 @@
### 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 @@
### 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 7ed83f8..50c3c78 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 @@
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

### 4.3 Restart the service that needs to be debugged
@@ -502,7 +502,7 @@
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 bde7870..2c93d25 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 @@
#### 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 @@
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 @@
### 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 @@
### 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 6f67e7d..6194d49 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 @@
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

### 4.3 Restart the service that needs to be debugged
@@ -502,7 +502,7 @@
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