客户端连不上问题解决
- 1. 下载安装服务端
- 2. 下载安装客户端
- 2.1 修改hosts文件
- 2.2 修改客户端taos.cfg 文件
- 安装中出现的问题
- 问题解决
1. 下载安装服务端
根据服务端系统不同 下载不同的安装包 ,按照参考网址:https://docs.tdengine.com/get-started/package/
2. 下载安装客户端
客户端参考网址:https://docs.tdengine.com/develop/connect/
2.1 修改hosts文件
修改客户端 C:\Windows\system32\drivers\etc\hosts
文件 (windows 系统)
2.2 修改客户端taos.cfg 文件
修改C:\TDengine\cfg\taos.cfg
文件的firstEP
# The end point of the first dnode in the cluster to be connected to when this dnode or a TDengine CLI `taos` is started
# firstEp hostname:6030
firstEp h1.tdengine.com:6030
# The end point of the second dnode to be connected to if the firstEp is not available
# secondEp
安装中出现的问题
安装完毕 ,进入C:\TDenginefrom目录,直接cmd执行TDengine CLI程序
出现welcome 但是无法连接客户端
问题解决
为了解决 我做了如下验证:
- 服务端命令行 执行 systemctl status taosd 查看TDengine状态,状态running;
- taos 验证服务端是否开启 ,正常
- ping 服务端ip正常 ;
- ping h1.tdengine.com 验证正常
- 查看防火强状态
systemctl status firewalld
,防火墙开启的话 查看端口是否开发 ,正常
最后试着修改 服务端host文件(liunx系统) vi /etc/hosts
最后一行添加:
127.0.0.1 h1.tdengine.com
再次连接成功了!
后面再阅读官网 tip 发现了这些 :ooo