我想将我们的Etherpad服务器后面的数据库从MySQL迁移到Mongodb。
是否有任何已知的脚本可以执行此操作?如果没有,是否有自己编写脚本的showstoppers?
答案 0 :(得分:3)
在命令中......
mysqldump -uroot -pwhatever store > etherpad.sql
vi settings.json (editing your database to use your mongodb)
/etc/init.d/etherpad-lite restart
node bin/importSqFile.js etherpad.sql
应该这样做。