Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
I signed up here just to say thank you, Justin! It is the best tutorial I have seen if you need to start really fast and you need PostgreSQL.
Thanks man.
On 16.04 using PostgreSQL’s own repo and PodtgreSQL 9.5, I had to change in pg_hba.conf
local all all peer
to
local all all password
Great tutorial. I’ve used this article to set up a development environment for Django. I’ve installed it all on an Ubuntu Server (16.04), running on a virtual machine (Virtual Box). The only additional change I had to make was to edit the ~/myproject/myproject/settings.py file as follows:
Open the settings.py file from the command line using: nano ~/myproject/myproject/settings.py
Go to the line: ALLOWED_HOSTS = []
Change this line to include the IP address of your server: ALLOWED_HOSTS = [‘192.168.X.Y’] #Don’t forget to put your server IP address in quotes!
Is it also necessary to grant privileges separately:
psql database -c “GRANT ALL ON ALL TABLES IN SCHEMA public to user;” psql database -c “GRANT ALL ON ALL SEQUENCES IN SCHEMA public to user;” psql database -c “GRANT ALL ON ALL FUNCTIONS IN SCHEMA public to user;”
Hello, I’m using django 2.1.7, postgres 10.6 in Ubuntu 18.04. I followed all the steps mentioned above but I’m getting a password authentication failed for user error when migrating Can somebody help me?