Skip to main content

2.3 Get Started with Local Install

You can install TDengine IDMP locally on a Linux, macOS, or Windows machine.

2.3.1 System Requirements

Ensure the following prerequisites are in place before installing:

  • The latest version of TDengine TSDB-Enterprise must be installed and running. See Deploy from Package.
  • Java 21 or later
  • On Linux: glibc 2.28 or later
  • SMTP email service (required for alert notifications; deploy internally if internet access is unavailable)
  • A correctly configured system timezone. Refer to your operating system's user manual for instructions.

For full hardware and OS requirements, see Planning Your Deployment.

2.3.2 Install TDengine IDMP

  1. Download the installation package from the following link:

    • Run the following commands to extract and install (using x64 architecture as an example):

      tar zxvf tdengine-idmp-enterprise--linux-x64.tar.gz
      cd tdengine-idmp-enterprise-
      sudo ./install.sh
      tip

      Your machine must be connected to the internet when you install TDengine IDMP. Dependencies are downloaded and installed during the installation process.

    • Configure the TDengine TSDB-Enterprise connection:

      Open /usr/local/taos/idmp/config/application.yml in a text editor and set the connection details under tda.default-connection:

      tda:
      default-connection:
      enable: true
      auth-type: UserPassword
      url: http://localhost:6041
      username: root
      password: taosdata
    • (Optional) Test the connection to TDengine TSDB-Enterprise:

      curl --request POST \
      --user root:taosdata \
      --url http://localhost:6041/rest/sql \
      --data 'show databases;'

      If the connection is successful, the list of databases in TDengine TSDB-Enterprise will be displayed.

    • Start TDengine IDMP:

      sudo svc-tdengine-idmp start

    2.3.3 Activate and Initialize the System

    1. In a web browser, access TDengine IDMP at http://ip:6042.

    2. Under Activate TDengine IDMP, enter your email address and organization.

    3. Click Get Code and enter the code sent to your email address.

      tip

      If the email does not arrive, check your spam or junk folder.

    4. Read the User Agreement and Privacy Policy and click Activate.

    5. In the Privacy Settings dialog, select which diagnostic information you want to share with TDengine, then click Agree.

    2.3.4 Enter Account Information

    1. Enter your name, phone number, position, and password.

      note
      • Your password must be 8 to 20 characters long.
      • Your password must contain letters, digits, and special characters.
      • Supported special characters: . ~ ! @ # $ ^ & *
    2. (Optional) Select a profile picture. JPG and PNG files under 1 MB are supported.

    3. Click Continue.

    Your TDengine IDMP instance is now ready to use. Continue to Section 2.4 to load sample data and explore IDMP features.