Uwsgi on ubuntu 14.04 not working solution


In Ubuntu 14.04, uwsgi that installed via apt-get will not working. To make it working, please use this steps:

1
2
sudo apt-get remove –purge uwsgi uwsgi-plugin-python
sudo apt-get install uwsgi uwsgi-plugin-python

Then follow this steps:

1
2
3
4
sudo pip install uwsgi
cd /usr/bin
sudo mv uwsgi uwsgi-old
sudo ln -s /usr/local/bin/uwsgi uwsgi

If still failed, follow this :

http://yodi.polatic.me/setup-latest-uwsgi-django-in-production-ubuntu-14-04/


Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.