]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - support/doc/dependencies.md
Merge branch 'release/2.1.0' into develop
[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
201. On a fresh Debian/Ubuntu, as root user, install basic utility programs needed for the installation
21
22```
23# apt-get install curl sudo unzip vim
24```
25
262. It would be wise to disable root access and to continue this tutorial with a user with sudoers group access
27
283. Install certbot (choose instructions for nginx and your distribution) :
29[https://certbot.eff.org/all-instructions](https://certbot.eff.org/all-instructions)
304. Install NodeJS 10.x:
31[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)
325. Install yarn, and be sure to have [a recent version](https://github.com/yarnpkg/yarn/releases/latest):
33[https://yarnpkg.com/en/docs/install#linux-tab](https://yarnpkg.com/en/docs/install#linux-tab)
34
356. Run:
36
37```
38sudo apt update
39sudo apt install nginx ffmpeg postgresql postgresql-contrib openssl g++ make redis-server git python-dev
40ffmpeg -version # Should be >= 3.x
41g++ -v # Should be >= 5.x
42```
43
44If you still have a 2.x version of FFmpeg on Ubuntu:
45
46```
47sudo add-apt-repository ppa:jonathonf/ffmpeg-3
48sudo apt-get update
49sudo apt install ffmpeg
50```
51
52Now that dependencies are installed, before running PeerTube you should start PostgreSQL and Redis:
53
54```
55sudo systemctl start redis postgresql
56```
57
58## Arch Linux
59
601. Run:
61
62```
63sudo pacman -S nodejs-lts-dubnium yarn ffmpeg postgresql openssl redis git wget unzip python2 base-devel npm nginx
64```
65
66Now that dependencies are installed, before running PeerTube you should start PostgreSQL and Redis:
67
68```
69sudo systemctl start redis postgresql
70```
71
72## CentOS 7
73
741. Install NodeJS 10.x:
75[https://nodejs.org/en/download/package-manager/#enterprise-linux-and-fedora](https://nodejs.org/en/download/package-manager/#enterprise-linux-and-fedora)
76
772. Install yarn:
78[https://yarnpkg.com/en/docs/install](https://yarnpkg.com/en/docs/install)
79
803. Install or compile ffmpeg:
81
82* Install - [https://linoxide.com/linux-how-to/install-ffmpeg-centos-7/](https://linoxide.com/linux-how-to/install-ffmpeg-centos-7/)
83* Compile - [https://gist.github.com/mustafaturan/7053900#file-latest-ffmpeg-centos6-sh](https://gist.github.com/mustafaturan/7053900#file-latest-ffmpeg-centos6-sh)
84
854. Run:
86
87```
88sudo yum update
89sudo yum install epel-release centos-release-scl
90sudo yum update
91sudo yum install nginx postgresql postgresql-server postgresql-contrib openssl gcc-c++ make wget redis git devtoolset-7
92```
93
945. 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.
95
96```
97sudo scl enable devtoolset-7 bash
98```
99
100Later 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:
101
102```
103sudo -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
104```
105
106Initialize the PostgreSQL database:
107
108```
109sudo postgresql-setup initdb
110```
111
112Now that dependencies are installed, before running PeerTube you should enable and start PostgreSQL and Redis:
113
114```
115sudo systemctl enable redis
116sudo systemctl enable postgresql
117sudo systemctl start redis
118sudo systemctl start postgresql
119```
120
121## Fedora
122
1231. Upgrade your packages:
124
125```
126dnf upgrade
127```
128
1292. Add a user with sudoers group access:
130
131```
132useradd my-peertube-user
133passwd my-peertube-user
134usermod my-peertube-user -a -G wheel # Add my-peertube-user to sudoers
135su my-peertube-user
136```
137
1383. (Optional) Install certbot (choose instructions for nginx and your distribution):
139[https://certbot.eff.org/all-instructions](https://certbot.eff.org/all-instructions)
140
1414. Install NodeJS 10.x:
142[https://nodejs.org/en/download/package-manager/#enterprise-linux-and-fedora](https://nodejs.org/en/download/package-manager/#enterprise-linux-and-fedora)
143
1445. Install yarn:
145[https://yarnpkg.com/en/docs/install](https://yarnpkg.com/en/docs/install)
146
1476. Enable [RPM Fusion](https://rpmfusion.org) for Fedora (available for x86, x86_64, armhfp)
148
149```
150sudo dnf install https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm
151```
152This is necessary because `ffmpeg` is not in the Fedora repos.
153
1547. Run:
155
156```
157sudo dnf install nginx ffmpeg postgresql-server postgresql-contrib openssl gcc-c++ make redis git
158ffmpeg -version # Should be >= 3.x
159g++ -v # Should be >= 5.x
160```
161
1628. Post-installation
163
164_from [PostgreSQL documentation](https://www.postgresql.org/download/linux/redhat/):_
165> Due to policies for Red Hat family distributions, the PostgreSQL installation will not be enabled for automatic start or have the database initialized automatically.
166
167```
168# PostgreSQL
169sudo postgresql-setup initdb
170sudo systemctl enable postgresql.service
171sudo systemctl start postgresql.service
172# Nginx
173sudo systemctl enable nginx.service
174sudo systemctl start nginx.service
175# Redis
176sudo systemctl enable redis.service
177sudo systemctl start redis.service
178```
179
1809. Firewall
181
182By default, you cannot access your server via public IP. To do so, you must configure firewall:
183
184```
185# Ports used by peertube dev setup
186sudo firewall-cmd --permanent --zone=public --add-port=3000/tcp
187sudo firewall-cmd --permanent --zone=public --add-port=9000/tcp
188# Optional
189sudo firewall-cmd --permanent --zone=public --add-service=http
190sudo firewall-cmd --permanent --zone=public --add-service=https
191# Reload firewall
192sudo firewall-cmd --reload
193```
194
19510. Configure max ports
196
197This is necessary if you are running dev setup, otherwise you will have errors with `nodemon`
198
199```
200echo fs.inotify.max_user_watches=582222 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
201```
202
203[More info](https://stackoverflow.com/questions/34662574/node-js-getting-error-nodemon-internal-watch-failed-watch-enospc#34664097)
204
205## FreeBSD
206
207On a fresh install of [FreeBSD](https://www.freebsd.org), new system or new jail:
208
2091. bootstrap pkg, initialize db and install peertube's dependencies, always as root (sudo not yet installed):
210
211```
212pkg
213pkg update
214pkg install -y sudo bash wget git python nginx pkgconf vips postgresql96-server postgresql96-contrib redis openssl node npm yarn ffmpeg unzip
215```
216
2172. Allow users in the wheel group (hope you don't forgot to add your user on wheel group!) to use sudo.
218
219```
220# visudo
221```
222
223Uncomment the line 90
224
225```
226%wheel ALL=(ALL) ALL
227```
228
2293. Enable nginx, redis, postgresql services and initialize database.
230
231```
232sysrc postgresql_enable="YES"
233sysrc redis_enable="YES"
234sysrc nginx_enable="YES"
235```
236
237Initialize database and start services
238
239```
240service postgresql initdb
241service postgresql start
242service redis start
243service nginx start
244```
245
246## macOS
247
2481. Add the packages:
249
250```
251brew install ffmpeg nginx postgresql openssl gcc make redis git yarn
252```
253
2542. Run the services:
255
256```
257brew services run postgresql
258brew services run redis
259```
260
261## Gentoo
262
2631. Add this to ``/etc/portage/sets/peertube``:
264
265```
266net-libs/nodejs
267sys-apps/yarn
268media-video/ffmpeg[x264] # Optionnally add vorbis,vpx
269dev-db/postgresql
270dev-db/redis
271dev-vcs/git
272app-arch/unzip
273dev-lang/python:2.7
274www-servers/nginx
275
276# Optional, client for Let’s Encrypt:
277# app-crypt/certbot
278# app-crypt/certbot-nginx
279```
280
2812. If you are on a "stable" Gentoo you need to accept the testing keyword ~amd64 yarn:
282
283```
284mkdir -p /etc/portage/package.keywords
285cat << EOF >> /etc/portage/package.keywords/peertube
286# required by yarn (argument) for PeerTube
287sys-apps/yarn ~amd64
288EOF
289```
290
2913. Compile the peertube set:
292
293```
294emerge -a @peertube
295```
296
2974. Initialize the PostgreSQL database if you just merged it:
298
299```
300emerge --config postgresql
301```
302
3035. (For OpenRC) Enable and then start the services (replace with the correct PostgreSQL slot):
304
305```
306rc-update add redis
307rc-update add postgresql-11
308rc-service redis start
309rc-service postgresql-11 start
310```
311
312## Other distributions
313
314Feel free to update this file in a pull request!