Monday, December 12, 2016

Tips for installing GeoNode on Ubuntu 16.04.1


I followed the GeoNode install instructions for Ubuntu 14.04

I installed Postgresql 9.5/postgis and Geoserver as specified and then later changed them to other servers. I install Tomcat 8.


Tip One:
sudo pip uninstall celery
sudo pip install celery=3.1.18
sudo pip freeze > requirements
sudo pip install -e .


Tip Two
Edit /var/www/geonode/geonode.wsgi

#Comment out these lines and replace with:
#from django.core.handlers.wsgi import WSGIHandler
#application = WSGIHandler()

from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()

No comments:

Post a Comment