forked from LearningRegistry/LearningRegistry
-
Notifications
You must be signed in to change notification settings - Fork 2
Troubleshooting
damonregan edited this page Oct 27, 2011
·
11 revisions
- Verify you have CouchDB 1.0.2 running:
curl -X GET http://localhost:5984
Should return {"couchdb":"Welcome","version":"1.0.2"}
- Verify you have the appropriate CouchDB databases:
curl -X http://localhost:5984/_all_dbs
Should return ["community","node","resource_data","_users","network"]
- Verify you have yajl properly configured by:
python import ijson
If no error is generated, yajl should be working properly.
- Starting uwsgi
uwsgi --ini-paste development.ini --virtualenv ~/virtualenv/lr/
- Stopping uwsgi
killall -9 uwsgi