This is an automated email from the ASF dual-hosted git repository.
xiaoyu pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/shenyu-website.git
The following commit(s) were added to refs/heads/main by this push:
new 1120cace85 [type:fix] fixes documentation (#755)
1120cace85 is described below
commit 1120cace855a52c5d80947fc453dbfd3d8cf8b7b
Author: moremind <[email protected]>
AuthorDate: Thu Sep 22 00:08:15 2022 +0800
[type:fix] fixes documentation (#755)
---
docs/deployment/deployment-before.md | 20 ++++++++++++++++
.../current/deployment/deployment-before.md | 22 +++++++++++++++++
.../version-2.4.3/deployment/deployment-before.md | 22 +++++++++++++++++
.../version-2.5.0/deployment/deployment-before.md | 22 +++++++++++++++++
.../version-2.4.3/deployment/deployment-before.md | 28 ++++++++++++++++++----
.../version-2.5.0/deployment/deployment-before.md | 20 ++++++++++++++++
6 files changed, 130 insertions(+), 4 deletions(-)
diff --git a/docs/deployment/deployment-before.md
b/docs/deployment/deployment-before.md
index 3f4bc71b8b..0276b66780 100644
--- a/docs/deployment/deployment-before.md
+++ b/docs/deployment/deployment-before.md
@@ -15,11 +15,31 @@ Before deploying the `Shenyu-admin` project, initialize the
database it uses (da
In [the mysql initialization scripts
directory](https://github.com/apache/shenyu/tree/master/db/init/mysql) found in
the initialization script `schema.sql`, Use the client connection tool to
connect to your Mysql service and execute, so you get a database named
`shenyu`, which can later be used as the database for the `Shenyu-admin`
project.
+* sql script: https://github.com/apache/shenyu/tree/master/db/init/mysql
+
+* driver:
+
+ * maven repository:
https://repo1.maven.org/maven2/mysql/mysql-connector-java/8.0.30/
+ * homepage: https://www.mysql.com/products/connector/
+
### PostgreSql
In [the pg initialization scripts
directory](https://github.com/apache/shenyu/tree/master/db/init/pg) found in
the initialization script `create-database.sql`、 `create-table.sql`, and use
the client connection tool to connect to your PostgreSql service. so you get a
database named `shenyu`, which can later be used as a database for the
`Shenyu-admin` project.
+* sql script: https://github.com/apache/shenyu/tree/master/db/init/pg
+
+* driver:
+
+ * maven repository:
https://mvnrepository.com/artifact/org.postgresql/postgresql/42.5.0
+ * homepage: https://jdbc.postgresql.org/download/
+
### Oracle
In [the oracle initialization scripts
directory](https://github.com/apache/shenyu/blob/master/db/init/oracle) found
in the initialization script `schema.sql`, Use the client connection tool to
connect to your Oracle service to create a database, execute the `schema.sql`
script on this database, and initialize the `Shenyu-admin` database. After can
be [project configuration
file](https://github.com/apache/shenyu/blob/master/shenyu-admin/src/main/resources/application-oracle.yml)
to adjust [...]
+* sql script: https://github.com/apache/shenyu/blob/master/db/init/oracle
+
+* driver:
+
+ * maven repository:
https://mvnrepository.com/artifact/com.oracle.database.jdbc/ojdbc8/19.3.0.0
+ * homepage:
https://www.oracle.com/database/technologies/appdev/jdbc-downloads.html
diff --git
a/i18n/zh/docusaurus-plugin-content-docs/current/deployment/deployment-before.md
b/i18n/zh/docusaurus-plugin-content-docs/current/deployment/deployment-before.md
index f8c47d3b88..1a12f986b5 100644
---
a/i18n/zh/docusaurus-plugin-content-docs/current/deployment/deployment-before.md
+++
b/i18n/zh/docusaurus-plugin-content-docs/current/deployment/deployment-before.md
@@ -15,10 +15,32 @@ description: 部署先决条件
在[项目mysql初始化脚本目录](https://github.com/apache/incubator-shenyu/tree/master/db/init/mysql)
中找到初始化脚本`schema.sql`, 使用客户端连接工具连接您的Mysql服务并执行, 由此您会得到一个名为`shenyu`的数据库,
它之后可作为`shenyu-admin`项目的数据库使用.
+* sql脚本: https://github.com/apache/shenyu/tree/master/db/init/mysql
+
+* 驱动:
+
+ * maven repository:
https://repo1.maven.org/maven2/mysql/mysql-connector-java/8.0.30/
+ * homepage: https://www.mysql.com/products/connector/
+
### PostgreSql
在[项目pg初始化脚本目录](https://github.com/apache/incubator-shenyu/tree/master/db/init/pg)
中找到初始化脚本`create-database.sql`、`create-table.sql`,
并使用客户端连接工具连接您的PostgreSql服务依次执行,由此您会得到一个名为shenyu的数据库,
它之后可作为`shenyu-admin`项目的数据库使用.
+* sql脚本: https://github.com/apache/shenyu/tree/master/db/init/pg
+
+* 驱动:
+
+ * maven repository:
https://mvnrepository.com/artifact/org.postgresql/postgresql/42.5.0
+ * homepage: https://jdbc.postgresql.org/download/
+
### Oracle
在[项目oracle初始化脚本目录](https://github.com/apache/incubator-shenyu/blob/master/db/init/oracle)
中找到初始化脚本`schema.sql`, 使用客户端连接工具连接您的Oracle服务创建一个数据库, 在此数据库上执行`schema.sql`脚本,
由此您便初始化了`shenyu-admin`的数据库,
之后可在[项目配置文件](https://github.com/apache/incubator-shenyu/blob/master/shenyu-admin/src/main/resources/application-oracle.yml)
中调整您的oracle环境配置.
+
+* sql脚本: https://github.com/apache/shenyu/blob/master/db/init/oracle
+
+* 驱动:
+
+ * maven repository:
https://mvnrepository.com/artifact/com.oracle.database.jdbc/ojdbc8/19.3.0.0
+ * homepage:
https://www.oracle.com/database/technologies/appdev/jdbc-downloads.html
+
diff --git
a/i18n/zh/docusaurus-plugin-content-docs/version-2.4.3/deployment/deployment-before.md
b/i18n/zh/docusaurus-plugin-content-docs/version-2.4.3/deployment/deployment-before.md
index f8c47d3b88..1a12f986b5 100644
---
a/i18n/zh/docusaurus-plugin-content-docs/version-2.4.3/deployment/deployment-before.md
+++
b/i18n/zh/docusaurus-plugin-content-docs/version-2.4.3/deployment/deployment-before.md
@@ -15,10 +15,32 @@ description: 部署先决条件
在[项目mysql初始化脚本目录](https://github.com/apache/incubator-shenyu/tree/master/db/init/mysql)
中找到初始化脚本`schema.sql`, 使用客户端连接工具连接您的Mysql服务并执行, 由此您会得到一个名为`shenyu`的数据库,
它之后可作为`shenyu-admin`项目的数据库使用.
+* sql脚本: https://github.com/apache/shenyu/tree/master/db/init/mysql
+
+* 驱动:
+
+ * maven repository:
https://repo1.maven.org/maven2/mysql/mysql-connector-java/8.0.30/
+ * homepage: https://www.mysql.com/products/connector/
+
### PostgreSql
在[项目pg初始化脚本目录](https://github.com/apache/incubator-shenyu/tree/master/db/init/pg)
中找到初始化脚本`create-database.sql`、`create-table.sql`,
并使用客户端连接工具连接您的PostgreSql服务依次执行,由此您会得到一个名为shenyu的数据库,
它之后可作为`shenyu-admin`项目的数据库使用.
+* sql脚本: https://github.com/apache/shenyu/tree/master/db/init/pg
+
+* 驱动:
+
+ * maven repository:
https://mvnrepository.com/artifact/org.postgresql/postgresql/42.5.0
+ * homepage: https://jdbc.postgresql.org/download/
+
### Oracle
在[项目oracle初始化脚本目录](https://github.com/apache/incubator-shenyu/blob/master/db/init/oracle)
中找到初始化脚本`schema.sql`, 使用客户端连接工具连接您的Oracle服务创建一个数据库, 在此数据库上执行`schema.sql`脚本,
由此您便初始化了`shenyu-admin`的数据库,
之后可在[项目配置文件](https://github.com/apache/incubator-shenyu/blob/master/shenyu-admin/src/main/resources/application-oracle.yml)
中调整您的oracle环境配置.
+
+* sql脚本: https://github.com/apache/shenyu/blob/master/db/init/oracle
+
+* 驱动:
+
+ * maven repository:
https://mvnrepository.com/artifact/com.oracle.database.jdbc/ojdbc8/19.3.0.0
+ * homepage:
https://www.oracle.com/database/technologies/appdev/jdbc-downloads.html
+
diff --git
a/i18n/zh/docusaurus-plugin-content-docs/version-2.5.0/deployment/deployment-before.md
b/i18n/zh/docusaurus-plugin-content-docs/version-2.5.0/deployment/deployment-before.md
index f8c47d3b88..1a12f986b5 100644
---
a/i18n/zh/docusaurus-plugin-content-docs/version-2.5.0/deployment/deployment-before.md
+++
b/i18n/zh/docusaurus-plugin-content-docs/version-2.5.0/deployment/deployment-before.md
@@ -15,10 +15,32 @@ description: 部署先决条件
在[项目mysql初始化脚本目录](https://github.com/apache/incubator-shenyu/tree/master/db/init/mysql)
中找到初始化脚本`schema.sql`, 使用客户端连接工具连接您的Mysql服务并执行, 由此您会得到一个名为`shenyu`的数据库,
它之后可作为`shenyu-admin`项目的数据库使用.
+* sql脚本: https://github.com/apache/shenyu/tree/master/db/init/mysql
+
+* 驱动:
+
+ * maven repository:
https://repo1.maven.org/maven2/mysql/mysql-connector-java/8.0.30/
+ * homepage: https://www.mysql.com/products/connector/
+
### PostgreSql
在[项目pg初始化脚本目录](https://github.com/apache/incubator-shenyu/tree/master/db/init/pg)
中找到初始化脚本`create-database.sql`、`create-table.sql`,
并使用客户端连接工具连接您的PostgreSql服务依次执行,由此您会得到一个名为shenyu的数据库,
它之后可作为`shenyu-admin`项目的数据库使用.
+* sql脚本: https://github.com/apache/shenyu/tree/master/db/init/pg
+
+* 驱动:
+
+ * maven repository:
https://mvnrepository.com/artifact/org.postgresql/postgresql/42.5.0
+ * homepage: https://jdbc.postgresql.org/download/
+
### Oracle
在[项目oracle初始化脚本目录](https://github.com/apache/incubator-shenyu/blob/master/db/init/oracle)
中找到初始化脚本`schema.sql`, 使用客户端连接工具连接您的Oracle服务创建一个数据库, 在此数据库上执行`schema.sql`脚本,
由此您便初始化了`shenyu-admin`的数据库,
之后可在[项目配置文件](https://github.com/apache/incubator-shenyu/blob/master/shenyu-admin/src/main/resources/application-oracle.yml)
中调整您的oracle环境配置.
+
+* sql脚本: https://github.com/apache/shenyu/blob/master/db/init/oracle
+
+* 驱动:
+
+ * maven repository:
https://mvnrepository.com/artifact/com.oracle.database.jdbc/ojdbc8/19.3.0.0
+ * homepage:
https://www.oracle.com/database/technologies/appdev/jdbc-downloads.html
+
diff --git a/versioned_docs/version-2.4.3/deployment/deployment-before.md
b/versioned_docs/version-2.4.3/deployment/deployment-before.md
index 15cacfa16f..0276b66780 100644
--- a/versioned_docs/version-2.4.3/deployment/deployment-before.md
+++ b/versioned_docs/version-2.4.3/deployment/deployment-before.md
@@ -9,17 +9,37 @@ This article describes some of the prerequisites you need to
prepare before depl
## Database Initialize
-Before deploying the `Shenyu-admin` project, initialize the database it uses
(databases currently support: Mysql, PostgreSql, Oracle), which used the script
files are stored in db directory [project root
directory](https://github.com/apache/incubator-shenyu/tree/master/db), The
following describes the initial steps for each database.
+Before deploying the `Shenyu-admin` project, initialize the database it uses
(databases currently support: Mysql, PostgreSql, Oracle), which used the script
files are stored in db directory [project root
directory](https://github.com/apache/shenyu/tree/master/db), The following
describes the initial steps for each database.
### Mysql
-In [the mysql initialization scripts
directory](https://github.com/apache/incubator-shenyu/tree/master/db/init/mysql)
found in the initialization script `schema.sql`, Use the client connection
tool to connect to your Mysql service and execute, so you get a database named
`shenyu`, which can later be used as the database for the `Shenyu-admin`
project.
+In [the mysql initialization scripts
directory](https://github.com/apache/shenyu/tree/master/db/init/mysql) found in
the initialization script `schema.sql`, Use the client connection tool to
connect to your Mysql service and execute, so you get a database named
`shenyu`, which can later be used as the database for the `Shenyu-admin`
project.
+
+* sql script: https://github.com/apache/shenyu/tree/master/db/init/mysql
+
+* driver:
+
+ * maven repository:
https://repo1.maven.org/maven2/mysql/mysql-connector-java/8.0.30/
+ * homepage: https://www.mysql.com/products/connector/
### PostgreSql
-In [the pg initialization scripts
directory](https://github.com/apache/incubator-shenyu/tree/master/db/init/pg)
found in the initialization script `create-database.sql`、 `create-table.sql`,
and use the client connection tool to connect to your PostgreSql service. so
you get a database named `shenyu`, which can later be used as a database for
the `Shenyu-admin` project.
+In [the pg initialization scripts
directory](https://github.com/apache/shenyu/tree/master/db/init/pg) found in
the initialization script `create-database.sql`、 `create-table.sql`, and use
the client connection tool to connect to your PostgreSql service. so you get a
database named `shenyu`, which can later be used as a database for the
`Shenyu-admin` project.
+
+* sql script: https://github.com/apache/shenyu/tree/master/db/init/pg
+
+* driver:
+
+ * maven repository:
https://mvnrepository.com/artifact/org.postgresql/postgresql/42.5.0
+ * homepage: https://jdbc.postgresql.org/download/
### Oracle
-In [the oracle initialization scripts
directory](https://github.com/apache/incubator-shenyu/blob/master/db/init/oracle)
found in the initialization script `schema.sql`, Use the client connection
tool to connect to your Oracle service to create a database, execute the
`schema.sql` script on this database, and initialize the `Shenyu-admin`
database. After can be [project configuration
file](https://github.com/apache/incubator-shenyu/blob/master/shenyu-admin/src/main/resources/application-o
[...]
+In [the oracle initialization scripts
directory](https://github.com/apache/shenyu/blob/master/db/init/oracle) found
in the initialization script `schema.sql`, Use the client connection tool to
connect to your Oracle service to create a database, execute the `schema.sql`
script on this database, and initialize the `Shenyu-admin` database. After can
be [project configuration
file](https://github.com/apache/shenyu/blob/master/shenyu-admin/src/main/resources/application-oracle.yml)
to adjust [...]
+
+* sql script: https://github.com/apache/shenyu/blob/master/db/init/oracle
+
+* driver:
+ * maven repository:
https://mvnrepository.com/artifact/com.oracle.database.jdbc/ojdbc8/19.3.0.0
+ * homepage:
https://www.oracle.com/database/technologies/appdev/jdbc-downloads.html
diff --git a/versioned_docs/version-2.5.0/deployment/deployment-before.md
b/versioned_docs/version-2.5.0/deployment/deployment-before.md
index 3f4bc71b8b..0276b66780 100644
--- a/versioned_docs/version-2.5.0/deployment/deployment-before.md
+++ b/versioned_docs/version-2.5.0/deployment/deployment-before.md
@@ -15,11 +15,31 @@ Before deploying the `Shenyu-admin` project, initialize the
database it uses (da
In [the mysql initialization scripts
directory](https://github.com/apache/shenyu/tree/master/db/init/mysql) found in
the initialization script `schema.sql`, Use the client connection tool to
connect to your Mysql service and execute, so you get a database named
`shenyu`, which can later be used as the database for the `Shenyu-admin`
project.
+* sql script: https://github.com/apache/shenyu/tree/master/db/init/mysql
+
+* driver:
+
+ * maven repository:
https://repo1.maven.org/maven2/mysql/mysql-connector-java/8.0.30/
+ * homepage: https://www.mysql.com/products/connector/
+
### PostgreSql
In [the pg initialization scripts
directory](https://github.com/apache/shenyu/tree/master/db/init/pg) found in
the initialization script `create-database.sql`、 `create-table.sql`, and use
the client connection tool to connect to your PostgreSql service. so you get a
database named `shenyu`, which can later be used as a database for the
`Shenyu-admin` project.
+* sql script: https://github.com/apache/shenyu/tree/master/db/init/pg
+
+* driver:
+
+ * maven repository:
https://mvnrepository.com/artifact/org.postgresql/postgresql/42.5.0
+ * homepage: https://jdbc.postgresql.org/download/
+
### Oracle
In [the oracle initialization scripts
directory](https://github.com/apache/shenyu/blob/master/db/init/oracle) found
in the initialization script `schema.sql`, Use the client connection tool to
connect to your Oracle service to create a database, execute the `schema.sql`
script on this database, and initialize the `Shenyu-admin` database. After can
be [project configuration
file](https://github.com/apache/shenyu/blob/master/shenyu-admin/src/main/resources/application-oracle.yml)
to adjust [...]
+* sql script: https://github.com/apache/shenyu/blob/master/db/init/oracle
+
+* driver:
+
+ * maven repository:
https://mvnrepository.com/artifact/com.oracle.database.jdbc/ojdbc8/19.3.0.0
+ * homepage:
https://www.oracle.com/database/technologies/appdev/jdbc-downloads.html