# Installing dawarich with systemd This guide is based on my experience setting up dawarich on Debian 12. ## Prerequisites ### Postgresql You need a recent version of [Postgresql](https://www.postgresql.org/) with [PostGIS](https://postgis.net/) support. In Debian you can install it with ```sh apt install postgresql-postgis ``` If you do not want to run the database on the same host as the dawarich service, you need to reconfigure Postgresql to allow connections from that host. Dawarich will populate it's database itself and only needs a user account to do so. This account needs to have superuser capabilities as the database population includes enabling the postgis extention: ```sh sudo -u postgres psql <