logo

pleroma

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

debian_based_en.md (6126B)


  1. # Installing on Debian Based Distributions
  2. {! backend/installation/otp_vs_from_source_source.include !}
  3. ## Installation
  4. This guide will assume you are on Debian 12 (“bookworm”) or later. This guide should also work with Ubuntu 22.04 (“jammy”) and later. It also assumes that you have administrative rights, either as root or a user with [sudo permissions](https://www.digitalocean.com/community/tutorials/how-to-add-delete-and-grant-sudo-privileges-to-users-on-a-debian-vps). 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. {! backend/installation/generic_dependencies.include !}
  6. ### Prepare the system
  7. * First update the system, if not already done:
  8. ```shell
  9. sudo apt update
  10. sudo apt full-upgrade
  11. ```
  12. * Install some of the above mentioned programs:
  13. ```shell
  14. sudo apt install git build-essential postgresql postgresql-contrib cmake libmagic-dev
  15. ```
  16. ### Install Elixir and Erlang
  17. * Install Elixir and Erlang (you might need to use backports or [asdf](https://github.com/asdf-vm/asdf) on old systems):
  18. ```shell
  19. sudo apt update
  20. sudo apt install elixir erlang-dev erlang-nox
  21. ```
  22. ### Optional packages: [`docs/installation/optional/media_graphics_packages.md`](../installation/optional/media_graphics_packages.md)
  23. ```shell
  24. sudo apt install imagemagick ffmpeg libimage-exiftool-perl
  25. ```
  26. ### Install PleromaBE
  27. * Add a new system user for the Pleroma service:
  28. ```shell
  29. sudo useradd -r -s /bin/false -m -d /var/lib/pleroma -U pleroma
  30. ```
  31. **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.
  32. * Git clone the PleromaBE repository and make the Pleroma user the owner of the directory:
  33. ```shell
  34. sudo mkdir -p /opt/pleroma
  35. sudo chown -R pleroma:pleroma /opt/pleroma
  36. sudo -Hu pleroma git clone -b stable https://git.pleroma.social/pleroma/pleroma /opt/pleroma
  37. ```
  38. * Change to the new directory:
  39. ```shell
  40. cd /opt/pleroma
  41. ```
  42. * Install the dependencies for Pleroma and answer with `yes` if it asks you to install `Hex`:
  43. ```shell
  44. sudo -Hu pleroma mix deps.get
  45. ```
  46. * Generate the configuration: `sudo -Hu pleroma MIX_ENV=prod mix pleroma.instance gen`
  47. * Answer with `yes` if it asks you to install `rebar3`.
  48. * This may take some time, because parts of pleroma get compiled first.
  49. * After that it will ask you a few questions about your instance and generates a configuration file in `config/generated_config.exs`.
  50. * 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):
  51. ```shell
  52. sudo -Hu pleroma mv config/{generated_config.exs,prod.secret.exs}
  53. ```
  54. * The previous command creates also the file `config/setup_db.psql`, with which you can create the database:
  55. ```shell
  56. sudo -Hu postgres psql -f config/setup_db.psql
  57. ```
  58. * Now run the database migration:
  59. ```shell
  60. sudo -Hu pleroma MIX_ENV=prod mix ecto.migrate
  61. ```
  62. * Now you can start Pleroma already
  63. ```shell
  64. sudo -Hu pleroma MIX_ENV=prod mix phx.server
  65. ```
  66. ### Finalize installation
  67. 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.
  68. #### Nginx
  69. * Install nginx, if not already done:
  70. ```shell
  71. sudo apt install nginx
  72. ```
  73. * Setup your SSL cert, using your method of choice or certbot. If using certbot, first install it:
  74. ```shell
  75. sudo apt install certbot
  76. ```
  77. and then set it up:
  78. ```shell
  79. sudo mkdir -p /var/lib/letsencrypt/
  80. sudo certbot certonly --email <your@emailaddress> -d <yourdomain> --standalone
  81. ```
  82. 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).
  83. ---
  84. * Copy the example nginx configuration and activate it:
  85. ```shell
  86. sudo cp /opt/pleroma/installation/pleroma.nginx /etc/nginx/sites-available/pleroma.nginx
  87. sudo ln -s /etc/nginx/sites-available/pleroma.nginx /etc/nginx/sites-enabled/pleroma.nginx
  88. ```
  89. * Before starting nginx edit the configuration and change it to your needs (e.g. change servername, change cert paths)
  90. * (Strongly recommended) serve media on another domain
  91. 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.
  92. * Enable and start nginx:
  93. ```shell
  94. sudo systemctl enable --now nginx.service
  95. ```
  96. If you need to renew the certificate in the future, uncomment the relevant location block in the nginx config and run:
  97. ```shell
  98. sudo certbot certonly --email <your@emailaddress> -d <yourdomain> --webroot -w /var/lib/letsencrypt/
  99. ```
  100. #### Other webserver/proxies
  101. You can find example configurations for them in `/opt/pleroma/installation/`.
  102. #### Systemd service
  103. * Copy example service file
  104. ```shell
  105. sudo cp /opt/pleroma/installation/pleroma.service /etc/systemd/system/pleroma.service
  106. ```
  107. * Edit the service file and make sure that all paths fit your installation
  108. * Enable and start `pleroma.service`:
  109. ```shell
  110. sudo systemctl enable --now pleroma.service
  111. ```
  112. #### Create your first user
  113. If your instance is up and running, you can create your first user with administrative rights with the following task:
  114. ```shell
  115. sudo -Hu pleroma MIX_ENV=prod mix pleroma.user new <username> <your@emailaddress> --admin
  116. ```
  117. #### Further reading
  118. {! backend/installation/further_reading.include !}
  119. ## Questions
  120. 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.