StefanieZhao7 commented on code in PR #345:
URL: https://github.com/apache/iotdb-docs/pull/345#discussion_r1762992348


##########
src/UserGuide/latest/Ecosystem-Integration/DataEase.md:
##########
@@ -0,0 +1,229 @@
+<!--
+
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+    
+        http://www.apache.org/licenses/LICENSE-2.0
+    
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.
+
+-->
+# DataEase
+
+## Product Overview
+
+1. Introduction to DataEase
+
+    DataEase is an open-source data visualization and analysis tool that 
provides a drag and drop interface, allowing users to easily create charts and 
dashboards. It supports MySQL SQL Server、Hive、ClickHouse、 Multiple data sources 
such as Dameng can be integrated into other applications. Can help users 
quickly gain insights into data and make decisions.For more detailed 
information, please refer to[DataEase official 
website](https://www.fit2cloud.com/dataease/index.html)
+
+    <div style="text-align: center;">
+      <img src="https://alioss.timecho.com/docs/img/DataEase-English1.png"; 
alt="" style="width: 50%;"/>

Review Comment:
   图片上还是中文,dataease应该也有英文页面?



##########
src/UserGuide/Master/Ecosystem-Integration/DataEase.md:
##########
@@ -0,0 +1,229 @@
+<!--
+
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+    
+        http://www.apache.org/licenses/LICENSE-2.0
+    
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.
+
+-->
+# DataEase
+
+## Product Overview
+
+1. Introduction to DataEase
+
+    DataEase is an open-source data visualization and analysis tool that 
provides a drag and drop interface, allowing users to easily create charts and 
dashboards. It supports MySQL SQL Server、Hive、ClickHouse、 Multiple data sources 
such as Dameng can be integrated into other applications. Can help users 
quickly gain insights into data and make decisions.For more detailed 
information, please refer to[DataEase official 
website](https://www.fit2cloud.com/dataease/index.html)
+
+    <div style="text-align: center;">
+      <img src="https://alioss.timecho.com/docs/img/DataEase-English1.png"; 
alt="" style="width: 50%;"/>
+      <img src="https://alioss.timecho.com/docs/img/DataEase2.png"; alt="" 
style="width: 40%;"/>
+    </div>
+
+2. Introduction to the DataEase-IoTDB Connector
+
+   IoTDB can be efficiently integrated with DataEase through API data sources, 
and IoTDB data can be accessed through the Session interface using API data 
source plugins. This plugin supports customized data processing functions, 
providing users with greater flexibility and more diverse data operation 
options.
+    <div style="text-align: center;">
+      <img src="https://alioss.timecho.com/docs/img/DataEase-English2.png"; 
alt="" style="width: 70%;"/>
+    </div>
+
+## Installation Requirements
+
+| **Preparation Content**              | **Version Requirements**              
                                       |
+| :-------------------- | 
:----------------------------------------------------------- |
+| IoTDB                 | Version not required, please refer to installation 
IoTDB [Deployment 
guidance](https://www.timecho.com/docs/zh/UserGuide/latest/Deployment-and-Maintenance/IoTDB-Package_timecho.html)
 |
+| JDK                   | Suggest JDK11 and above versions (recommend 
deploying JDK17 and above versions)           |
+| DataEase              | Request v1 series v1.18 version, please refer to 
DataEase official website for installation [Installation 
Guide](https://dataease.io/docs/v2/installation/offline_INSTL_and_UPG/)(V2. x 
is currently not supported, please contact Timecho Business for compatibility 
with other versions) |
+| DataEase-IoTDB Connector | Please contact Timecho Business for assistance    
                                       |
+
+## Installation Steps
+
+Step 1: Please contact the business to obtain the compressed file and unzip 
the installation package( iotdb-api-source-1.0.0.zip )
+
+Step 2: After decompression,Modify the configuration 
file`application.properties` in the `config` folder
+
+- port`server.port` can be modified as needed
+- `iotdb.nodeUrls` need to configure the address and port of the IoTDB 
instance to be connected
+- `iotdb.user` need to configure the username for IoTDB
+- `iotdb.password` password for IoTDB needs to be configured
+
+```Properties
+# Port to start IoTDB API Source listening
+server.port=8097
+# The instance address of IoTDB,multiple nodeUrls use; division
+iotdb.nodeUrls=127.0.0.1:6667
+# IoTDB user name
+iotdb.user=root
+# IoTDB password
+iotdb.password=root
+```
+
+Step 3: Start up  DataEase-IoTDB Connector
+
+- Front end startup
+
+```Shell
+./sbin/start.sh
+```
+
+- Background startup (add - d parameter)
+
+```Shell
+./sbin/start.sh -d
+```
+
+Step 4: After startup, you can check whether the startup was successful 
through the log.
+
+```Shell
+ lsof -i:8097  // Starting the IoTDB API Source listening port in config
+```
+
+## Instructions
+
+### Sign in DataEase
+
+1. Sign in DataEase,access address : `http://目标服务器IP地址:80`

Review Comment:
   这里还有中文



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to