I have a fairly big issue.
I am very new to uwsgi and am not 100% sure on how to debug this issue but I will give you information on where I am at.
- I have previously had sites working on this configuration and suddenly it isn't working.
- I am running Emperor mode.
- My ini files are ok when I use command line to run them but it seems they wont automatically start
When I run uwsgi reload
sudo service uwsgi reload
I get this error
* Reloading app server(s) uwsgi
...fail!
Thats it. I get nothing else.
I have been looking for hours on stack overflow and haven't found anything that outlines this problem exactly, I found a lot to do with peoples .ini files but I know that is NOT my issue because when running my site manually via uwsgi --ini MYINI.ini
then accessing it it runs perfectly fine, the issue is in uWSGI and I don't know how to find the solution to this one. I have looked in the documents and can't find anything on this particular error.
If this interests anyone here is my uwsgi-server.conf file
description "uWSGI Emperor"
start on runlevel [2345]
stop on runlevel [!2345]
respawn
env LOGTO=/var/log/uwsgi.log
env BINPATH=/usr/local/bin/uwsgi
exec $BINPATH --emperor /etc/uwsgi/vassals --logto $LOGTO
Any insight would be appreciated. I feel like I am missing something but being so new with uWSGI I cant even guess as to what it may be, To me this all looks ok as per the documentation.
If you need any more information on my setup please just ask.
Use uwsgi the right way
Using uwsgi to deply django site on ubuntu server is quite easy, but there are still something you need to know before making mistakes.
install
You have two ways to install uwsgi on ubuntu: apt-get or pip
apt-get
if you use apt-get, you need to install the python plugin:
And, in your uwsgi ini file for your site, you need to add this:
plugins=python
pip
if you use pip, you need to install python-dev first:
And, you don't need the
plugins=python
in ini file anymore.See the sudo before pip? Yes, uwsgi should be installed in global system. If you miss the sudo here, you may install it in your virtualenv. It's meaningless and you may have trouble running it.
daemonize uwsgi
Daemonize means make uwsgi run on system boot and in the background. According to how you install uwsgi, you have two ways.
apt-get
When you
apt-get install uwsgi
on ubuntu, it's installed as a service automatically. The magic lies in this file:Files in
/etc/init.d
will be loaded by sysvinit. Then you can manage your uwsgi service like this:or:
the service command can find the service managed by sysvinit
pip
If you uwsgi is installed by pip, you only have the executable file in
/usr/local/bin/uwsgi
, you need to daemonize it yourself.When you open some of the files in
/etc/init.d/
, you may feel sad: I just want to register uwsgi as a service, why I need to write such long a script which looks similar to the others? It doesn't make sense.Good news is that it is quite simple with the help of Upstart, which is an alternative to sysvinit. It use
/etc/init/
instead of/etc/init.d/
.Just create a file
/etc/init/uwsgi.conf
with following content:and then, you can manage your uwsgi process like this:
or, still this:
Yes, as you can see, the service command is smart, it can manage service from both sysvinit and Upstart, with the same command.
And, if you have both
/etc/init.d/uwsgi
and/etc/init/uwsgi.conf
, when you say:It will restart the Upstart file
/etc/init/uwsgi.conf
. The sysvinit one will be ignored, or something similar.uwsgi config for your site
I recommend everyone to use the pip and Upstart way, it's much better then the apt-get way.
If so, you are using the emperor mode of uwsgi, which is very handy and powerful.
Now, you can create a ini file in
/etc/uwsgi/vassals/
like this:The
%n
means your file name. For example, my project name is 'example', I create aexample.ini
file for it. Then the%n
means 'example'. You don't need to replace it with real name. uwsgi will do this for you.And then restart or reload uwsgi:
Check your socket file:
If it's there, you are successful with uwsgi now:)
nginx config for your site
Take domain example.com for example:
restart nginx, you will see your site!
answer to you question
Your config file for uwsgi is
/etc/init/uwsgi-server.conf
So, the name you should use isuwsgi-server
, notuwsgi
you need to restart your uwsgi emperor instance like this:
or:
That's all!