Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

To connect to Apache IoTDB Standalone version 1.0 from a remote computer, you need to follow these steps:

  1. Configure IoTDB's network settings: By default, IoTDB only binds to the localhost (127.0.0.1) interface, so you need to edit the IoTDB's conf/iotdb-engine.properties configuration file and change the rpc.server.listen.address and rpc.server.bind.address settings to the IP address or hostname of the machine running IoTDB.

  2. Open required ports: IoTDB uses Apache Thrift to communicate over the network, so you need to open the port specified in the "rpc.server.listen.port" setting in your firewall. By default, it is set to 9003.

  3. Connect to IoTDB using a client: You can use an IoTDB client to connect to the IoTDB server, such as the IoTDB JDBC driver, the IoTDB Python client, or the IoTDB C++ client. You will need to provide the IP address or hostname of the machine running IoTDB and the port number specified in the "rpc.server.listen.port" setting.

  4. Authenticate to the server: If authentication is enabled, you will need to provide your username and password to authenticate to the IoTDB server. You can set up authentication in the IoTDB's conf/iotdb-engine.properties file.

Once you have completed the above steps, you should be able to connect to the IoTDB standalone version 1.0 from a remote computer.