]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - support/doc/dependencies.md
fb1019879c8fa90662518be96ef014715aa87e2b
[github/Chocobozzz/PeerTube.git] / support / doc / dependencies.md
1 # Dependencies
2
3 Follow the below guides, and check their versions match [required external dependencies versions](https://github.com/Chocobozzz/PeerTube/blob/master/package.json#7). You can check them automatically via `sudo npx engineslist`.
4
5 <!-- START doctoc generated TOC please keep comment here to allow auto update -->
6 <!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
7
8
9 - [Debian / Ubuntu and derivatives](#debian--ubuntu-and-derivatives)
10 - [Arch Linux](#arch-linux)
11 - [CentOS 7](#centos-7)
12 - [Fedora](#fedora)
13 - [FreeBSD](#freebsd)
14 - [macOS](#macos)
15 - [Gentoo](#gentoo)
16 - [Other distributions](#other-distributions)
17
18 <!-- END doctoc generated TOC please keep comment here to allow auto update -->
19
20 ## Debian / Ubuntu and derivatives
21
22 1. On a fresh Debian/Ubuntu, as root user, install basic utility programs needed for the installation
23
24 ```
25 # apt-get install curl sudo unzip vim
26 ```
27
28 2. It would be wise to disable root access and to continue this tutorial with a user with sudoers group access
29
30 3. Install certbot (choose instructions for nginx and your distribution) :
31 [https://certbot.eff.org/all-instructions](https://certbot.eff.org/all-instructions)
32 4. Install NodeJS 10.x:
33 [https://nodejs.org/en/download/package-manager/#debian-and-ubuntu-based-linux-distributions](https://nodejs.org/en/download/package-manager/#debian-and-ubuntu-based-linux-distributions)
34 5. Install yarn, and be sure to have [a recent version](https://github.com/yarnpkg/yarn/releases/latest):
35 [https://yarnpkg.com/en/docs/install#linux-tab](https://yarnpkg.com/en/docs/install#linux-tab)
36
37 6. Run:
38
39 ```
40 sudo apt update
41 sudo apt install nginx ffmpeg postgresql postgresql-contrib openssl g++ make redis-server git python-dev
42 ffmpeg -version # Should be >= 4.1
43 g++ -v # Should be >= 5.x
44 ```
45
46 Now that dependencies are installed, before running PeerTube you should start PostgreSQL and Redis:
47
48 ```
49 sudo systemctl start redis postgresql
50 ```
51
52 ## Arch Linux
53
54 1. Run:
55
56 ```
57 sudo pacman -S nodejs-lts-dubnium yarn ffmpeg postgresql openssl redis git wget unzip python2 base-devel npm nginx
58 ```
59
60 Now that dependencies are installed, before running PeerTube you should start PostgreSQL and Redis:
61
62 ```
63 sudo systemctl start redis postgresql
64 ```
65
66 ## CentOS 7
67
68 1. Install NodeJS 10.x:
69 [https://nodejs.org/en/download/package-manager/#enterprise-linux-and-fedora](https://nodejs.org/en/download/package-manager/#enterprise-linux-and-fedora)
70
71 2. Install yarn:
72 [https://yarnpkg.com/en/docs/install](https://yarnpkg.com/en/docs/install)
73
74 3. Install or compile ffmpeg:
75
76 * Install - [https://linoxide.com/linux-how-to/install-ffmpeg-centos-7/](https://linoxide.com/linux-how-to/install-ffmpeg-centos-7/)
77 * Compile - [https://gist.github.com/mustafaturan/7053900#file-latest-ffmpeg-centos6-sh](https://gist.github.com/mustafaturan/7053900#file-latest-ffmpeg-centos6-sh)
78
79 4. Install Packages:
80
81 ```
82 sudo yum update
83 sudo yum install epel-release centos-release-scl
84 sudo yum update
85 sudo yum install nginx postgresql postgresql-server postgresql-contrib openssl gcc-c++ make wget redis git devtoolset-7
86 ```
87
88 5. You need to use a more up to date version of G++ in order to run the yarn install command, hence the installation of devtoolset-7.
89
90 ```
91 sudo scl enable devtoolset-7 bash
92 ```
93
94 Later when you invoke any node command, please prefix them with `CC=/opt/rh/devtoolset-7/root/usr/bin/gcc CXX=/opt/rh/devtoolset-7/root/usr/bin/g++`, such as with:
95
96 ```
97 sudo -H -u peertube CC=/opt/rh/devtoolset-7/root/usr/bin/gcc CXX=/opt/rh/devtoolset-7/root/usr/bin/g++ yarn install --production --pure-lockfile
98 ```
99
100 6. Initialize the PostgreSQL database:
101
102 ```
103 sudo postgresql-setup initdb
104 ```
105
106 Now that dependencies are installed, before running PeerTube you should enable and start PostgreSQL and Redis:
107
108 ```
109 sudo systemctl enable --now redis
110 sudo systemctl enable --now postgresql
111 ```
112
113 ## Centos 8
114
115 1. Install NodeJS 10.x:
116 [https://nodejs.org/en/download/package-manager/#enterprise-linux-and-fedora](https://nodejs.org/en/download/package-manager/#enterprise-linux-and-fedora)
117
118 2. Install yarn:
119 [https://yarnpkg.com/en/docs/install](https://yarnpkg.com/en/docs/install)
120
121 3. Install or compile ffmpeg:
122
123 * Install - [https://linuxize.com/post/how-to-install-ffmpeg-on-centos-8/](https://linuxize.com/post/how-to-install-ffmpeg-on-centos-8/)
124
125 4. Install packages:
126
127 ```
128 sudo dnf update
129 sudo dnf install epel-release
130 sudo dnf update
131 sudo dnf install nginx postgresql postgresql-server postgresql-contrib openssl gcc-c++ make wget redis git
132 ```
133
134 5. You'll need a symlink for python3 to python for youtube-dl to work
135
136 ```
137 sudo ln -s /usr/bin/python3 /usr/bin/python
138 ```
139
140 6. Initialize the PostgreSQL database:
141
142 ```
143 sudo postgresql-setup initdb
144 ```
145
146 Now that dependencies are installed, before running PeerTube you should enable and start PostgreSQL and Redis:
147
148 ```
149 sudo systemctl enable --now redis
150 sudo systemctl enable --now postgresql
151 ```
152
153
154 ## Fedora
155
156 1. Upgrade your packages:
157
158 ```
159 dnf upgrade
160 ```
161
162 2. Add a user with sudoers group access:
163
164 ```
165 useradd my-peertube-user
166 passwd my-peertube-user
167 usermod my-peertube-user -a -G wheel # Add my-peertube-user to sudoers
168 su my-peertube-user
169 ```
170
171 3. (Optional) Install certbot (choose instructions for nginx and your distribution):
172 [https://certbot.eff.org/all-instructions](https://certbot.eff.org/all-instructions)
173
174 4. Install NodeJS 10.x:
175 [https://nodejs.org/en/download/package-manager/#enterprise-linux-and-fedora](https://nodejs.org/en/download/package-manager/#enterprise-linux-and-fedora)
176
177 5. Install yarn:
178 [https://yarnpkg.com/en/docs/install](https://yarnpkg.com/en/docs/install)
179
180 6. Enable [RPM Fusion](https://rpmfusion.org) for Fedora (available for x86, x86_64, armhfp)
181
182 ```
183 sudo dnf install https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm
184 ```
185 This is necessary because `ffmpeg` is not in the Fedora repos.
186
187 7. Run:
188
189 ```
190 sudo dnf install nginx ffmpeg postgresql-server postgresql-contrib openssl gcc-c++ make redis git
191 ffmpeg -version # Should be >= 4.1
192 g++ -v # Should be >= 5.x
193 ```
194
195 8. Post-installation
196
197 _from [PostgreSQL documentation](https://www.postgresql.org/download/linux/redhat/):_
198 > Due to policies for Red Hat family distributions, the PostgreSQL installation will not be enabled for automatic start or have the database initialized automatically.
199
200 ```
201 # PostgreSQL
202 sudo postgresql-setup initdb
203 sudo systemctl enable postgresql.service
204 sudo systemctl start postgresql.service
205 # Nginx
206 sudo systemctl enable nginx.service
207 sudo systemctl start nginx.service
208 # Redis
209 sudo systemctl enable redis.service
210 sudo systemctl start redis.service
211 ```
212
213 9. Firewall
214
215 By default, you cannot access your server via public IP. To do so, you must configure firewall:
216
217 ```
218 # Ports used by peertube dev setup
219 sudo firewall-cmd --permanent --zone=public --add-port=3000/tcp
220 sudo firewall-cmd --permanent --zone=public --add-port=9000/tcp
221 # Optional
222 sudo firewall-cmd --permanent --zone=public --add-service=http
223 sudo firewall-cmd --permanent --zone=public --add-service=https
224 # Reload firewall
225 sudo firewall-cmd --reload
226 ```
227
228 10. Configure max ports
229
230 This is necessary if you are running dev setup, otherwise you will have errors with `nodemon`
231
232 ```
233 echo fs.inotify.max_user_watches=582222 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
234 ```
235
236 [More info](https://stackoverflow.com/questions/34662574/node-js-getting-error-nodemon-internal-watch-failed-watch-enospc#34664097)
237
238 ## FreeBSD
239
240 On a fresh install of [FreeBSD](https://www.freebsd.org), new system or new jail:
241
242 1. bootstrap pkg, initialize db and install peertube's dependencies, always as root (sudo not yet installed):
243
244 ```
245 pkg
246 pkg update
247 pkg install -y sudo bash wget git python nginx pkgconf vips postgresql96-server postgresql96-contrib redis openssl node npm yarn ffmpeg unzip
248 ```
249
250 2. Allow users in the wheel group (hope you don't forgot to add your user on wheel group!) to use sudo.
251
252 ```
253 # visudo
254 ```
255
256 Uncomment the line 90
257
258 ```
259 %wheel ALL=(ALL) ALL
260 ```
261
262 3. Enable nginx, redis, postgresql services and initialize database.
263
264 ```
265 sysrc postgresql_enable="YES"
266 sysrc redis_enable="YES"
267 sysrc nginx_enable="YES"
268 ```
269
270 Initialize database and start services
271
272 ```
273 service postgresql initdb
274 service postgresql start
275 service redis start
276 service nginx start
277 ```
278
279 ## macOS
280
281 1. Add the packages:
282
283 ```
284 brew install ffmpeg nginx postgresql openssl gcc make redis git yarn
285 ```
286
287 2. Run the services:
288
289 ```
290 brew services run postgresql
291 brew services run redis
292 ```
293
294 ## Gentoo
295
296 1. Add this to ``/etc/portage/sets/peertube``:
297
298 ```
299 net-libs/nodejs
300 sys-apps/yarn
301 media-video/ffmpeg[x264] # Optionnally add vorbis,vpx
302 dev-db/postgresql
303 dev-db/redis
304 dev-vcs/git
305 app-arch/unzip
306 dev-lang/python:2.7
307 www-servers/nginx
308
309 # Optional, client for Let’s Encrypt:
310 # app-crypt/certbot
311 # app-crypt/certbot-nginx
312 ```
313
314 2. If you are on a "stable" Gentoo you need to accept the testing keyword ~amd64 yarn:
315
316 ```
317 mkdir -p /etc/portage/package.keywords
318 cat << EOF >> /etc/portage/package.keywords/peertube
319 # required by yarn (argument) for PeerTube
320 sys-apps/yarn ~amd64
321 EOF
322 ```
323
324 3. Compile the peertube set:
325
326 ```
327 emerge -a @peertube
328 ```
329
330 4. Initialize the PostgreSQL database if you just merged it:
331
332 ```
333 emerge --config postgresql
334 ```
335
336 5. (For OpenRC) Enable and then start the services (replace with the correct PostgreSQL slot):
337
338 ```
339 rc-update add redis
340 rc-update add postgresql-11
341 rc-service redis start
342 rc-service postgresql-11 start
343 ```
344
345 ## Other distributions
346
347 Feel free to update this file in a pull request!