logo

pleroma

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

debian_based_en.md (6165B)


  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:
  47. ```shell
  48. sudo -Hu pleroma MIX_ENV=prod mix pleroma.instance gen`
  49. ```
  50. * During this process:
  51. * Answer with `yes` if it asks you to install `rebar3`.
  52. * This may take some time, because parts of pleroma get compiled first.
  53. * After that it will ask you a few questions about your instance and generates a configuration file in `config/generated_config.exs`.
  54. * Check the configuration and if all looks right, rename it, so Pleroma will load it (`prod.secret.exs` for production instances, `dev.secret.exs` for development instances):
  55. ```shell
  56. sudo -Hu pleroma mv config/{generated_config.exs,prod.secret.exs}
  57. ```
  58. * The previous command creates also the file `config/setup_db.psql`, with which you can create the database:
  59. ```shell
  60. sudo -Hu postgres psql -f config/setup_db.psql
  61. ```
  62. * Now run the database migration:
  63. ```shell
  64. sudo -Hu pleroma MIX_ENV=prod mix ecto.migrate
  65. ```
  66. * Now you can start Pleroma already
  67. ```shell
  68. sudo -Hu pleroma MIX_ENV=prod mix phx.server
  69. ```
  70. ### Finalize installation
  71. 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.
  72. #### Nginx
  73. * Install nginx, if not already done:
  74. ```shell
  75. sudo apt install nginx
  76. ```
  77. * Setup your SSL cert, using your method of choice or certbot. If using certbot, first install it:
  78. ```shell
  79. sudo apt install certbot
  80. ```
  81. and then set it up:
  82. ```shell
  83. sudo mkdir -p /var/lib/letsencrypt/
  84. sudo certbot certonly --email <your@emailaddress> -d <yourdomain> --standalone
  85. ```
  86. 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).
  87. ---
  88. * Copy the example nginx configuration and activate it:
  89. ```shell
  90. sudo cp /opt/pleroma/installation/pleroma.nginx /etc/nginx/sites-available/pleroma.nginx
  91. sudo ln -s /etc/nginx/sites-available/pleroma.nginx /etc/nginx/sites-enabled/pleroma.nginx
  92. ```
  93. * Before starting nginx edit the configuration and change it to your needs (e.g. change servername, change cert paths)
  94. * (Strongly recommended) serve media on another domain
  95. 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.
  96. * Enable and start nginx:
  97. ```shell
  98. sudo systemctl enable --now nginx.service
  99. ```
  100. If you need to renew the certificate in the future, uncomment the relevant location block in the nginx config and run:
  101. ```shell
  102. sudo certbot certonly --email <your@emailaddress> -d <yourdomain> --webroot -w /var/lib/letsencrypt/
  103. ```
  104. #### Other webserver/proxies
  105. You can find example configurations for them in `/opt/pleroma/installation/`.
  106. #### Systemd service
  107. * Copy example service file
  108. ```shell
  109. sudo cp /opt/pleroma/installation/pleroma.service /etc/systemd/system/pleroma.service
  110. ```
  111. * Edit the service file and make sure that all paths fit your installation
  112. * Enable and start `pleroma.service`:
  113. ```shell
  114. sudo systemctl enable --now pleroma.service
  115. ```
  116. #### Create your first user
  117. If your instance is up and running, you can create your first user with administrative rights with the following task:
  118. ```shell
  119. sudo -Hu pleroma MIX_ENV=prod mix pleroma.user new <username> <your@emailaddress> --admin
  120. ```
  121. #### Further reading
  122. {! backend/installation/further_reading.include !}
  123. ## Questions
  124. 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.