From ad6d1db4f87d13982db7422529b48b92e6aaeca0 Mon Sep 17 00:00:00 2001 From: Hui Li Date: Tue, 1 Sep 2020 10:25:56 +0800 Subject: [PATCH] [TD-1256] --- .../webdocs/markdowndocs/faq-ch.md | 42 ++++++++++--------- 1 file changed, 23 insertions(+), 19 deletions(-) diff --git a/documentation20/webdocs/markdowndocs/faq-ch.md b/documentation20/webdocs/markdowndocs/faq-ch.md index 266aea4c51..50e0bebad6 100644 --- a/documentation20/webdocs/markdowndocs/faq-ch.md +++ b/documentation20/webdocs/markdowndocs/faq-ch.md @@ -59,36 +59,40 @@ -n :指示运行网络连通检测的服务端功能,或客户端功能,缺省值为空,表示不启动网络连通检测; - -h:指示服务端名称,可以是ip地址或fqdn格式。如:192.168.1.160,或 192.168.1.160:6030,或 hostname1,或hostname1:6030。缺省值是127.0.01。 + -h:指示服务端名称,可以是ip地址或fqdn格式。如:192.168.1.160,或 192.168.1.160:6030,或 hostname1,或hostname1:6030。缺省值是127.0.0.1。 -P :检测的起始端口号,缺省值是6030; -e:检测的结束端口号,必须大于等于起始端口号,缺省值是6042; - -l:指定检测端口连通的报文长度,最大64000字节,缺省值是1000字节; + -l:指定检测端口连通的报文长度,最大64000字节,缺省值是1000字节,测试时服务端和客户端必须指定相同; 服务端设置的起始端口和结束端口号,必须包含客户端设置的起始端口和结束端口号; - 对于客户端,起始端口号的有三种方式:缺省值、-h指定、-P指定,优先级是:-P指定 > -h指定 > 缺省值。 + 对于客户端,起始端口号有三种设置方式:缺省值、-h指定、-P指定,优先级是:-P指定 > -h指定 > 缺省值。 客户端运行的输出样例: - `sum@sum-virtualBox /home/sum $ taos -n client -h ubuntu-vbox6 - host: ubuntu-vbox6 start port: 6030 end port: 6042 packet len: 1000 - - tcp port:6030 test ok. udp port:6030 test ok. - tcp port:6031 test ok. udp port:6031 test ok. - tcp port:6032 test ok. udp port:6032 test ok. - tcp port:6033 test ok. udp port:6033 test ok. - tcp port:6034 test ok. udp port:6034 test ok. - tcp port:6035 test ok. udp port:6035 test ok. - tcp port:6036 test ok. udp port:6036 test ok. - tcp port:6037 test ok. udp port:6037 test ok. - tcp port:6038 test ok. udp port:6038 test ok. - tcp port:6039 test ok. udp port:6039 test ok. - tcp port:6040 test ok. udp port:6040 test ok. - tcp port:6041 test ok. udp port:6041 test ok. - tcp port:6042 test ok. udp port:6042 test ok.` + `sum@sum-virtualBox /home/sum $ taos -n client -h ubuntu-vbox6` + + `host: ubuntu-vbox6 start port: 6030 end port: 6042 packet len: 1000` + + `tcp port:6030 test ok. udp port:6030 test ok.` + `tcp port:6031 test ok. udp port:6031 test ok.` + `tcp port:6032 test ok. udp port:6032 test ok.` + `tcp port:6033 test ok. udp port:6033 test ok.` + `tcp port:6034 test ok. udp port:6034 test ok.` + `tcp port:6035 test ok. udp port:6035 test ok.` + `tcp port:6036 test ok. udp port:6036 test ok.` + `tcp port:6037 test ok. udp port:6037 test ok.` + `tcp port:6038 test ok. udp port:6038 test ok.` + `tcp port:6039 test ok. udp port:6039 test ok.` + `tcp port:6040 test ok. udp port:6040 test ok.` + `tcp port:6041 test ok. udp port:6041 test ok.` + `tcp port:6042 test ok. udp port:6042 test ok.` + + 如果某个端口不通,会输出 `port:xxxx test fail`的信息。 + ## 6. 遇到错误“Unexpected generic error in RPC”, 我怎么办? 产生这个错误,是由于客户端或数据节点无法解析FQDN(Fully Qualified Domain Name)导致。对于TAOS Shell或客户端应用,请做如下检查: -- GitLab