This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
en:tvip_tms_quick_install_ubuntu [2020/04/03 13:40] Денис Цыганов [TVIP TMS quick install on Ubuntu] |
en:tvip_tms_quick_install_ubuntu [2025/03/24 10:37] (current) Денис Цыганов |
||
---|---|---|---|
Line 4: | Line 4: | ||
* Intel(R) Xeon(R) CPU E5-2630 v4 @ 2.20GHz | * Intel(R) Xeon(R) CPU E5-2630 v4 @ 2.20GHz | ||
* Minimum 32 GB of RAM | * Minimum 32 GB of RAM | ||
+ | * 500 GB (free disk space) for minimum 4000 active and online devices. | ||
- | **WARNING:** TVIP TMS in BETA stage, please report all bugs to support@tvip.ru | + | **WARNING:** TVIP TMS in BETA stage, please report all bugs to support@tvip.tv |
TVIP TMS repository have virtual package "tvip-tms-standalone", that package install all of need dependency, configure database, systemd settings, and prompt you about codepage. You must select CORRECT codepage with UTF-8 support, other actions will be executed automaticaly. | TVIP TMS repository have virtual package "tvip-tms-standalone", that package install all of need dependency, configure database, systemd settings, and prompt you about codepage. You must select CORRECT codepage with UTF-8 support, other actions will be executed automaticaly. | ||
- | That package must be installed on Ubuntu 18.04. Other debian based distros may be have any issues on installation process. | + | That package must be installed on Ubuntu 18.04, 20.04, 22.04. Other debian based distros may be have any issues on installation process. |
<WRAP center round important 60%> | <WRAP center round important 60%> | ||
- | **Installation is recommended only on ubuntu 18.04** | + | **Installation is recommended on Ubuntu LTS 20.04, 22.04** |
</WRAP> | </WRAP> | ||
=====Installation:===== | =====Installation:===== | ||
+ | |||
+ | ==== Ubuntu 22.04 ==== | ||
+ | |||
<code> | <code> | ||
- | echo "deb http://deb.packages.tvip.ru/ xenial main" >> /etc/apt/sources.list.d/tms.list | + | sudo apt install gnupg |
- | wget --quiet -O - http://deb.packages.tvip.ru/deploy/key.asc | apt-key add - | + | sudo wget --quiet -O- http://deb.packages.tvip.tv/deploy/key.asc | gpg --dearmor | sudo tee /usr/share/keyrings/tvip-archive-keyring.gpg >/dev/null |
- | apt-get update | + | echo "deb [signed-by=/usr/share/keyrings/tvip-archive-keyring.gpg] http://deb.packages.tvip.tv/ xenial main" | sudo tee /etc/apt/sources.list.d/tms.list |
- | apt-get install tvip-tms-standalone | + | sudo apt update |
+ | sudo apt install tvip-tms-standalone | ||
</code> | </code> | ||
+ | |||
+ | ==== Ubuntu 20.04 ==== | ||
+ | <code> | ||
+ | sudo apt install gnupg | ||
+ | echo "deb http://deb.packages.tvip.tv/ xenial main" | sudo tee /etc/apt/sources.list.d/tms.list | ||
+ | sudo wget --quiet -O - http://deb.packages.tvip.tv/deploy/key.asc | apt-key add - | ||
+ | sudo apt-get update | ||
+ | sudo apt-get install tvip-tms-standalone | ||
+ | </code> | ||
+ | |||
===== Check installation ===== | ===== Check installation ===== | ||
Line 30: | Line 45: | ||
Fresh installation contains examples of channels, accounts, etc... | Fresh installation contains examples of channels, accounts, etc... | ||
+ | By default credentials for authorization at TMS: \\ | ||
+ | Login: admin \\ | ||
+ | Password: admin | ||
Application logs available in: | Application logs available in: | ||
Line 41: | Line 59: | ||
<WRAP center round tip 60%> | <WRAP center round tip 60%> | ||
- | If you have any issues with installation **tvip-tms-standalone** on Ubuntu **18.04** please send bug report via [[support.tvip.ru]] | + | If you have any issues with installation **tvip-tms-standalone** on Ubuntu **20.04, 22.04** please send bug report via [[support.tvip.tv]] |
</WRAP> | </WRAP> | ||
+ | |||
+ | ===== Update TMS ===== | ||
+ | |||
+ | To update your TMS instance, please use the following command: | ||
+ | |||
+ | <code> | ||
+ | apt update && apt upgrade | ||
+ | </code> | ||
+ | |||
+ | |||
+ | ===== About TMS architecture ===== | ||
+ | |||
+ | Documentation about TMS architecture available by [[en:tvip_tms_architecture|link]] | ||
+ | |||