TVIP Knowledge Base TVIP TMS Installation 

TVIP TMS Installation 

TVIP TMS Installation

System Requirements

  • Intel(R) Xeon(R) CPU E5-2630 v4 @ 2.20GHz
  • Minimum 32 GB of RAM
  • 500 GB of free disk space for at least 4000 active and online devices.

The package tvip-tms-standalone installs the required dependencies for TVIP TMS, configures the database and systemd settings, and prepares the required environment for operation. It is recommended to install it on Ubuntu 20.04 or Ubuntu 22.04. Other Debian-based distributions may cause issues during installation.

Installation on Ubuntu LTS 20.04 or 22.04 is recommended.

Installation

Ubuntu 22.04

apt install gnupg
wget --quiet -O- http://deb.packages.tvip.tv/deploy/key.asc | gpg --dearmor | sudo tee /usr/share/keyrings/tvip-archive-keyring.gpg >/dev/null
echo "deb [signed-by=/usr/share/keyrings/tvip-archive-keyring.gpg] http://deb.packages.tvip.tv/ xenial main" > /etc/apt/sources.list.d/tms.list
apt-get update
apt-get install tvip-tms-standalone

Ubuntu 20.04

echo "deb http://deb.packages.tvip.tv/ xenial main" >> /etc/apt/sources.list.d/tms.list
wget --quiet -O - http://deb.packages.tvip.tv/deploy/key.asc | apt-key add -
apt-get update
apt-get install tvip-tms-standalone

Check Installation

Admin panel available at:

http://<your_server>:<server_port>/admin

New installations include example content for channels, user accounts, and additional test data by default.

The default login credentials for TMS are:
Username: admin
Password: admin

Application logs available at:

/var/log/tvip-tms

Access logs available at /var/log/tvip-tms/.

If you encounter problems during the installation of tvip-tms-standalone on Ubuntu 20.04 or 22.04, you can report them via the Helpdesk.

Update TMS

To update your TMS, please use the following command:

apt update && apt upgrade