This is an automated email from the ASF dual-hosted git repository.
lidongdai pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/seatunnel-website.git
The following commit(s) were added to refs/heads/main by this push:
new 12280744a08 [doc] Update deployment.md to fix typo (#241)
12280744a08 is described below
commit 12280744a08b056203679a56b66d1bdfef1365e8
Author: Mir Hossain <[email protected]>
AuthorDate: Sat Jun 17 08:33:15 2023 -0700
[doc] Update deployment.md to fix typo (#241)
* Update deployment.md to fix typo
fixed a typo in the plugin install command
* Update deployment.md
---------
Co-authored-by: David Zollo <[email protected]>
---
versioned_docs/version-2.3.2/start-v2/locally/deployment.md | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/versioned_docs/version-2.3.2/start-v2/locally/deployment.md
b/versioned_docs/version-2.3.2/start-v2/locally/deployment.md
index 43200cc77c6..45a86a5e148 100644
--- a/versioned_docs/version-2.3.2/start-v2/locally/deployment.md
+++ b/versioned_docs/version-2.3.2/start-v2/locally/deployment.md
@@ -31,19 +31,19 @@ tar -xzvf "apache-seatunnel-${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` connectors
directory).
```bash
-sh bin/install_plugin.sh 2.3.2
+sh bin/install-plugin.sh 2.3.2
```
If you need to specify the version of the connector, take 2.3.2 as an example,
we need to execute
```bash
-sh bin/install_plugin.sh 2.3.2
+sh bin/install-plugin.sh 2.3.2
```
-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--
@@ -51,7 +51,7 @@ 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--
@@ -60,7 +60,7 @@ 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