Cannot install postgres on Ubuntu (E: Unable to locate package postgresql)
sudo apt-get install wget ca-certificates wget –quiet -O – https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add – sudo sh -c ‘echo “deb http://apt.postgresql.org/pub/repos/apt/ `lsb_release -cs`-pgdg main” >> /etc/apt/sources.list.d/pgdg.list’ sudo apt-get update sudo apt-get install postgresql postgresql-contrib After installing the PostgreSQL database server, by default, it creates a user ‘postgres’ with role ‘postgres’. Also creates a system account … Read more