Skip to content

NodeBB DB Migration

Unsolved Technical Support
9 3 180

Suggested Topics


  • Nodebb version Mongo db

    Moved Technical Support
    3
    0 Votes
    3 Posts
    906 Views
    <baris☮️>B
    Minimum mongodb version is 3.6 and that is ancient you will be fine with the latest of both Redis and MongoDB. You can use both if you want, select mongodb during installation and then add a redis block into your config.json to use it for session handling. We have examples at https://docs.nodebb.org/configuring/scaling/#configure-redis. v4.0 didn't have a lot of breaking changes like v3.0 so all plugins that were updated for 3.x will work for 4.x.
  • Migrating to NodeBB from IP.Board 3.4.9

    Unsolved Technical Support
    2
    0 Votes
    2 Posts
    4k Views
    phenomlabP
    @f10w said in Migrating to NodeBB from IP.Board 3.4.9: I am rather surprised to find no official guide on how to migrate from another software (e.g., Xenforo, IPS, vBulletin) to NodeBB. Unfortunately, one doesn't exist - see below https://community.nodebb.org/topic/528/import-data-from-ipboard/4?_=1688461250383
  • Attempting to migrate from WPforo to NodeBB.

    Technical Support
    2
    0 Votes
    2 Posts
    1k Views
    gotwfG
    @KarnaKoding Use mongodb. Migrating db's is a pita. You've a steep climb ahead of you. Good luck and have fun.
  • Migrating to a new DB host - Can't connect, undefined

    Technical Support
    2
    0 Votes
    2 Posts
    2k Views
    M
    Can anyone help here? I've not been able to figure anything out past this point.
  • Moving a NodeBB mongo DB from one server to another.

    Solved Technical Support
    8
    0 Votes
    8 Posts
    6k Views
    J
    @scuzz said in Moving a NodeBB mongo DB from one server to another.: Once the database has been restored correctly you can run the NodeBB installer. When it asks for the database you will just tell it the database name of the database you just restored. This should then install NodeBB with your old database. Yes, this has worked for me as well. Making a backup of the nodebb database on the old server, for example: mongodump -u nodebb -p [password] -d nodebb -o dump/nodebb-2018-03-30 Restoring the nodebb database from that backup, after copying it to the new server: mongorestore -u nodebb -p [password] -d nodebb dump/nodebb-2018-03-30/nodebb/ And then installing NodeBB on the new server.