KB ID: 10146
Product: Storware Backup & Recovery
Version: 5.x 6.x
Published: 2023-07-31
Last modified: 2023-07-31
Problem
How to move vprotect database into remote database server.
Solution
Stop Storware Backup & Recovery server:
# systemctl stop vprotect-server
Create database backup from existing server:
# /opt/vprotect/scripts/backup_db.sh
Copy
/tmp/vprotect_db.sql.gz
to MariaDB server (example# scp /tmp/vprotect_db.sql.gz root@mariadb.server.address:/tmp
)Create database (example
# mysql -uroot -pDBPASSWORD -e "create database vprotect"
)import database into MariaDB:
gunzip < PATH_TO_GZIPPED_BACKUP | mysql -uroot -pDBPASSWORD vprotect
On Server Machine edit
# vi /opt/vprotect/payara.properties
Uncomment and set correctly variables (if you use FQDN names you need to set it in
/etc/hosts
or in DNS server). You need set address to MariaDB, listening port and Password to database:eu.storware.vprotect.db.host=mariadb.server.address eu.storware.vprotect.db.port=3306 [...] eu.storware.vprotect.db.password=DBPassword
Start Storware Backup & Recovery server:
# systemctl start vprotect-server
If necessary restart nodes
# systemctl start vprotect-node