Merge branch 'develop' into feature/gen-magic
[akkoma] / docs / installation / arch_linux_en.md
1 # Installing on Arch Linux
2 ## Installation
3
4 This guide will assume that you have administrative rights, either as root or a user with [sudo permissions](https://wiki.archlinux.org/index.php/Sudo). 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 pleroma`; in this case, use `su <username> -s $SHELL -c 'command'` instead.
5
6 ### Required packages
7
8 * `postgresql`
9 * `elixir`
10 * `git`
11 * `base-devel`
12 * `cmake`
13 * `file`
14
15 #### Optional packages used in this guide
16
17 * `nginx` (preferred, example configs for other reverse proxies can be found in the repo)
18 * `certbot` (or any other ACME client for Let’s Encrypt certificates)
19
20 ### Prepare the system
21
22 * First update the system, if not already done:
23
24 ```shell
25 sudo pacman -Syu
26 ```
27
28 * Install some of the above mentioned programs:
29
30 ```shell
31 sudo pacman -S git base-devel elixir cmake file
32 ```
33
34 ### Install PostgreSQL
35
36 [Arch Wiki article](https://wiki.archlinux.org/index.php/PostgreSQL)
37
38 * Install the `postgresql` package:
39
40 ```shell
41 sudo pacman -S postgresql
42 ```
43
44 * Initialize the database cluster:
45
46 ```shell
47 sudo -iu postgres initdb -D /var/lib/postgres/data
48 ```
49
50 * Start and enable the `postgresql.service`
51
52 ```shell
53 sudo systemctl enable --now postgresql.service
54 ```
55
56 ### Install PleromaBE
57
58 * Add a new system user for the Pleroma service:
59
60 ```shell
61 sudo useradd -r -s /bin/false -m -d /var/lib/pleroma -U pleroma
62 ```
63
64 **Note**: To execute a single command as the Pleroma system user, use `sudo -Hu pleroma command`. You can also switch to a shell by using `sudo -Hu pleroma $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 pleroma -s $SHELL -c 'command'` and `su -l pleroma -s $SHELL` for starting a shell.
65
66 * Git clone the PleromaBE repository and make the Pleroma user the owner of the directory:
67
68 ```shell
69 sudo mkdir -p /opt/pleroma
70 sudo chown -R pleroma:pleroma /opt/pleroma
71 sudo -Hu pleroma git clone -b stable https://git.pleroma.social/pleroma/pleroma /opt/pleroma
72 ```
73
74 * Change to the new directory:
75
76 ```shell
77 cd /opt/pleroma
78 ```
79
80 * Install the dependencies for Pleroma and answer with `yes` if it asks you to install `Hex`:
81
82 ```shell
83 sudo -Hu pleroma mix deps.get
84 ```
85
86 * Generate the configuration: `sudo -Hu pleroma mix pleroma.instance gen`
87 * Answer with `yes` if it asks you to install `rebar3`.
88 * This may take some time, because parts of pleroma get compiled first.
89 * After that it will ask you a few questions about your instance and generates a configuration file in `config/generated_config.exs`.
90
91 * Check the configuration and if all looks right, rename it, so Pleroma will load it (`prod.secret.exs` for productive instance, `dev.secret.exs` for development instances):
92
93 ```shell
94 mv config/{generated_config.exs,prod.secret.exs}
95 ```
96
97 * The previous command creates also the file `config/setup_db.psql`, with which you can create the database:
98
99 ```shell
100 sudo -Hu postgres psql -f config/setup_db.psql
101 ```
102
103 * Now run the database migration:
104
105 ```shell
106 sudo -Hu pleroma MIX_ENV=prod mix ecto.migrate
107 ```
108
109 * Now you can start Pleroma already
110
111 ```shell
112 sudo -Hu pleroma MIX_ENV=prod mix phx.server
113 ```
114
115 ### Finalize installation
116
117 If you want to open your newly installed instance to the world, you should run nginx or some other webserver/proxy in front of Pleroma and you should consider to create a systemd service file for Pleroma.
118
119 #### Nginx
120
121 * Install nginx, if not already done:
122
123 ```shell
124 sudo pacman -S nginx
125 ```
126
127 * Create directories for available and enabled sites:
128
129 ```shell
130 sudo mkdir -p /etc/nginx/sites-{available,enabled}
131 ```
132
133 * Append the following line at the end of the `http` block in `/etc/nginx/nginx.conf`:
134
135 ```Nginx
136 include sites-enabled/*;
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 pacman -S certbot certbot-nginx
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/pleroma/installation/pleroma.nginx /etc/nginx/sites-available/pleroma.nginx
160 sudo ln -s /etc/nginx/sites-available/pleroma.nginx /etc/nginx/sites-enabled/pleroma.nginx
161 ```
162
163 * Before starting nginx edit the configuration and change it to your needs (e.g. change servername, change cert paths)
164 * Enable and start nginx:
165
166 ```shell
167 sudo systemctl enable --now nginx.service
168 ```
169
170 If you need to renew the certificate in the future, uncomment the relevant location block in the nginx config and run:
171
172 ```shell
173 sudo certbot certonly --email <your@emailaddress> -d <yourdomain> --webroot -w /var/lib/letsencrypt/
174 ```
175
176 #### Other webserver/proxies
177
178 You can find example configurations for them in `/opt/pleroma/installation/`.
179
180 #### Systemd service
181
182 * Copy example service file
183
184 ```shell
185 sudo cp /opt/pleroma/installation/pleroma.service /etc/systemd/system/pleroma.service
186 ```
187
188 * Edit the service file and make sure that all paths fit your installation
189 * Enable and start `pleroma.service`:
190
191 ```shell
192 sudo systemctl enable --now pleroma.service
193 ```
194
195 #### Create your first user
196
197 If your instance is up and running, you can create your first user with administrative rights with the following task:
198
199 ```shell
200 sudo -Hu pleroma MIX_ENV=prod mix pleroma.user new <username> <your@emailaddress> --admin
201 ```
202
203 #### Further reading
204
205 {! backend/installation/further_reading.include !}
206
207 ## Questions
208
209 Questions about the installation or didn’t it work as it should be, ask in [#pleroma:matrix.org](https://matrix.heldscal.la/#/room/#freenode_#pleroma:matrix.org) or IRC Channel **#pleroma** on **Freenode**.