스마트팜/thingsboard

SERVER UPDATE

ZEROWIN.TECH 2020. 10. 20. 00:07
728x90

browndwarf.tistory.com/58

 

Ubuntu 18.04에 PostgreSql 11 설치

Ubuntu하고는 인연이 없었는데, 어쩌다가 Ubuntu에 서비스 환경을 구축하게 됐다. 그 와중에 PostgreSQL 설치하게 됐는데 언젠가 다시 Ubuntu를 만날 때를 대비해 기록해 놓는다. 1. 저장소 추가 RedHat 계��

browndwarf.tistory.com

thingsboard.io/docs/user-guide/install/pe/upgrade-instructions/#upgrading-to-311pe

 

Upgrade instructions

ThingsBoard PE IoT platform upgrade instructions

thingsboard.io

thingsboard.io/docs/user-guide/install/pe/ubuntu/?ubuntuThingsboardDatabase=postgresql#step-4-configure-thingsboard-database

 

Installing ThingsBoard PE on Ubuntu

Installing ThingsBoard on Ubuntu

thingsboard.io

www.liquidweb.com/kb/how-to-remove-postgresql/

 

How To Remove PostgreSQL | Liquid Web

Use our tutorial to find out how you can completely remove and purge a PostgreSQL instance from your server using two commands.

www.liquidweb.com

Thingsboard 데이터베이스를 백업합니다.

 

sudo -Hiu postgres pg_dump thingsboard > thingsboard.sql.bak

 

백업된 데이터를 복원합니다.

 

 sudo service thingsboard stop

 

sudo -Hiu postgres dropdb thingsboard

 

psql -U postgres -d postgres -h 127.0.0.1 -W

CREATE DATABASE thingsboard;

\q

 

sudo -Hiu postgres psql thingsboard < thingsboard.sql.bak &

 

// Restore backup fiiles

Please proceed with following command: psql -U postgres -h localhost -d thingsboard < thingsboard.sql.bak

 

 

www.vultr.com/docs/how-to-backup-and-restore-postgresql-databases-on-ubuntu-16-04

 

SSD VPS Servers, Cloud Servers and Cloud Hosting by Vultr

Vultr Global Cloud Hosting - Brilliantly Fast SSD VPS Cloud Servers. 100% KVM Virtualization

www.vultr.com

 

 

sudo service thingsboard start

 

 

github.com/thingsboard/thingsboard/issues/2221

 

Error "Terminating application due to critical License Error ACTIVE_INSTANCES_CAPACITY_EXCEEDED(104)" · Issue #2221 · thingsbo

I bought a Maker license from thingsboard and installed PE on docker(macOS v10.14.6, Docker v19.03.4). I followed the instructions to run the professional edition but I got the error "Terminat...

github.com