You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@seatunnel.apache.org by li...@apache.org on 2023/04/11 11:03:01 UTC

[incubator-seatunnel-website] branch SeaTunnel-Deployment created (now 4f13608506)

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

lidongdai pushed a change to branch SeaTunnel-Deployment
in repository https://gitbox.apache.org/repos/asf/incubator-seatunnel-website.git


      at 4f13608506 [BUG][DOC] Fix some errors in SeaTunnel Deployment

This branch includes the following new commits:

     new 4f13608506 [BUG][DOC] Fix some errors in SeaTunnel Deployment

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[incubator-seatunnel-website] 01/01: [BUG][DOC] Fix some errors in SeaTunnel Deployment

Posted by li...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 4f136085068cf2242540571a839257352403dd5c
Author: David <da...@gmail.com>
AuthorDate: Tue Apr 11 19:02:56 2023 +0800

    [BUG][DOC] Fix some errors in SeaTunnel Deployment
---
 .../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