From 97920a1d5eb36f6321fdc9998631cd126c20ac2a Mon Sep 17 00:00:00 2001 From: Hongze Cheng Date: Sun, 4 Aug 2019 13:08:36 +0800 Subject: [PATCH] fix readme confusion --- README.md | 36 ++++++++++-------------------------- 1 file changed, 10 insertions(+), 26 deletions(-) diff --git a/README.md b/README.md index ada2d8df6b..47f6a1b7f6 100644 --- a/README.md +++ b/README.md @@ -36,32 +36,9 @@ Build TDengine: mkdir build && cd build cmake .. && cmake --build . ``` -# Installing -After building successfully, TDengine can be installed by: -```cmd -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 also choose to [install from packages](https://www.taosdata.com/en/getting-started/#Install-from-Package) for it. - -# Running - -To start the TDengine server, run the command below in terminal: +# Quick run +To quickly start a TDengine server after building, run the command below in terminal: ```cmd ./build/bin/taosd -c test/cfg ``` @@ -70,8 +47,15 @@ In another terminal, use the TDengine shell to connect the server: ./build/bin/taos -c test/cfg ``` +# Installing +After building successfully, TDengine can be installed by: +```cmd +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 also choose to [install from packages](https://www.taosdata.com/en/getting-started/#Install-from-Package) for it. -Start the service in the terminal. +To start the service after installation, in a terminal, use: ```cmd taosd ``` -- GitLab