logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma git clone https://anongit.hacktivis.me/git/pleroma.git/

otp_en.md (11713B)


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