You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@inlong.apache.org by do...@apache.org on 2022/03/29 07:36:30 UTC

[incubator-inlong-website] branch master updated: [INLONG-3412][Docker] add audit configuration for other component docker image (#325)

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

dockerzhang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-inlong-website.git


The following commit(s) were added to refs/heads/master by this push:
     new 8afbee2  [INLONG-3412][Docker] add audit configuration for other component docker image (#325)
8afbee2 is described below

commit 8afbee2867fdf9c6c6dda5069e93992074ea0c7e
Author: dockerzhang <do...@apache.org>
AuthorDate: Tue Mar 29 15:36:24 2022 +0800

    [INLONG-3412][Docker] add audit configuration for other component docker image (#325)
---
 docs/modules/audit/quick_start.md                          | 14 ++++++--------
 docs/modules/dataproxy/quick_start.md                      |  2 +-
 .../current/modules/audit/quick_start.md                   | 14 ++++++--------
 .../current/modules/dataproxy/quick_start.md               |  2 +-
 4 files changed, 14 insertions(+), 18 deletions(-)

diff --git a/docs/modules/audit/quick_start.md b/docs/modules/audit/quick_start.md
index 3bb3670..bfbc76d 100644
--- a/docs/modules/audit/quick_start.md
+++ b/docs/modules/audit/quick_start.md
@@ -8,25 +8,23 @@ All deploying files at `inlong-audit` directory, if you use MySQL to store audit
 ### Configure MessageQueue
 You can choose Apache Pulsar or InLong TubeMQ as your MessageQueue service:
 
-- If using Pulsar, the configuration file is `conf/audit-proxy-pulsar.conf`. Replace **`PULSAR_BROKER_LIST`** with the service url of your Pulsar cluster.
+- If using Pulsar, the configuration file is `conf/audit-proxy-pulsar.conf`. Change the Pulsar service url for next configuration.
 
 ```Shell
-agent1.sources.tcp-source.host = 0.0.0.0
 agent1.sources.tcp-source.port = 10081
-agent1.sinks.pulsar-sink-msg1.pulsar_server_url= pulsar://PULSAR_BROKER_LIST
+agent1.sinks.pulsar-sink-msg1.pulsar_server_url= pulsar://localhost:6650
 agent1.sinks.pulsar-sink-msg1.topic = persistent://public/default/inlong-audit
-agent1.sinks.pulsar-sink-msg2.pulsar_server_url = pulsar://PULSAR_BROKER_LIST
+agent1.sinks.pulsar-sink-msg2.pulsar_server_url = pulsar://localhost:6650
 agent1.sinks.pulsar-sink-msg2.topic = persistent://public/default/inlong-audit
 ```
 
-- If using TubeMQ, the configuration file is `conf/audit-proxy-tube.conf`. Replace **`TUBE_LIST`** with the master address of your TubeMQ cluster.
+- If using TubeMQ, the configuration file is `conf/audit-proxy-tube.conf`. Change the TubeMQ master address for next configuration.
 
 ```Shell
-agent1.sources.tcp-source.host = 0.0.0.0
 agent1.sources.tcp-source.port = 10081
-agent1.sinks.tube-sink-msg1.master-host-port-list = TUBE_LIST
+agent1.sinks.tube-sink-msg1.master-host-port-list = localhost:8715
 agent1.sinks.tube-sink-msg1.topic = inlong-audit
-agent1.sinks.tube-sink-msg2.master-host-port-list = TUBE_LIST
+agent1.sinks.tube-sink-msg2.master-host-port-list = localhost:8715
 agent1.sinks.tube-sink-msg2.topic = inlong-audit
 ```
 
diff --git a/docs/modules/dataproxy/quick_start.md b/docs/modules/dataproxy/quick_start.md
index f160ba8..2030c91 100644
--- a/docs/modules/dataproxy/quick_start.md
+++ b/docs/modules/dataproxy/quick_start.md
@@ -10,7 +10,7 @@ All deploying files at `inlong-dataproxy` directory.
 configuration file: `conf/common.properties`:
 ```
 # manager address
-manager_hosts=127.0.0.1:8083
+manager.hosts=127.0.0.1:8083
 # audit proxy address
 audit.proxys=127.0.0.1:10081
 ```
diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/current/modules/audit/quick_start.md b/i18n/zh-CN/docusaurus-plugin-content-docs/current/modules/audit/quick_start.md
index fff004c..1d901ae 100644
--- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/modules/audit/quick_start.md
+++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/modules/audit/quick_start.md
@@ -8,24 +8,22 @@ title: 安装部署
 ### 配置消息队列
 消息队列服务目前可以使用Apache Pulsar或者InLong TubeMQ:
 
-- 若使用Pulsar,配置文件 `conf/audit-proxy-pulsar.conf`,将**`PULSAR_BROKER_LIST`**替换为Pulsar集群的服务地址。
+- 若使用Pulsar,配置文件 `conf/audit-proxy-pulsar.conf`,修改下列配置中的 Pulsar service 地址。
 
 ```Shell
-agent1.sources.tcp-source.host = 0.0.0.0
 agent1.sources.tcp-source.port = 10081
-agent1.sinks.pulsar-sink-msg1.pulsar_server_url= pulsar://PULSAR_BROKER_LIST
+agent1.sinks.pulsar-sink-msg1.pulsar_server_url= pulsar://localhost:6650
 agent1.sinks.pulsar-sink-msg1.topic = persistent://public/default/inlong-audit
-agent1.sinks.pulsar-sink-msg2.pulsar_server_url = pulsar://PULSAR_BROKER_LIST
+agent1.sinks.pulsar-sink-msg2.pulsar_server_url = pulsar://localhost:6650
 agent1.sinks.pulsar-sink-msg2.topic = persistent://public/default/inlong-audit
 ```
 
-- 若使用TubeMQ,配置文件 `conf/audit-proxy-tube.conf`,将**`TUBE_LIST`**替换为TubeMQ集群的master地址。
+- 若使用TubeMQ,配置文件 `conf/audit-proxy-tube.conf`,修改下列配置中的 TubeMQ master 地址。
 ```Shell
-agent1.sources.tcp-source.host = 0.0.0.0
 agent1.sources.tcp-source.port = 10081
-agent1.sinks.tube-sink-msg1.master-host-port-list = TUBE_LIST
+agent1.sinks.tube-sink-msg1.master-host-port-list = localhost:8715
 agent1.sinks.tube-sink-msg1.topic = inlong-audit
-agent1.sinks.tube-sink-msg2.master-host-port-list = TUBE_LIST
+agent1.sinks.tube-sink-msg2.master-host-port-list = localhost:8715
 agent1.sinks.tube-sink-msg2.topic = inlong-audit
 ```
 
diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/current/modules/dataproxy/quick_start.md b/i18n/zh-CN/docusaurus-plugin-content-docs/current/modules/dataproxy/quick_start.md
index 1a8c25e..aef9219 100644
--- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/modules/dataproxy/quick_start.md
+++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/modules/dataproxy/quick_start.md
@@ -11,7 +11,7 @@ title: 安装部署
 配置文件:`conf/common.properties`:
 ```
 # manager 地址
-manager_hosts=127.0.0.1:8083
+manager.hosts=127.0.0.1:8083
 # audit proxy 地址
 audit.proxys=127.0.0.1:10081
 ```