Add a note about RUM indexes package on Debian/Ubuntu
[akkoma] / docs / installation / releases_en.md
1 # Installing on Linux using OTP releases
2
3 ## Pre-requisites
4 * A machine running Linux with GNU (e.g. Debian, Ubuntu) or musl (e.g. Alpine) libc and `x86_64`, `aarch64` or `armv7l` CPU, you have root access to. If you are not sure if it's compatible see [Detecting flavour section](#detecting-flavour) below
5 * A (sub)domain pointed to the machine
6
7 You will be running commands as root. If you aren't root already, please elevate your priviledges by executing `sudo su`/`su`.
8
9 While in theory OTP releases are possbile to install on any compatible machine, for the sake of simplicity this guide focuses only on Debian/Ubuntu/Alpine.
10
11 ### Detecting flavour
12
13 Paste the following into the shell:
14 ```sh
15 arch="$(arch)";if [ "$arch" = "x86_64" ];then arch="amd64";elif [ "$arch" = "armv7l" ];then arch="arm";elif [ "$arch" = "aarch64" ];then arch="arm64";else echo "Unsupported arch: $arch">&2;exit 1;fi;if getconf GNU_LIBC_VERSION>/dev/null;then libc_postfix="";elif [ "$(ldd 2>&1|head -c 9)" = "musl libc" ];then libc_postfix="-musl";elif [ "$(find /lib/libc.musl*|wc -l)" ];then libc_postfix="-musl";else echo "Unsupported libc">&2;exit 1;fi;echo "$arch$libc_postfix"
16 ```
17
18 If your platform is supported the output will contain the flavour string, you will need it later. If not, this just means that we don't build releases for your platform, you can still try the regular install.
19
20 ### Installing the required packages
21
22 Other than things bundled in the OTP release Pleroma depends on:
23 * curl (to download the release build)
24 * unzip (needed to unpack release builds)
25 * ncurses (ERTS won't run without it)
26 * PostgreSQL (also utilizes extensions in postgresql-contrib)
27 * nginx (could be swapped with another webserver but this guide covers only it)
28 * certbot (for Let's Encrypt certificates, could be swapped with another ACME client, but this guide covers only it)
29
30 Debian/Ubuntu:
31 ```sh
32 apt install curl unzip libncurses5 postgresql postgresql-contrib nginx certbot
33 ```
34 Alpine:
35 ```sh
36 apk add curl unzip ncurses postgresql posqtgresql-contrib nginx certbot
37 ```
38
39 ## Setup
40 ### Configuring PostgreSQL
41 #### (Optional) Installing RUM indexes
42 RUM indexes are an alternative indexing scheme that is not included in PostgreSQL by default. You can read more about them on the [Configuration page](config.html#rum-indexing-for-full-text-search). They are completely optional and most of the time are not worth it, especially if you are running a single user instance (unless you absolutely need ordered search results).
43
44 Debian/Ubuntu (available only on Buster/19.04):
45 ```sh
46 apt install postgresql-11-rum
47 ```
48 Alpine:
49 ```sh
50 apk install gcc make
51 git clone https://github.com/postgrespro/rum /tmp/rum
52 cd /tmp/rum
53 make USE_PGXS=1
54 make USE_PGXS=1 install
55 make USE_PGXS=1 installcheck
56 cd
57 rm -r /tmp/rum
58 ```
59 #### (Optional) Performance configuration
60 For optimal performance, you may use [PGTune](https://pgtune.leopard.in.ua), don't forget to restart postgresql after editing the configuration
61
62 Debian/Ubuntu:
63 ```sh
64 systemctl restart postgresql
65 ```
66 Alpine:
67 ```sh
68 rc-service postgresql restart
69 ```
70 ### Installing Pleroma
71 ```sh
72 # Create the Pleroma user
73 adduser -S -s /bin/false -h /opt/pleroma -H pleroma
74
75 # Set the flavour environment variable to the string you got in Detecting flavour section.
76 # For example if the flavour is `arm64-musl` the command will be
77 export FLAVOUR="arm64-musl"
78
79 # Clone the release build into a temporary directory and unpack it
80 su pleroma -s $SHELL -lc "
81 echo '$FLAVOUR'
82 curl 'https://git.pleroma.social/api/v4/projects/2/jobs/artifacts/master/download?job=$FLAVOUR' -o /tmp/pleroma.zip
83 unzip /tmp/pleroma.zip -d /tmp/
84 "
85
86 # Move the release to the home directory and delete temporary files
87 su pleroma -s $SHELL -lc "
88 mv /tmp/release/* /opt/pleroma
89 rmdir /tmp/release
90 rm /tmp/pleroma.zip
91 "
92 # Create uploads directory and set proper permissions (skip if planning to use a remote uploader)
93 # Note: It does not have to be `/var/lib/pleroma/uploads`, the config generator will ask about the upload directory later
94
95 mkdir -p /var/lib/pleroma/uploads
96 chown -R pleroma:pleroma /var/lib/pleroma
97
98 # Create custom public files directory (custom emojis, frontend bundle overrides, robots.txt, etc.)
99 # Note: It does not have to be `/var/lib/pleroma/static`, the config generator will ask about the custom public files directory later
100 mkdir -p /var/lib/pleroma/static
101 chown -R pleroma:pleroma /var/lib/pleroma
102
103 # Create a config directory
104 mkdir -p /etc/pleroma
105 chown -R pleroma:pleroma /etc/pleroma
106
107 # Run the config generator
108 su pleroma -s $SHELL -lc "./bin/pleroma_ctl instance gen --output /etc/pleroma/config.exs --output-psql /tmp/setup_db.psql"
109
110 # Create the postgres database
111 psql -U postgres -d postgres -f /tmp/setup_db.psql
112
113 # Create the database schema
114 ./bin/pleroma_ctl create
115 ./bin/pleroma_ctl migrate
116
117 # Start the instance to verify that everything is working as expected
118 ./bin/pleroma daemon
119
120 # Wait for about 20 seconds and query the instance endpoint, if it shows your uri, name and email correctly, you are configured correctly
121 sleep 20 && curl http://localhost:4000/api/v1/instance
122
123 # Stop the instance
124 ./bin/pleroma stop
125 ```
126
127 ### Setting up nginx and getting Let's Encrypt SSL certificaties
128
129 ```sh
130 # Get a Let's Encrypt certificate
131 certbot certonly --standalone --preferred-challenges http -d yourinstance.tld
132
133 # Copy the Pleroma nginx configuration to the nginx folder
134 # The location of nginx configs is dependent on the distro
135
136 # For Debian/Ubuntu:
137 cp /opt/pleroma/installation/pleroma.nginx /etc/nginx/sites-available/pleroma.nginx
138 ln -s /etc/nginx/sites-available/pleroma.nginx /etc/nginx/sites-enabled/pleroma.nginx
139 # For Alpine
140 cp /opt/pleroma/installation/pleroma.nginx /etc/nginx/conf.d/pleroma.conf
141 # If your distro does not have either of those you can append
142 # `include /etc/nginx/pleroma.conf` to the end of the http section in /etc/nginx/nginx.conf and
143 cp /opt/pleroma/installation/pleroma.nginx /etc/nginx/pleroma.conf
144
145 # Edit the nginx config replacing example.tld with your (sub)domain
146 $EDITOR path-to-the-config
147
148 # Verify that the config is valid
149 nginx -t
150
151 # Start nginx
152 # For Debian/Ubuntu:
153 systemctl start nginx
154 # For Alpine
155 rc-service nginx start
156 ```
157
158 At this point if you open your (sub)domain in a browser you should see a 502 error, that's because pleroma is not started yet.
159
160 ### Setting up a system service
161 Debian/Ubuntu:
162 ```sh
163 # Copy the service into a proper directory
164 cp /opt/pleroma/installation/pleroma.service /etc/systemd/system/pleroma.service
165
166 # Start pleroma and enable it on boot
167 systemctl start pleroma
168 systemctl enable pleroma
169 ```
170 Alpine:
171 ```sh
172 # Copy the service into a proper directory
173 cp /opt/pleroma/installation/init.d/pleroma /etc/init.d/pleroma
174
175 # Start pleroma and enable it on boot
176 rc-service pleroma start
177 rc-update add pleroma
178 ```
179
180 If everything worked, you should see Pleroma-FE when visiting your domain. If that didn't happen, try reviewing the installation steps, starting Pleroma in the foreground and seeing if there are any errrors.
181
182 Still doesn't work? Feel free to contact us on [#pleroma on freenode](https://webchat.freenode.net/?channels=%23pleroma) or via matrix at <https://matrix.heldscal.la/#/room/#freenode_#pleroma:matrix.org>, you can also [file an issue on our Gitlab](https://git.pleroma.social/pleroma/pleroma/issues/new)
183
184 ## Post installation
185
186 ### Setting up auto-renew Let's Encrypt certificate
187 ### Running Mix tasks
188 ### Updating