Update 07-faq.md

This commit is contained in:
Haojun Liao 2025-02-05 18:35:35 +08:00 committed by GitHub
parent b0f9e453ba
commit c4ae1aa0ad
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 12 additions and 7 deletions

View File

@ -3,7 +3,7 @@ title: "常见问题"
sidebar_label: "常见问题"
---
1. 创建 anode 失败
<b>1. 创建 anode 失败,返回指定服务无法访问</b>
```bash
taos> create anode '127.0.0.1:6090';
@ -11,14 +11,19 @@ taos> create anode '127.0.0.1:6090';
DB error: Analysis service can't access[0x80000441] (0.117446s)
```
请检查 anode 服务是否工作正常。
```bash
curl '127.0.0.1:6090'
curl: (7) Failed to connect to 127.0.0.1 port 6090: Connection refused
```
请务必使用 `curl` 命令检查 anode 服务是否正常。`curl '127.0.0.1:6090'` 正常的 anode 服务会返回以下结果。
```bash
TDengine© Time Series Data Analytics Platform (ver 1.0.x)
```
如果出现下面的结果,表示 anode 服务不正常。
```bash
curl: (7) Failed to connect to 127.0.0.1 port 6090: Connection refused
```
如果 anode 服务启动/运行不正常,请检查 uWSGI 的运行日志 `/var/log/taos/taosanode/taosanode.log`,检查其中的错误信息,根据错误信息解决响应的问题。
>请勿使用 systemctl status taosanode 检查 taosanode 是否正常
<b>2. 查询结果不正确</b>