Fix postgres install and setup for fedora guide
[akkoma] / docs / docs / installation / fedora_based_en.md
1 # Installing on Fedora
2
3 ## OTP releases and RedHat-distributions
4
5 While the OTP releases of Akkoma work on most Linux distributions, they do not work correctly with RedHat-distributions. Therefore from-source installations are the recommended way to go when trying to install Akkoma on Fedora, Centos Stream or RedHat.
6
7 However, it is possible to compile your own OTP release of Akkoma for RedHat. Keep in mind that this has a few drawbacks, and has no particular advantage over a from-source installation, since you'll need to install Erlang and Elixir anyway.
8
9 This guide will cover a from-source installation. For instructions on how to build your own OTP release, please check out [the OTP for RedHat guide](./otp_redhat_en.md).
10
11 ## Installation
12
13 This guide will assume you are on Fedora 36. This guide should also work with current releases of Centos Stream and RedHat, although it has not been tested yet. It also assumes that you have administrative rights, either as root or a user with [sudo permissions](https://docs.fedoraproject.org/en-US/quick-docs/adding_user_to_sudoers_file/). If you want to run this guide with root, ignore the `sudo` at the beginning of the lines, unless it calls a user like `sudo -Hu akkoma`; in this case, use `su <username> -s $SHELL -c 'command'` instead.
14
15 {! installation/generic_dependencies.include !}
16
17 ### Prepare the system
18
19 * First update the system, if not already done:
20
21 ```shell
22 sudo dnf upgrade --refresh
23 ```
24
25 * Install some of the above mentioned programs:
26
27 ```shell
28 sudo dnf install git gcc g++ make cmake file-devel postgresql-server postgresql-contrib
29 ```
30
31 * Enable and initialize Postgres:
32 ```shell
33 sudo systemctl enable postgresql.service
34 sudo postgresql-setup --initdb --unit postgresql
35 # Allow password auth for postgres
36 sudo sed -E -i 's|(host +all +all +127.0.0.1/32 +)ident|\1md5|' /var/lib/pgsql/data/pg_hba.conf
37 sudo systemctl start postgresql.service
38 ```
39
40 ### Install Elixir and Erlang
41
42 * Install Elixir and Erlang:
43
44 ```shell
45 sudo dnf install elixir erlang-os_mon erlang-eldap erlang-xmerl erlang-erl_interface erlang-syntax_tools
46 ```
47
48
49 ### Optional packages: [`docs/installation/optional/media_graphics_packages.md`](../installation/optional/media_graphics_packages.md)
50
51 * Install ffmpeg (requires setting up the RPM-fusion repositories):
52
53 ```shell
54 sudo dnf -y install https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm
55 sudo dnf -y install https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm
56 sudo dnf install ffmpeg
57 ```
58
59 * Install ImageMagick and ExifTool for image manipulation:
60
61 ```shell
62 sudo dnf install Imagemagick perl-Image-ExifTool
63 ```
64
65
66
67 ### Install AkkomaBE
68
69 * Add a new system user for the Akkoma service:
70
71 ```shell
72 sudo useradd -r -s /bin/false -m -d /var/lib/akkoma -U akkoma
73 ```
74
75 **Note**: To execute a single command as the Akkoma system user, use `sudo -Hu akkoma command`. You can also switch to a shell by using `sudo -Hu akkoma $SHELL`. If you don’t have and want `sudo` on your system, you can use `su` as root user (UID 0) for a single command by using `su -l akkoma -s $SHELL -c 'command'` and `su -l akkoma -s $SHELL` for starting a shell.
76
77 * Git clone the AkkomaBE repository and make the Akkoma user the owner of the directory:
78
79 ```shell
80 sudo mkdir -p /opt/akkoma
81 sudo chown -R akkoma:akkoma /opt/akkoma
82 sudo -Hu akkoma git clone https://akkoma.dev/AkkomaGang/akkoma.git /opt/akkoma
83 ```
84
85 * Change to the new directory:
86
87 ```shell
88 cd /opt/akkoma
89 ```
90
91 * Install the dependencies for Akkoma and answer with `yes` if it asks you to install `Hex`:
92
93 ```shell
94 sudo -Hu akkoma mix deps.get
95 ```
96
97 * Generate the configuration: `sudo -Hu akkoma MIX_ENV=prod mix pleroma.instance gen`
98 * Answer with `yes` if it asks you to install `rebar3`.
99 * This may take some time, because parts of akkoma get compiled first.
100 * After that it will ask you a few questions about your instance and generates a configuration file in `config/generated_config.exs`.
101
102 * Check the configuration and if all looks right, rename it, so Akkoma will load it (`prod.secret.exs` for productive instance, `dev.secret.exs` for development instances):
103
104 ```shell
105 sudo -Hu akkoma mv config/{generated_config.exs,prod.secret.exs}
106 ```
107
108
109 * The previous command creates also the file `config/setup_db.psql`, with which you can create the database:
110
111 ```shell
112 sudo -Hu postgres psql -f config/setup_db.psql
113 ```
114
115 * Now run the database migration:
116
117 ```shell
118 sudo -Hu akkoma MIX_ENV=prod mix ecto.migrate
119 ```
120
121 * Now you can start Akkoma already
122
123 ```shell
124 sudo -Hu akkoma MIX_ENV=prod mix phx.server
125 ```
126
127 ### Finalize installation
128
129 If you want to open your newly installed instance to the world, you should run nginx or some other webserver/proxy in front of Akkoma and you should consider to create a systemd service file for Akkoma.
130
131 #### Nginx
132
133 * Install nginx, if not already done:
134
135 ```shell
136 sudo dnf install nginx
137 ```
138
139 * Setup your SSL cert, using your method of choice or certbot. If using certbot, first install it:
140
141 ```shell
142 sudo dnf install certbot
143 ```
144
145 and then set it up:
146
147 ```shell
148 sudo mkdir -p /var/lib/letsencrypt/
149 sudo certbot certonly --email <your@emailaddress> -d <yourdomain> --standalone
150 ```
151
152 If that doesn’t work, make sure, that nginx is not already running. If it still doesn’t work, try setting up nginx first (change ssl “on” to “off” and try again).
153
154 ---
155
156 * Copy the example nginx configuration and activate it:
157
158 ```shell
159 sudo cp /opt/akkoma/installation/nginx/akkoma.nginx /etc/nginx/conf.d/akkoma.conf
160 ```
161
162 * Before starting nginx edit the configuration and change it to your needs (e.g. change servername, change cert paths)
163 * Enable and start nginx:
164
165 ```shell
166 sudo systemctl enable --now nginx.service
167 ```
168
169 If you need to renew the certificate in the future, uncomment the relevant location block in the nginx config and run:
170
171 ```shell
172 sudo certbot certonly --email <your@emailaddress> -d <yourdomain> --webroot -w /var/lib/letsencrypt/
173 ```
174
175 #### Other webserver/proxies
176
177 You can find example configurations for them in `/opt/akkoma/installation/`.
178
179 #### Systemd service
180
181 * Copy example service file
182
183 ```shell
184 sudo cp /opt/akkoma/installation/akkoma.service /etc/systemd/system/akkoma.service
185 ```
186
187 * Edit the service file and make sure that all paths fit your installation
188 * Enable and start `akkoma.service`:
189
190 ```shell
191 sudo systemctl enable --now akkoma.service
192 ```
193
194 #### Create your first user
195
196 If your instance is up and running, you can create your first user with administrative rights with the following task:
197
198 ```shell
199 sudo -Hu akkoma MIX_ENV=prod mix pleroma.user new <username> <your@emailaddress> --admin
200 ```
201
202 #### Further reading
203
204 {! installation/further_reading.include !}
205
206 {! support.include !}