鼎鼎知识库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

2021.4.25时序数据库迁移.md 1.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. # 准备
  2. ```
  3. 地址:47.102.145.164
  4. 用户名: root
  5. 密码:taosdata
  6. 进入客户端:taos
  7. 查看所有数据库:show databases;
  8. 包括的数据库:open_power, open_real
  9. ```
  10. # 修改新时序数据库的用户名和密码
  11. ```
  12. 在windows登录:./taos.exe -h 116.63.236.99
  13. 修改密码: alter user root pass 'newpass';
  14. 退出:exit;
  15. 使用新密码重新登录:taos -h 116.63.236.99 -u root -p
  16. 输入新密码
  17. web管理后台的密码也随之改变
  18. ```
  19. # 导出数据
  20. 案例
  21. ```
  22. taosdump -h 导出服务器 -u 用户名 -p -o /导出目录/ -B 要导出的数据库名
  23. ```
  24. 实践
  25. ```
  26. taosdump -h 47.102.145.164 -u root -p -o /open_power/ -B open_real
  27. 在Linux服务器上:
  28. taosdump -o /root/tmp1 -B open_real;
  29. taosdump -o /root/tmp2 -B open_power;
  30. ```
  31. # 导入数据
  32. 案例
  33. ```
  34. taosdump -h 导入服务器 -u 用户名 -p -i /要导入数据所在目录/
  35. ```
  36. 实践
  37. ```
  38. 登录目标服务器的时序数据库:./taos.exe -h 116.63.236.99 -u acct_dingding -p
  39. taosdump -h 116.63.236.99 -u acct_dingding -p -i ./openreal/;
  40. 让TDEngine导入
  41. ```