Fix postgres install and setup for fedora guide
authorNorm <normandy@biribiri.dev>
Fri, 5 Aug 2022 05:02:42 +0000 (05:02 +0000)
committerNorm <normandy@biribiri.dev>
Fri, 5 Aug 2022 05:02:42 +0000 (05:02 +0000)
Fedora requires some additional setup to work with Pleroma compared to Ubuntu/Debian.

docs/docs/installation/fedora_based_en.md

index 5129db80fadbd05ec3819e2d2e28d98a42abca4e..30d68d97fb444941ef44d15cec6937bb39741795 100644 (file)
@@ -25,7 +25,16 @@ sudo dnf upgrade --refresh
 * Install some of the above mentioned programs:
 
 ```shell
-sudo dnf install git gcc g++ make cmake file-devel postgresql postgresql-contrib
+sudo dnf install git gcc g++ make cmake file-devel postgresql-server postgresql-contrib
+```
+
+* Enable and initialize Postgres:
+```shell
+sudo systemctl enable postgresql.service
+sudo postgresql-setup --initdb --unit postgresql
+# Allow password auth for postgres
+sudo sed -E -i 's|(host +all +all +127.0.0.1/32 +)ident|\1md5|' /var/lib/pgsql/data/pg_hba.conf
+sudo systemctl start postgresql.service
 ```
 
 ### Install Elixir and Erlang