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