From 39a51beef14cd9ddadb4ba94f21153f6d44c3108 Mon Sep 17 00:00:00 2001 From: Elias Soong Date: Wed, 17 Mar 2021 13:53:55 +0800 Subject: [PATCH] [TD-3336] : update description about "make install" and start service. --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 489b6d0a4e..6ad9d4a97f 100644 --- a/README.md +++ b/README.md @@ -176,18 +176,18 @@ option "-c test/cfg" specifies the system configuration file directory. # Installing After building successfully, TDengine can be installed by: ```bash -make install +sudo make install ``` -Users can find more information about directories installed on the system in the [directory and files](https://www.taosdata.com/en/documentation/administrator/#Directory-and-Files) section. It should be noted that installing from source code does not configure service management for TDengine. +Users can find more information about directories installed on the system in the [directory and files](https://www.taosdata.com/en/documentation/administrator/#Directory-and-Files) section. Since version 2.0, installing from source code will also configure service management for TDengine. Users can also choose to [install from packages](https://www.taosdata.com/en/getting-started/#Install-from-Package) for it. To start the service after installation, in a terminal, use: -```cmd -taosd +```bash +sudo systemctl start taosd ``` Then users can use the [TDengine shell](https://www.taosdata.com/en/getting-started/#TDengine-Shell) to connect the TDengine server. In a terminal, use: -```cmd +```bash taos ``` -- GitLab