.Net Core Marten and Postgres
Install and configure postgresql sudo apt install postgresql-9.6 ... Creating new cluster 9.6/main ... config /etc/postgresql/9.6/main data /var/lib/postgresql/9.6/main locale en_US.UTF-8 socket /var/run/postgresql port 5432 ... Test if the database is working
sudo su - postgres postgres$ psql psql (9.6.4) Type "help" for help. postgres=# \q exit Create two users in postgresql: one equal to the current interactive user for pgAdmin3 the other for marten.
sudo -u postgres -i # this must be same as the current interactive user createuser --interactive zap Shall the new role be a superuser?
[Read More]