Hi
I have mattermost version 10.7 and I want to install a new fresh server with the latest mattermost version and restore the current database backup on the new server with the following command:
Backup command on the old server:
docker exec pg_dump -U DBUsername -F t DBName > mydb.tar
Restore command on new server
docker exec -i mattermost-postgres-1 pg_restore -U mmuser–no-owner -d mmdb /tmp/mydb.tar
but as soon as I restore the backup the high availibility feature will no longer work although before restoration it’s ok.
How can I solve the problem?