TDengine
TDengine copied to clipboard
Failed to check Server Edition, Reason:0x80002662:Fail to get table info, error: some vnode/qnode/mnode(s) out of service

https://www.taosdata.com/engineering/11076.html 看下问题1 排查一下
1.检查下客户端版本和服务端版本是否一致 2.检查客户端/etc/hosts是否配置了fqdn的解析 服务端运行 $ taosd | grep -i fqdn 客户端hosts配置 101.200.36.20 fqdn参数值 3.再次 taos -h fqdn参数值 -u root -p
Our company deployed a TDengine cluster with 3 nodes and had the same problem. Here's our solution:
1、check the file of dnode.json in the TDengine-Server
by default path : /var/lib/taos/dnode/dnode.json
root@tdengine-0:/# cat /var/lib/taos/dnode/dnode.json
{
"dnodeId": 1,
"dnodeVer": "10",
"clusterId": "3752108053794941578",
"dropped": 0,
"dnodes": [{
"id": 1,
"fqdn": "tdengine-0.taosd.taos.svc.cluster.local",
"port": 6030,
"isMnode": 1
}, {
"id": 4,
"fqdn": "tdengine-1.taosd.taos.svc.cluster.local",
"port": 6030,
"isMnode": 0
}, {
"id": 5,
"fqdn": "tdengine-2.taosd.taos.svc.cluster.local",
"port": 6030,
"isMnode": 0
}]
2、config the file of /etc/hosts
120.xxx199.xxx tdengine-0.taosd.taos.svc.cluster.local
120.xxx199.xxx tdengine-1.taosd.taos.svc.cluster.local
120.xxx199.xxx tdengine-2.taosd.taos.svc.cluster.local
@csc48656 这个问题你最后怎么处理的
服务端的fqdn参数值和客户端的host配置必须一致