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