01-deploy.md 6.6 KB
Newer Older
D
dingbo 已提交
1
---
陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
2
title: Deployment
D
dingbo 已提交
3 4
---

5
## Prerequisites
D
dingbo 已提交
6

7
### Step 1
D
dingbo 已提交
8

9
The FQDN of all hosts need to be setup properly, all the FQDNs need to be configured in the /etc/hosts of each host. It must be guaranteed that each FQDN can be accessed (by ping, for example) from any other hosts.
D
dingbo 已提交
10

11
On each host command `hostname -f` can be executed to get the hostname. `ping` command can be executed on each host to check whether any other host is accessible from it. If any host is not accessible, the network configuration, like /etc/hosts or DNS configuration, need to be checked and revised to make any two hosts accessible to each other.
D
dingbo 已提交
12 13 14

:::note

15
- The host where the client program runs also needs to configured properly for FQDN, to make sure all hosts for client or server can be accessed from any other. In other words, the hosts where the client is running are also considered as a part of the cluster.
D
dingbo 已提交
16

17
- It's suggested to disable the firewall for all hosts in the cluster. At least TCP/UDP for port 6030~6042 need to be open if firewall is enabled.
D
dingbo 已提交
18

19
:::
D
dingbo 已提交
20

21
### Step 2
D
dingbo 已提交
22

23
If any previous version of TDengine has been installed and configured on any host, the installation needs to be removed and the data needs to be cleaned up. For details about uninstalling please refer to [Install and Uninstall](/operation/pkg-install). To clean up the data, please use `rm -rf /var/lib/taos/\*` assuming the `dataDir` is configured as `/var/lib/taos`.
D
dingbo 已提交
24

25
### Step 3
D
dingbo 已提交
26

27
Now it's time to install TDengine on all hosts without starting `taosd`, the versions on all hosts should be same. If it's prompted to input the existing TDengine cluster, simply press carriage return to ignore it. `install.sh -e no` can also be used to disable this prompt. For details please refer to [Install and Uninstall](/operation/pkg-install).
D
dingbo 已提交
28

29
### Step 4
D
dingbo 已提交
30

31
Now each physical node (referred to as `dnode` hereinafter, it's abbreviation for "data node") of TDengine need to be configured properly. Please be noted that one dnode doesn't stand for one host, multiple TDengine nodes can be started on single host as long as they are configured properly without conflicting. More specifically each instance of the configuration file `taos.cfg` stands for a dnode. Assuming the first dnode of TDengine cluster is "h1.taosdata.com:6030", its `taos.cfg` is configured as following.
D
dingbo 已提交
32 33

```c
34
// firstEp is the end point to connect to when any dnode starts
D
dingbo 已提交
35 36
firstEp               h1.taosdata.com:6030

37
// must be configured to the FQDN of the host where the dnode is launched
D
dingbo 已提交
38 39
fqdn                  h1.taosdata.com

40
// the port used by the dnode, default is 6030
D
dingbo 已提交
41 42
serverPort            6030

43
// only necessary when replica is configured to an even number
44
#arbitrator            ha.taosdata.com:6042
D
dingbo 已提交
45 46
```

47
`firstEp` and `fqdn` must be configured properly. In `taos.cfg` of all dnodes in TDengine cluster, `firstEp` must be configured to point to same address, i.e. the first dnode of the cluster. `fqdn` and `serverPort` compose the address of each node itself. If you want to start multiple TDengine dnodes on a single host, please also make sure all other configurations like `dataDir`, `logDir`, and other resources related parameters are not conflicting.
D
dingbo 已提交
48

49
For all the dnodes in a TDengine cluster, below parameters must be configured as exactly same, any node whose configuration is different from dnodes already in the cluster can't join the cluster.
D
dingbo 已提交
50

51 52 53 54 55 56 57 58 59 60 61
| **#** | **Parameter**      | **Definition**                                                                    |
| ----- | ------------------ | --------------------------------------------------------------------------------- |
| 1     | numOfMnodes        | The number of management nodes in the cluster                                     |
| 2     | mnodeEqualVnodeNum | The ratio of resource consuming of mnode to vnode                                 |
| 3     | offlineThreshold   | The threshold of dnode offline, once it's reached the dnode is considered as down |
| 4     | statusInterval     | The interval by which dnode reports its status to mnode                           |
| 5     | arbitrator         | End point of the arbitrator component in the cluster                              |
| 6     | timezone           | Timezone                                                                          |
| 7     | balance            | Enable load balance automatically                                                 |
| 8     | maxTablesPerVnode  | Maximum number of tables that can be created in each vnode                        |
| 9     | maxVgroupsPerDb    | Maximum number vgroups that can be used by each DB                                |
D
dingbo 已提交
62 63

:::note
64
Prior to version 2.0.19.0, besides the above parameters, `locale` and `charset` must be configured as same too for each dnode.
D
dingbo 已提交
65 66 67

:::

68
## Start Cluster
D
dingbo 已提交
69

70
### Start The First DNODE
D
dingbo 已提交
71

72
The first dnode can be started following the instructions in [Get Started](/get-started/), for example h1.taosdata.com. Then TDengine CLI `taos` can be launched to execute command `show dnodes`, the output is as following for example:
D
dingbo 已提交
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88

```
Welcome to the TDengine shell from Linux, Client Version:2.0.0.0


Copyright (c) 2017 by TAOS Data, Inc. All rights reserved.

taos> show dnodes;
 id |       end_point    | vnodes | cores | status | role |      create_time        |
=====================================================================================
  1 |  h1.taos.com:6030  |      0 |     2 |  ready |  any | 2020-07-31 03:49:29.202 |
Query OK, 1 row(s) in set (0.006385s)

taos>
```

89
From the above output, it is shown that the end point of the started dnode is "h1.taos.com:6030", which is the `firstEp` of the cluster.
D
dingbo 已提交
90

91
### Start Other DNODEs
D
dingbo 已提交
92

93
There are a few steps necessary to add other dnodes in the cluster.
D
dingbo 已提交
94

95
Firstly, start `taosd` as instructed in [Get Started](/get-started/), assuming it's for the second dnode. Before starting `taosd`, please making sure the configuration is correct, especially `firstEp`, `FQDN` and `serverPort`, `firstEp` must be same as the dnode shown in the section "Start First DNODE", i.e. "h1.taosdata.com" in this example.
D
dingbo 已提交
96

97
Then, on the first dnode, use TDengine CLI `taos` to execute below command to add the end point of the dnode in the cluster. In the command "fqdn:port" should be quoted using double quotes.
D
dingbo 已提交
98 99 100 101 102

```sql
CREATE DNODE "h2.taos.com:6030";
```

103
Then on the first dnode, execute `show dnodes` in `taos` to show whether the second dnode has been added in the cluster successfully or not.
D
dingbo 已提交
104 105 106 107 108

```sql
SHOW DNODES;
```

109
If the status of the newly added dnode is offlie, please check:
D
dingbo 已提交
110

111 112
- Whether the `taosd` process is running properly or not
- In the log file `taosdlog.0` to see whether the fqdn and port are correct or not 查
D
dingbo 已提交
113

114
The above process can be repeated to add more dnodes in the cluster.