b6d24a5e98db4f9b932525c4672098e328f3457c
[akkoma] / docs / installation / debian_based_en.md
1 # Installing on Debian Based Distributions
2 ## Installation
3
4 This guide will assume you are on Debian Stretch. This guide should also work with Ubuntu 16.04 and 18.04. 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
6 {! backend/installation/generic_dependencies.include !}
7
8 ### Prepare the system
9
10 * First update the system, if not already done:
11
12 ```shell
13 sudo apt update
14 sudo apt full-upgrade
15 ```
16
17 * Install some of the above mentioned programs:
18
19 ```shell
20 sudo apt install git build-essential postgresql postgresql-contrib cmake libmagic-dev
21 ```
22
23 ### Install Elixir and Erlang
24
25 * Download and add the Erlang repository:
26
27 ```shell
28 wget -P /tmp/ https://packages.erlang-solutions.com/erlang-solutions_2.0_all.deb
29 sudo dpkg -i /tmp/erlang-solutions_2.0_all.deb
30 ```
31
32 * Install Elixir and Erlang:
33
34 ```shell
35 sudo apt update
36 sudo apt install elixir erlang-dev erlang-nox
37 ```
38
39 ### Optional packages: [`docs/installation/optional/media_graphics_packages.md`](../installation/optional/media_graphics_packages.md)
40
41 ```shell
42 sudo apt install imagemagick ffmpeg libimage-exiftool-perl
43 ```
44
45 ### Install PleromaBE
46
47 * Add a new system user for the Pleroma service:
48
49 ```shell
50 sudo useradd -r -s /bin/false -m -d /var/lib/pleroma -U pleroma
51 ```
52
53 **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.
54
55 * Git clone the PleromaBE repository and make the Pleroma user the owner of the directory:
56
57 ```shell
58 sudo mkdir -p /opt/pleroma
59 sudo chown -R pleroma:pleroma /opt/pleroma
60 sudo -Hu pleroma git clone -b stable https://git.pleroma.social/pleroma/pleroma /opt/pleroma
61 ```
62
63 * Change to the new directory:
64
65 ```shell
66 cd /opt/pleroma
67 ```
68
69 * Install the dependencies for Pleroma and answer with `yes` if it asks you to install `Hex`:
70
71 ```shell
72 sudo -Hu pleroma mix deps.get
73 ```
74
75 * Generate the configuration: `sudo -Hu pleroma MIX_ENV=prod mix pleroma.instance gen`
76 * Answer with `yes` if it asks you to install `rebar3`.
77 * This may take some time, because parts of pleroma get compiled first.
78 * After that it will ask you a few questions about your instance and generates a configuration file in `config/generated_config.exs`.
79
80 * 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):
81
82 ```shell
83 sudo -Hu pleroma mv config/{generated_config.exs,prod.secret.exs}
84 ```
85
86
87 * The previous command creates also the file `config/setup_db.psql`, with which you can create the database:
88
89 ```shell
90 sudo -Hu postgres psql -f config/setup_db.psql
91 ```
92
93 * Now run the database migration:
94
95 ```shell
96 sudo -Hu pleroma MIX_ENV=prod mix ecto.migrate
97 ```
98
99 * Now you can start Pleroma already
100
101 ```shell
102 sudo -Hu pleroma MIX_ENV=prod mix phx.server
103 ```
104
105 ### Finalize installation
106
107 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.
108
109 #### Nginx
110
111 * Install nginx, if not already done:
112
113 ```shell
114 sudo apt install nginx
115 ```
116
117 * Setup your SSL cert, using your method of choice or certbot. If using certbot, first install it:
118
119 ```shell
120 sudo apt install certbot
121 ```
122
123 and then set it up:
124
125 ```shell
126 sudo mkdir -p /var/lib/letsencrypt/
127 sudo certbot certonly --email <your@emailaddress> -d <yourdomain> --standalone
128 ```
129
130 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).
131
132 ---
133
134 * Copy the example nginx configuration and activate it:
135
136 ```shell
137 sudo cp /opt/pleroma/installation/pleroma.nginx /etc/nginx/sites-available/pleroma.nginx
138 sudo ln -s /etc/nginx/sites-available/pleroma.nginx /etc/nginx/sites-enabled/pleroma.nginx
139 ```
140
141 * Before starting nginx edit the configuration and change it to your needs (e.g. change servername, change cert paths)
142 * Enable and start nginx:
143
144 ```shell
145 sudo systemctl enable --now nginx.service
146 ```
147
148 If you need to renew the certificate in the future, uncomment the relevant location block in the nginx config and run:
149
150 ```shell
151 sudo certbot certonly --email <your@emailaddress> -d <yourdomain> --webroot -w /var/lib/letsencrypt/
152 ```
153
154 #### Other webserver/proxies
155
156 You can find example configurations for them in `/opt/pleroma/installation/`.
157
158 #### Systemd service
159
160 * Copy example service file
161
162 ```shell
163 sudo cp /opt/pleroma/installation/pleroma.service /etc/systemd/system/pleroma.service
164 ```
165
166 * Edit the service file and make sure that all paths fit your installation
167 * Enable and start `pleroma.service`:
168
169 ```shell
170 sudo systemctl enable --now pleroma.service
171 ```
172
173 #### Create your first user
174
175 If your instance is up and running, you can create your first user with administrative rights with the following task:
176
177 ```shell
178 sudo -Hu pleroma MIX_ENV=prod mix pleroma.user new <username> <your@emailaddress> --admin
179 ```
180
181 #### Further reading
182
183 {! backend/installation/further_reading.include !}
184
185 ## Questions
186
187 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.