How to use mongohq or mongolab on OpenShift

249 Views Asked by At

I want to use mongoHQ in my application A part of code in views.py:

from pymongo import MongoClient

def connect_db():
    client = MongoClient('mongodb://myname:[email protected]:10087/blog')
    return client

@app.before_request
def before_request():
    g.db = connect_db()

It's ok on localhost . But it arise an HTTP 500 error on my browser when I deployed my app upon OpenShift. (pymongo has been installed on OpenShift server.)

Anyone can help me

Thank you

2

There are 2 best solutions below

0
On

There is a MongoHQ quickstart located here:
https://github.com/MongoHQ/mongohq-openshift-quickstart

While its a ruby app and not a python app it should point you in the right direction for your app config.

0
On

I had a similar problem earlier today. I solved it by adding the following line to requirements.txt:

pymongo==2.8.1