Translations of this page:
Create dump your PostgreSQL database with “pg_dump” tool
pg_dump --no-owner --exclude-table-data=device_stat_channel -U tvip-tms tvip-tms > /backup/tvip-tms.sql
If you need make dumps of others databases
pg_dump --no-owner -U tvip-tms tvip-tms-audit > /backup/tvip-tms-audit.sql pg_dump --no-owner -U tvip-tms tvip-tms-vod > /backup/tvip-tms-vod.sql
Copy dump of database to new TMS server with “scp” tool.
scp /backup/tvip-tms.sql username@host:/backup/
Before install TVIP TMS, you should install PostgreSQL and restore dump of Database.
Run this cli command:
sudo dpkg-reconfigure locales
Make sure the locale is selected: “[*] en_US.UTF-8 UTF-8” and others locale what you need, and select them if you'd like it.
sudo apt -y install postgresql
su -c "createuser tvip-tms && createdb -O tvip-tms tvip-tms" postgres
If you use other databases then create them:
su -c "createdb -O tvip-tms tvip-tms-audit" postgres su -c "createdb -O tvip-tms tvip-tms-vod" postgres
sed -i /etc/postgresql/*/main/pg_hba.conf -e "s|local all all peer|local all all trust|" sed -i /etc/postgresql/*/main/pg_hba.conf -e "s|host all all 127.0.0.1/32 md5|host all all 127.0.0.1/32 trust|" systemctl reload postgresql
psql -U tvip-tms tvip-tms < /backup/tvip-tms.sql
psql -U tvip-tms tvip-tms update device set authkey = null; \q
Make sure, your server has minimal system requirements
system requirements:
Installation is recommended on Ubuntu LTS 18.04, 20.04
echo "deb http://deb.packages.tvip.ru/ xenial main" >> /etc/apt/sources.list.d/tms.list wget --quiet -O - http://deb.packages.tvip.ru/deploy/key.asc | apt-key add - apt-get update apt-get install tvip-tms-standalone
Enable “Allow quick binding” option on provider settings. Quick binding option allow authorization device without ask login/password.