I’m in the process of upgrading from parse-server 2.x to the latest version and so far have been able to perform necessary steps to upgrade to 3.x. At this point I’m realizing that in order to get to the latest version, I’ll be required to update mongo along the way to meet each server requirement. What makes this process more challenging is that my server instance is running on a DigitalOcean Droplet that is running Ubuntu 14 which also needs to be upgraded as well given it has long been EOLd.
My question is, can I avoid OS updates and mongo updates by doing the following:
- Create a new droplet with the latest version of Ubuntu
- Install latest version of Mongo on that instance
- Add parse-server code and update to latest version of parse-server (this would be an update from 3.x to latest)
- Export mongoDB from old instance to new
This assumes that there is a way to export data running on 3.x server to be used on a server running the latest version.
Thanks!