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.
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.
If you change uwsgi systemd service file, reload the daemon and restart the process by typing: sudo systemctl daemon-reload. sudo systemctl restart uwsgi.
uWSGI (source code), pronounced "mu wiz gee", is a Web Server Gateway Interface (WSGI) server implementation that is typically used to run Python web applications.
The uWSGI HTTP/HTTPS router In standalone mode you have to specify the address of a uwsgi socket to connect to. This will spawn a HTTP server on port 8080 that forwards requests to a pool of 4 uWSGI workers managed by the master process.
If you have the uWSGI process running in the foreground for some reason, you can just hit CTRL+C to kill it off. When dealing with background processes, you'll need to use the master pidfile again. The SIGINT signal will kill uWSGI.
Using uwsgi to deply django site on ubuntu server is quite easy, but there are still something you need to know before making mistakes.
You have two ways to install uwsgi on ubuntu: apt-get or pip
if you use apt-get, you need to install the python plugin:
sudo apt-get install uwsgi-plugin-python
sudo apt-get install uwsgi
And, in your uwsgi ini file for your site, you need to add this:
plugins=python
if you use pip, you need to install python-dev first:
sudo apt-get install python-dev
sudo pip install uwsgi
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 means make uwsgi run on system boot and in the background. According to how you install uwsgi, you have two ways.
When you apt-get install uwsgi
on ubuntu, it's installed as a service automatically. The magic lies in this file:
/etc/init.d/uwsgi
Files in /etc/init.d
will be loaded by sysvinit. Then you can manage your uwsgi service like this:
sudo /etc/init.d/uwsgi start|stop|restart|reload
or:
sudo service uwsgi start|stop|restart|reload
the service command can find the service managed by sysvinit
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:
description "uWSGI Emperor"
start on runlevel [2345]
stop on runlevel [!2345]
respawn
exec /usr/local/bin/uwsgi --emperor /etc/uwsgi/vassals/ --logto /var/log/uwsgi.log
and then, you can manage your uwsgi process like this:
sudo initctl start|stop|restart|reload| uwsgi
or, still this:
sudo service uwsgi start|stop|restart|reload
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:
sudo service uwsgi restart
It will restart the Upstart file /etc/init/uwsgi.conf
.
The sysvinit one will be ignored, or something similar.
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:
[uwsgi]
virtualenv=/path/to/venv/
chdir=/path/to/proj/root
module=wsgi:application
env=DJANGO_SETTINGS_MODULE=settings
master=True
vacuum=True
socket=/tmp/%n.sock
pidfile=/tmp/%n.pid
daemonize=/var/log/uwsgi/%n.log
The %n
means your file name. For example, my project name is 'example', I create a example.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:
sudo service uwsgi restart
Check your socket file:
ll /tmp/*.sock
If it's there, you are successful with uwsgi now:)
Take domain example.com for example:
server {
listen 80;
server_name www.example.com;
return 301 $scheme://example.com$request_uri;
}
server {
listen 80;
charset utf-8;
server_name example.com;
location /static/ {
alias /path/to/static/;
}
location /media/ {
alias /path/to/media/;
}
location / {
try_files $uri @django;
}
location @django {
uwsgi_pass unix:///tmp/example.sock;
include uwsgi_params;
}
}
restart nginx, you will see your site!
Your config file for uwsgi is /etc/init/uwsgi-server.conf
So, the name you should use is uwsgi-server
, not uwsgi
you need to restart your uwsgi emperor instance like this:
sudo initctl restart uwsgi-server
or:
sudo service uwsgi-server restart
That's all!
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With