当通过Docker:http://dockerfile.github.io/#/rethinkdb运行RethinkDB时,我希望能够通过"rethinkdb-dump or rethinkdb- export“导出数据,但是它抛出了以下错误:
Failed to move temporary directory to output directory (/tmp/tmpqx0xvM/rethinkdb_dump_2014-01-23T15:57:44): No such file or directory我可以通过192.168.33.10:8080正确访问RethinkDB管理面板。我运行的命令是:
rethinkdb-export -c 192.168.33.10:28015我在Vagrant (Ubuntu13.04)中运行Docker + RethinkDB,我试着用python驱动程序直接安装rethinkdb来运行同样的命令,它工作得很好。
这是我使用Docker + RethinkDB的唯一障碍,如果有任何帮助,我将不胜感激。
编辑:问题已解决,请参阅https://github.com/rethinkdb/rethinkdb/issues/1904
发布于 2016-01-27 03:22:24
正如@Atnnn指出的那样,当数据库中没有表时,RethinkDB会在启动rethindkb export/dump时导致错误。Python驱动程序的最新版本现在修复了此问题。
https://stackoverflow.com/questions/21311887
复制相似问题