docs: fedora install errata
[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 postgresql-setup --initdb --unit postgresql
34 # Allow password auth for postgres
35 sudo sed -E -i 's|(host +all +all +127.0.0.1/32 +)ident|\1md5|' /var/lib/pgsql/data/pg_hba.conf
36 sudo systemctl enable --now postgresql.service
37 ```
38
39 ### Install Elixir and Erlang
40
41 * Install Elixir and Erlang:
42
43 ```shell
44 sudo dnf install elixir erlang-os_mon erlang-eldap erlang-xmerl erlang-erl_interface erlang-syntax_tools
45 ```
46
47
48 ### Optional packages: [`docs/installation/optional/media_graphics_packages.md`](../installation/optional/media_graphics_packages.md)
49
50 * Install ffmpeg (requires setting up the RPM-fusion repositories):
51
52 ```shell
53 sudo dnf -y install https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm
54 sudo dnf -y install https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm
55 sudo dnf install ffmpeg
56 ```
57
58 * Install ImageMagick and ExifTool for image manipulation:
59
60 ```shell
61 sudo dnf install ImageMagick perl-Image-ExifTool
62 ```
63
64
65
66 ### Install AkkomaBE
67
68 * Add a new system user for the Akkoma service:
69
70 ```shell
71 sudo useradd -r -s /bin/false -m -d /var/lib/akkoma -U akkoma
72 ```
73
74 **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.
75
76 * Git clone the AkkomaBE repository and make the Akkoma user the owner of the directory:
77
78 ```shell
79 sudo mkdir -p /opt/akkoma
80 sudo chown -R akkoma:akkoma /opt/akkoma
81 sudo -Hu akkoma git clone https://akkoma.dev/AkkomaGang/akkoma.git /opt/akkoma
82 ```
83
84 * Change to the new directory:
85
86 ```shell
87 cd /opt/akkoma
88 ```
89
90 * Install the dependencies for Akkoma and answer with `yes` if it asks you to install `Hex`:
91
92 ```shell
93 sudo -Hu akkoma mix deps.get
94 ```
95
96 * Generate the configuration: `sudo -Hu akkoma MIX_ENV=prod mix pleroma.instance gen`
97 * Answer with `yes` if it asks you to install `rebar3`.
98 * This may take some time, because parts of akkoma get compiled first.
99 * After that it will ask you a few questions about your instance and generates a configuration file in `config/generated_config.exs`.
100
101 * 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):
102
103 ```shell
104 sudo -Hu akkoma mv config/{generated_config.exs,prod.secret.exs}
105 ```
106
107
108 * The previous command creates also the file `config/setup_db.psql`, with which you can create the database:
109
110 ```shell
111 sudo -Hu postgres psql -f config/setup_db.psql
112 ```
113
114 * Now run the database migration:
115
116 ```shell
117 sudo -Hu akkoma MIX_ENV=prod mix ecto.migrate
118 ```
119
120 * Now you can start Akkoma already
121
122 ```shell
123 sudo -Hu akkoma MIX_ENV=prod mix phx.server
124 ```
125
126 ### Finalize installation
127
128 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.
129
130 #### Nginx
131
132 * Install nginx, if not already done:
133
134 ```shell
135 sudo dnf install nginx
136 ```
137
138 * Setup your SSL cert, using your method of choice or certbot. If using certbot, first install it:
139
140 ```shell
141 sudo dnf install certbot
142 ```
143
144 and then set it up:
145
146 ```shell
147 sudo mkdir -p /var/lib/letsencrypt/
148 sudo certbot certonly --email <your@emailaddress> -d <yourdomain> --standalone
149 ```
150
151 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).
152
153 ---
154
155 * Copy the example nginx configuration and activate it:
156
157 ```shell
158 sudo cp /opt/akkoma/installation/nginx/akkoma.nginx /etc/nginx/conf.d/akkoma.conf
159 ```
160
161 * Before starting nginx edit the configuration and change it to your needs (e.g. change servername, change cert paths)
162 * Enable and start nginx:
163
164 ```shell
165 sudo systemctl enable --now nginx.service
166 ```
167
168 If you need to renew the certificate in the future, uncomment the relevant location block in the nginx config and run:
169
170 ```shell
171 sudo certbot certonly --email <your@emailaddress> -d <yourdomain> --webroot -w /var/lib/letsencrypt/
172 ```
173
174 #### Other webserver/proxies
175
176 You can find example configurations for them in `/opt/akkoma/installation/`.
177
178 #### Systemd service
179
180 * Copy example service file
181
182 ```shell
183 sudo cp /opt/akkoma/installation/akkoma.service /etc/systemd/system/akkoma.service
184 ```
185
186 * Edit the service file and make sure that all paths fit your installation
187 * Enable and start `akkoma.service`:
188
189 ```shell
190 sudo systemctl enable --now akkoma.service
191 ```
192
193 #### Create your first user
194
195 If your instance is up and running, you can create your first user with administrative rights with the following task:
196
197 ```shell
198 sudo -Hu akkoma MIX_ENV=prod mix pleroma.user new <username> <your@emailaddress> --admin
199 ```
200
201 {! installation/frontends.include !}
202
203 #### Further reading
204
205 {! installation/further_reading.include !}
206
207 {! support.include !}