You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@seatunnel.apache.org by ga...@apache.org on 2023/04/12 02:51:13 UTC

[incubator-seatunnel-website] branch main updated: [BUG][DOC] Fix some errors in SeaTunnel Deployment (#224)

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

gaojun2048 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-seatunnel-website.git


The following commit(s) were added to refs/heads/main by this push:
     new 82f112d689 [BUG][DOC] Fix some errors in SeaTunnel Deployment (#224)
82f112d689 is described below

commit 82f112d6896499d7ecfbab8fd5fe8d8fdb84c928
Author: David <da...@gmail.com>
AuthorDate: Wed Apr 12 10:51:08 2023 +0800

    [BUG][DOC] Fix some errors in SeaTunnel Deployment (#224)
---
 .../version-2.3.1/start-v2/locally/deployment.md         | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/versioned_docs/version-2.3.1/start-v2/locally/deployment.md b/versioned_docs/version-2.3.1/start-v2/locally/deployment.md
index bd19acf600..297eba5ab6 100644
--- a/versioned_docs/version-2.3.1/start-v2/locally/deployment.md
+++ b/versioned_docs/version-2.3.1/start-v2/locally/deployment.md
@@ -31,36 +31,36 @@ tar -xzvf "apache-seatunnel-incubating-${version}-bin.tar.gz"
 
 ## Step 3: Install connectors plugin
 
-Since 2.2.0-beta, the binary package does not provide connector dependencies by default, so when using it for the first time, we need to execute the following command to install the connector: (Of course, you can also manually download the connector from [Apache Maven Repository](https://repo.maven.apache.org/maven2/org/apache/seatunnel/ to download, then manually move to the seatunnel subdirectory under the connectors directory).
+Since 2.2.0-beta, the binary package does not provide connector dependencies by default, so when using it for the first time, we need to execute the following command to install the connector: (Of course, you can also manually download the connector from [Apache Maven Repository](https://repo.maven.apache.org/maven2/org/apache/seatunnel/ to download, then manually move to the `connectors/seatunnel` directory).
 
 ```bash
-sh bin/install_plugin.sh 2.3.1
+sh bin/install-plugin.sh 2.3.1
 ```
 
 If you need to specify the version of the connector, take 2.3.0-beta as an example, we need to execute
 
 ```bash
-sh bin/install_plugin.sh 2.3.1
+sh bin/install-plugin.sh 2.3.1
 ```
 
-Usually we don't need all the connector plugins, so you can specify the plugins you need by configuring `config/plugin_config`, for example, you only need the `connector-console` plugin, then you can modify plugin.properties as
+Usually you don't need all the connector plugins, so you can specify the plugins you need by configuring `config/plugin_config`, for example, you only need the `connector-console` plugin, then you can modify `plugin_config` as
 
 ```plugin_config
---seatunnel-connectors--
+--connectors-v2--
 connector-console
 --end--
 ```
 
-If we want our sample application to work properly, we need to add the following plugins
+If you'd like to make the sample application to work properly, you need to add the following plugins
 
 ```plugin_config
---seatunnel-connectors--
+--connectors-v2--
 connector-fake
 connector-console
 --end--
 ```
 
-You can find all supported connectors and corresponding plugin_config configuration names under `${SEATUNNEL_HOME}/connectors/plugins-mapping.properties`.
+You can find out all supported connectors and corresponding plugin_config configuration names under `${SEATUNNEL_HOME}/connectors/plugins-mapping.properties`.
 
 :::tip