TDengine/docs/en/04-get-started/03-package.md
2025-11-03 15:42:23 +08:00

3.2 KiB

sidebar_label title slug
Deploy from Package Get Started with TDengine TSDB Using an Installation Package /get-started/deploy-from-package

import Tabs from "@theme/Tabs"; import TabItem from "@theme/TabItem"; import PkgListV37 from "/components/PkgListV37"; import Getstarted from './_get_started.mdx';

You can install TDengine TSDB Enterprise on Linux and Windows. To install TDengine TSDB in a Docker container instead of on your machine, see Get Started with TDengine in Docker.

Before You Begin

Procedure

  1. Download the tar.gz installation package from the list below:
  2. Navigate to the directory where the package is located and extract it using tar. For example, on an x64 architecture:
    tar -zxvf tdengine-tsdb-enterprise-3.3.8.4-linux-x64.tar.gz
    
  3. After extracting the files, go into the subdirectory and run the install.sh script:
    sudo ./install.sh
    
  1. Download the Windows installation package from the list below:
  2. Run the installation package and follow the on-screen instructions to complete the installation of TDengine TSDB.

For more package types and versions, visit the TDengine Download Center.

Start the Service

After installation, execute the following command in your terminal to start all services:

start-all.sh

All TDengine TSDB components are managed by systemd. You can check their service status with the following commands:

sudo systemctl status taosd
sudo systemctl status taosadapter
sudo systemctl status taoskeeper
sudo systemctl status taos-explorer

If the output shows the status as Active: active (running) since ..., it means the services have started successfully.

After installation, open a terminal as administrator and run the following command to start all services:

C:\TDengine\start-all.bat

You can check the status of each service using:

sc query taosd
sc query taosadapter
sc query taoskeeper
sc query taos-explorer

If the output shows RUNNING, it means the services have started successfully.