Using Supervisor to start Gunicorn
To avoid running the Gunicorn in a separate screen, you can use Supervisor to automatically start the Gunicorn server on system start or on user demand.
To avoid running the Gunicorn in a separate screen, you can use Supervisor to automatically start the Gunicorn server on system start or on user demand.
Use netstat to check with ports are listening on the machine.
jitsejan@jjsvps:~$ netstat -lnt | awk '$6 == "LISTEN"'
Installation of Anaconda on Ubuntu 14.04.
Save the database on the old server.
(oldenv)jitsejan@oldvps:/opt/oldenv/django_project$ sudo python manage.py dumpdata blog > blog.json
Load the data on the new server. Make sure the models for both blogs are identical.
(env)jitsejan@jjsvps:/opt/env/django_project$ sudo python manage.py loaddata blog.json
A description of the steps needed to get Django working on Ubuntu 14.04.
These are the steps needed to get Jira working on Ubuntu 14.04.
These are the steps needed to get Docker working on Ubuntu 14.04. I have tested these steps on a Digital Ocean droplet.
Installing LXML on a DigitalOcean droplet is tricky because of the small amount of memory.
A short summary of my first experience with Elasticsearch.
A short summary of my first attempts to start with data science.