docs/en/04-get-started/03-package.md
import Tabs from "@theme/Tabs"; import TabItem from "@theme/TabItem"; import PkgList from "/src/components/PkgList"; import Getstarted from './_get_started.mdx';
You can install TDengine TSDB on Linux and Windows. To install TDengine TSDB in a Docker container instead of on your machine, see Get Started with TDengine TSDB in Docker.
Download the tar.gz installation package from the list below:
<PkgList productName="TDengine TSDB-Enterprise" platform="Linux-Generic" />
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-{{VERSION}}-linux-x64.tar.gz
After extracting the files, go into the subdirectory and run the install.sh script:
sudo ./install.sh
For more package types and versions, visit the TDengine Download Center.
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.