Change Hyper-V IP addres in Synology Active Backup for Business
1. Enable SSH
3. Run SQLite3
sqlite3 /volume1/\@ActiveBackup/config.db
4. Determine inventory_id:
sqlite> SELECT inventory_id, host_name, host_addr FROM inventory_table;
1|172.26.1.3|172.26.1.3
5. Update IP address and host name (on row with correct inventory_id):
sqlite> update inventory_table set host_name = "172.26.1.3", host_addr = "172.26.1.3" WHERE inventory_id = '1';
6. Terminate SQLite3 program:
sqlite> .exit
7. Check Synology Active Backup for Business web interface if it’s ok…
Thank you!!!
18 dubna, 2024 at 12:39 pmWorking perfect.