postgres
Install postgres, make yourself a superuser, and create your root database.
$ sudo apt install postgresql postgresql-contrib libpq-dev
$ whoami # take note of your username
$ sudo -u postgres createuser --interactive
Enter name of role to add: <your-username>
Shall the new role be a superuser? (y/n) y
$ createdb
$ psql
<your-username>=# \q