2

I am in the process of migrating my app from Parse to MongoDB and IBM Bluemix, however I can't seem to reach the server when attempting the migration of data from Parse.

I've been following this tutorial tutorial, and I am currently on the step: Migrating data from Parse.com to your MongoDB instance

I am currently getting this error: No reachable servers when clicking 'Begin the migration'.

These are the connection strings in compose:

enter image description here

And I have tried entering various strings. I assumed this would work:

mongodb://username:password@aws-us-east-1-portal.7.dblayer.com:10803/mtcdatabase

But I get the same error. Obviously I'm changing username and password to my own credentials.

Anyone have any suggestions?

ralphearle
  • 1,696
  • 13
  • 18
user3746428
  • 11,047
  • 20
  • 81
  • 137
  • Well is the port open on the server? Are you able to connect from any other point? The error message should be pretty descriptive in that it is "unreachable". So it's either not running or cannot be reached due to some other consideration, such as firewall rules. Also not really a programming question, and neither is the likely solution. – Blakes Seven Feb 11 '16 at 02:02

1 Answers1

2

The issue ended up being that I was using the latest version of MongoDB, however Parse doesn't seem to support it. Therefore, I had to use MongoDB Classic version 3.0. Everything works great now.

user3746428
  • 11,047
  • 20
  • 81
  • 137