Kaltura/Installation
From r00tedvw.com wiki
(Difference between revisions)
Line 12: | Line 12: | ||
==Install apache2 and mysql== | ==Install apache2 and mysql== | ||
both of these will need to be installed first and changes need to be made to each before anything else | both of these will need to be installed first and changes need to be made to each before anything else | ||
− | <nowiki>sudo apt-get update && sudo apt-get install -y apache2 mysql-server</nowiki> | + | <nowiki>root@kaltura-server:~# sudo apt-get update && sudo apt-get install -y apache2 mysql-server</nowiki> |
Choose your mysql root password and remember it.<br> | Choose your mysql root password and remember it.<br> | ||
====mysql==== | ====mysql==== | ||
search for [mysqld] within /etc/mysql/my.cnf and add a line: sql-mode = | search for [mysqld] within /etc/mysql/my.cnf and add a line: sql-mode = | ||
− | <nowiki>vi /etc/mysql/my.cnf | + | <nowiki>root@kaltura-server:~# vi /etc/mysql/my.cnf |
/ mysqld | / mysqld | ||
[mysqld] | [mysqld] | ||
Line 22: | Line 22: | ||
====Apache2==== | ====Apache2==== | ||
disable the default site | disable the default site | ||
− | <nowiki>a2dissite 000-default.conf</nowiki> | + | <nowiki>root@kaltura-server:~# a2dissite 000-default.conf</nowiki> |
==Install Kaltura pgp key and update== | ==Install Kaltura pgp key and update== | ||
− | <nowiki>wget -O - http://installrepo.kaltura.org/repo/apt/debian/kaltura-deb.gpg.key|apt-key add - | + | <nowiki>root@kaltura-server:~# wget -O - http://installrepo.kaltura.org/repo/apt/debian/kaltura-deb.gpg.key|apt-key add - |
− | echo "deb [arch=amd64] http://installrepo.kaltura.org/repo/apt/debian kajam main" > /etc/apt/sources.list.d/kaltura.list | + | root@kaltura-server:~# echo "deb [arch=amd64] http://installrepo.kaltura.org/repo/apt/debian kajam main" > /etc/apt/sources.list.d/kaltura.list |
− | aptitude update | + | root@kaltura-server:~# aptitude update |
− | aptitude install kaltura-php7</nowiki> | + | root@kaltura-server:~# aptitude install kaltura-php7</nowiki> |
==Install Kaltura Server== | ==Install Kaltura Server== | ||
− | <nowiki>wget http://installrepo.kaltura.org/repo/apt/debian/install_kaltura_all_in_1.sh | + | <nowiki>root@kaltura-server:~# wget http://installrepo.kaltura.org/repo/apt/debian/install_kaltura_all_in_1.sh |
− | chmod +x install_kaltura_all_in_1.sh | + | root@kaltura-server:~# chmod +x install_kaltura_all_in_1.sh |
− | ./install_kaltura_all_in_1.sh</nowiki> | + | root@kaltura-server:~# ./install_kaltura_all_in_1.sh</nowiki> |
Revision as of 04:32, 26 January 2016
Contents |
Hardware Requirements
As of version: Kajam-11.7.0:
- 2Ghz Processor (Dual-Core)
- 1GB of RAM
- 5GB HDD for Kaltura installation (not counting space for videos)
- 64bit Ubuntu
Start
Before you start, switch to root. Kaltura expects that all installation instructions are performed as root.
~/home/user$sudo -s
Install apache2 and mysql
both of these will need to be installed first and changes need to be made to each before anything else
root@kaltura-server:~# sudo apt-get update && sudo apt-get install -y apache2 mysql-server
Choose your mysql root password and remember it.
mysql
search for [mysqld] within /etc/mysql/my.cnf and add a line: sql-mode =
root@kaltura-server:~# vi /etc/mysql/my.cnf / mysqld [mysqld] sql-mode =
Apache2
disable the default site
root@kaltura-server:~# a2dissite 000-default.conf
Install Kaltura pgp key and update
root@kaltura-server:~# wget -O - http://installrepo.kaltura.org/repo/apt/debian/kaltura-deb.gpg.key|apt-key add - root@kaltura-server:~# echo "deb [arch=amd64] http://installrepo.kaltura.org/repo/apt/debian kajam main" > /etc/apt/sources.list.d/kaltura.list root@kaltura-server:~# aptitude update root@kaltura-server:~# aptitude install kaltura-php7
Install Kaltura Server
root@kaltura-server:~# wget http://installrepo.kaltura.org/repo/apt/debian/install_kaltura_all_in_1.sh root@kaltura-server:~# chmod +x install_kaltura_all_in_1.sh root@kaltura-server:~# ./install_kaltura_all_in_1.sh