Fork of Pleroma with site-specific changes and feature branches https://git.pleroma.social/pleroma/pleroma
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

otp_en.md 11KB

4 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303
  1. # Installing on Linux using OTP releases
  2. ## Pre-requisites
  3. * 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
  4. * A (sub)domain pointed to the machine
  5. You will be running commands as root. If you aren't root already, please elevate your priviledges by executing `sudo su`/`su`.
  6. 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 and Alpine.
  7. ### Detecting flavour
  8. Paste the following into the shell:
  9. ```sh
  10. arch="$(uname -m)";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;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;fi;echo "$arch$libc_postfix"
  11. ```
  12. 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 installing from source.
  13. ### Installing the required packages
  14. Other than things bundled in the OTP release Pleroma depends on:
  15. * curl (to download the release build)
  16. * unzip (needed to unpack release builds)
  17. * ncurses (ERTS won't run without it)
  18. * PostgreSQL (also utilizes extensions in postgresql-contrib)
  19. * nginx (could be swapped with another reverse proxy but this guide covers only it)
  20. * certbot (for Let's Encrypt certificates, could be swapped with another ACME client, but this guide covers only it)
  21. * libmagic/file
  22. === "Alpine"
  23. ```
  24. awk 'NR==2' /etc/apk/repositories | sed 's/main/community/' | tee -a /etc/apk/repositories
  25. apk update
  26. apk add curl unzip ncurses postgresql postgresql-contrib nginx certbot file-dev
  27. ```
  28. === "Debian/Ubuntu"
  29. ```
  30. apt install curl unzip libncurses5 postgresql postgresql-contrib nginx certbot libmagic-dev
  31. ```
  32. ### Installing optional packages
  33. Per [`docs/installation/optional/media_graphics_packages.md`](optional/media_graphics_packages.md):
  34. * ImageMagick
  35. * ffmpeg
  36. * exiftool
  37. === "Alpine"
  38. ```
  39. apk update
  40. apk add imagemagick ffmpeg exiftool
  41. ```
  42. === "Debian/Ubuntu"
  43. ```
  44. apt install imagemagick ffmpeg libimage-exiftool-perl
  45. ```
  46. ## Setup
  47. ### Configuring PostgreSQL
  48. #### (Optional) Installing RUM indexes
  49. !!! warning
  50. It is recommended to use PostgreSQL v11 or newer. We have seen some minor issues with lower PostgreSQL versions.
  51. 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](../configuration/cheatsheet.md#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).
  52. === "Alpine"
  53. ```
  54. apk add git build-base postgresql-dev
  55. git clone https://github.com/postgrespro/rum /tmp/rum
  56. cd /tmp/rum
  57. make USE_PGXS=1
  58. make USE_PGXS=1 install
  59. cd
  60. rm -r /tmp/rum
  61. ```
  62. === "Debian/Ubuntu"
  63. ```
  64. # Available only on Buster/19.04
  65. apt install postgresql-11-rum
  66. ```
  67. #### (Optional) Performance configuration
  68. It is encouraged to check [Optimizing your PostgreSQL performance](../configuration/postgresql.md) document, for tips on PostgreSQL tuning.
  69. Restart PostgreSQL to apply configuration changes:
  70. === "Alpine"
  71. ```
  72. rc-service postgresql restart
  73. ```
  74. === "Debian/Ubuntu"
  75. ```
  76. systemctl restart postgresql
  77. ```
  78. ### Installing Pleroma
  79. ```sh
  80. # Create a Pleroma user
  81. adduser --system --shell /bin/false --home /opt/pleroma pleroma
  82. # Set the flavour environment variable to the string you got in Detecting flavour section.
  83. # For example if the flavour is `amd64-musl` the command will be
  84. export FLAVOUR="amd64-musl"
  85. # Clone the release build into a temporary directory and unpack it
  86. su pleroma -s $SHELL -lc "
  87. curl 'https://git.pleroma.social/api/v4/projects/2/jobs/artifacts/stable/download?job=$FLAVOUR' -o /tmp/pleroma.zip
  88. unzip /tmp/pleroma.zip -d /tmp/
  89. "
  90. # Move the release to the home directory and delete temporary files
  91. su pleroma -s $SHELL -lc "
  92. mv /tmp/release/* /opt/pleroma
  93. rmdir /tmp/release
  94. rm /tmp/pleroma.zip
  95. "
  96. # Create uploads directory and set proper permissions (skip if planning to use a remote uploader)
  97. # Note: It does not have to be `/var/lib/pleroma/uploads`, the config generator will ask about the upload directory later
  98. mkdir -p /var/lib/pleroma/uploads
  99. chown -R pleroma /var/lib/pleroma
  100. # Create custom public files directory (custom emojis, frontend bundle overrides, robots.txt, etc.)
  101. # Note: It does not have to be `/var/lib/pleroma/static`, the config generator will ask about the custom public files directory later
  102. mkdir -p /var/lib/pleroma/static
  103. chown -R pleroma /var/lib/pleroma
  104. # Create a config directory
  105. mkdir -p /etc/pleroma
  106. chown -R pleroma /etc/pleroma
  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. # Create the postgres database
  110. su postgres -s $SHELL -lc "psql -f /tmp/setup_db.psql"
  111. # Create the database schema
  112. su pleroma -s $SHELL -lc "./bin/pleroma_ctl migrate"
  113. # If you have installed RUM indexes uncommend and run
  114. # su pleroma -s $SHELL -lc "./bin/pleroma_ctl migrate --migrations-path priv/repo/optional_migrations/rum_indexing/"
  115. # Start the instance to verify that everything is working as expected
  116. su pleroma -s $SHELL -lc "./bin/pleroma daemon"
  117. # Wait for about 20 seconds and query the instance endpoint, if it shows your uri, name and email correctly, you are configured correctly
  118. sleep 20 && curl http://localhost:4000/api/v1/instance
  119. # Stop the instance
  120. su pleroma -s $SHELL -lc "./bin/pleroma stop"
  121. ```
  122. ### Setting up nginx and getting Let's Encrypt SSL certificaties
  123. #### Get a Let's Encrypt certificate
  124. ```sh
  125. certbot certonly --standalone --preferred-challenges http -d yourinstance.tld
  126. ```
  127. #### Copy Pleroma nginx configuration to the nginx folder
  128. The location of nginx configs is dependent on the distro
  129. === "Alpine"
  130. ```
  131. cp /opt/pleroma/installation/pleroma.nginx /etc/nginx/conf.d/pleroma.conf
  132. ```
  133. === "Debian/Ubuntu"
  134. ```
  135. cp /opt/pleroma/installation/pleroma.nginx /etc/nginx/sites-available/pleroma.conf
  136. ln -s /etc/nginx/sites-available/pleroma.conf /etc/nginx/sites-enabled/pleroma.conf
  137. ```
  138. If your distro does not have either of those you can append `include /etc/nginx/pleroma.conf` to the end of the http section in /etc/nginx/nginx.conf and
  139. ```sh
  140. cp /opt/pleroma/installation/pleroma.nginx /etc/nginx/pleroma.conf
  141. ```
  142. #### Edit the nginx config
  143. ```sh
  144. # Replace example.tld with your (sub)domain
  145. $EDITOR path-to-nginx-config
  146. # Verify that the config is valid
  147. nginx -t
  148. ```
  149. #### Start nginx
  150. === "Alpine"
  151. ```
  152. rc-service nginx start
  153. ```
  154. === "Debian/Ubuntu"
  155. ```
  156. systemctl start nginx
  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. ### Setting up a system service
  160. === "Alpine"
  161. ```
  162. # Copy the service into a proper directory
  163. cp /opt/pleroma/installation/init.d/pleroma /etc/init.d/pleroma
  164. # Start pleroma and enable it on boot
  165. rc-service pleroma start
  166. rc-update add pleroma
  167. ```
  168. === "Debian/Ubuntu"
  169. ```
  170. # Copy the service into a proper directory
  171. cp /opt/pleroma/installation/pleroma.service /etc/systemd/system/pleroma.service
  172. # Start pleroma and enable it on boot
  173. systemctl start pleroma
  174. systemctl enable pleroma
  175. ```
  176. 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.
  177. Questions about the installation or didn’t it work as it should be, ask in [#pleroma:libera.chat](https://matrix.to/#/#pleroma:libera.chat) via Matrix or **#pleroma** on **libera.chat** via IRC, you can also [file an issue on our Gitlab](https://git.pleroma.social/pleroma/pleroma-support/issues/new).
  178. ## Post installation
  179. ### Setting up auto-renew of the Let's Encrypt certificate
  180. ```sh
  181. # Create the directory for webroot challenges
  182. mkdir -p /var/lib/letsencrypt
  183. # Uncomment the webroot method
  184. $EDITOR path-to-nginx-config
  185. # Verify that the config is valid
  186. nginx -t
  187. ```
  188. === "Alpine"
  189. ```
  190. # Restart nginx
  191. rc-service nginx restart
  192. # Start the cron daemon and make it start on boot
  193. rc-service crond start
  194. rc-update add crond
  195. # Ensure the webroot menthod and post hook is working
  196. certbot renew --cert-name yourinstance.tld --webroot -w /var/lib/letsencrypt/ --dry-run --post-hook 'rc-service nginx reload'
  197. # Add it to the daily cron
  198. echo '#!/bin/sh
  199. certbot renew --cert-name yourinstance.tld --webroot -w /var/lib/letsencrypt/ --post-hook "rc-service nginx reload"
  200. ' > /etc/periodic/daily/renew-pleroma-cert
  201. chmod +x /etc/periodic/daily/renew-pleroma-cert
  202. # If everything worked the output should contain /etc/cron.daily/renew-pleroma-cert
  203. run-parts --test /etc/periodic/daily
  204. ```
  205. === "Debian/Ubuntu"
  206. ```
  207. # Restart nginx
  208. systemctl restart nginx
  209. # Ensure the webroot menthod and post hook is working
  210. certbot renew --cert-name yourinstance.tld --webroot -w /var/lib/letsencrypt/ --dry-run --post-hook 'systemctl reload nginx'
  211. # Add it to the daily cron
  212. echo '#!/bin/sh
  213. certbot renew --cert-name yourinstance.tld --webroot -w /var/lib/letsencrypt/ --post-hook "systemctl reload nginx"
  214. ' > /etc/cron.daily/renew-pleroma-cert
  215. chmod +x /etc/cron.daily/renew-pleroma-cert
  216. # If everything worked the output should contain /etc/cron.daily/renew-pleroma-cert
  217. run-parts --test /etc/cron.daily
  218. ```
  219. ## Create your first user and set as admin
  220. ```sh
  221. cd /opt/pleroma
  222. su pleroma -s $SHELL -lc "./bin/pleroma_ctl user new joeuser joeuser@sld.tld --admin"
  223. ```
  224. This will create an account withe the username of 'joeuser' with the email address of joeuser@sld.tld, and set that user's account as an admin. This will result in a link that you can paste into the browser, which logs you in and enables you to set the password.
  225. ## Further reading
  226. {! backend/installation/further_reading.include !}
  227. ## Questions
  228. Questions about the installation or didn’t it work as it should be, ask in [#pleroma:libera.chat](https://matrix.to/#/#pleroma:libera.chat) via Matrix or **#pleroma** on **libera.chat** via IRC, you can also [file an issue on our Gitlab](https://git.pleroma.social/pleroma/pleroma-support/issues/new).