Frequently Asked Questions
Submit an Issue
If the tips in FAQ don't help much, please submit an issue on GitHub to describe your problem. In your description please include the TDengine version, hardware and OS information, the steps to reproduce the problem and any other relevant information. It would be very helpful if you can package the contents in /var/log/taos
and /etc/taos
and upload. These two are the default directories used by TDengine. If you have changed the default directories in your configuration, please package the files in your configured directories. We recommended setting debugFlag
to 135 in taos.cfg
, restarting taosd
, then reproducing the problem and collecting the logs. If you don't want to restart, an alternative way of setting debugFlag
is executing alter dnode <dnode_id> debugFlag 135
command in TDengine CLI taos
. During normal running, however, please make sure debugFlag
is set to 131.
Frequently Asked Questions
1. How to upgrade to TDengine 2.0 from older version?
version 2.x is not compatible with version 1.x. With regard to the configuration and data files, please perform the following steps before upgrading. Please follow data integrity, security, backup and other relevant SOPs, best practices before removing/deleting any data.
- Delete configuration files:
sudo rm -rf /etc/taos/taos.cfg
- Delete log files:
sudo rm -rf /var/log/taos/
- Delete data files if the data doesn't need to be kept:
sudo rm -rf /var/lib/taos/
- Install latest 2.x version
- If the data needs to be kept and migrated to newer version, please contact professional service at TDengine for assistance.
2. How to handle "Unable to establish connection"?
When the client is unable to connect to the server, you can try the following ways to troubleshoot and resolve the problem.
- Check the network
- Check if the hosts where the client and server are running are accessible to each other, for example by
ping
command. - Check if the TCP/UDP on port 6030-6042 are open for access if firewall is enabled. If possible, disable the firewall for diagnostics, but please ensure that you are following security and other relevant protocols.
- Check if the FQDN and serverPort are configured correctly in
taos.cfg
used by the server side. - Check if the
firstEp
is set properly in thetaos.cfg
used by the client side.
-
Make sure the client version and server version are same.
-
On server side, check the running status of
taosd
by executingsystemctl status taosd
. If your server is started using another way instead ofsystemctl
, use the proper method to check whether the server process is running normally. -
If using connector of Python, Java, Go, Rust, C#, node.JS on Linux to connect to the server, please make sure
libtaos.so
is in directory/usr/local/taos/driver
and/usr/local/taos/driver
is in system lib search environment variableLD_LIBRARY_PATH
. -
If using connector on Windows, please make sure
C:\TDengine\driver\taos.dll
is in your system lib search path. We recommend puttingtaos.dll
underC:\Windows\System32
. -
Some advanced network diagnostics tools
-
On Linux system tool
nc
can be used to check whether the TCP/UDP can be accessible on a specified port Check whether a UDP port is open:nc -vuz {hostIP} {port}
Check whether a TCP port on server side is open:nc -l {port}
Check whether a TCP port on client side is open:nc {hostIP} {port}
-
On Windows system
Test-NetConnection -ComputerName {fqdn} -Port {port}
on PowerShell can be used to check whether the port on server side is open for access.
- TDengine CLI
taos
can also be used to check network, please refer to TDengine CLI.