From: floatingghost Date: Fri, 5 Aug 2022 11:43:14 +0000 (+0000) Subject: Merge pull request 'Fix postgres install and setup for fedora guide' (#147) from... X-Git-Url: https://git.squeep.com/?a=commitdiff_plain;h=2781faaa7bc363d9c632533eebeb7fc1777f6cda;hp=a82fb2acc15a9e6e939c2b2e50b4693773d33286;p=akkoma Merge pull request 'Fix postgres install and setup for fedora guide' (#147) from norm/akkoma:fedora-install into develop Reviewed-on: https://akkoma.dev/AkkomaGang/akkoma/pulls/147 --- diff --git a/docs/docs/installation/fedora_based_en.md b/docs/docs/installation/fedora_based_en.md index 5129db80f..30d68d97f 100644 --- a/docs/docs/installation/fedora_based_en.md +++ b/docs/docs/installation/fedora_based_en.md @@ -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