HOW TO Restore From Backup File

To restore the system from the backup file:

  • Login to the system shell as a root user
  • Navigate to the opt directory
cd /opt
  • Stop services
/opt/pbxware/sh/stop /opt/httpd/sh/stop
  • Unpack backup
tar --numeric-owner -xvf /PATH/TO/BACKUP

Where PATH/TO/BACKUP is a full path to your backup file.

  • Once backup is completed start the services:
/opt/pbxware/sh/start

/opt/httpd/sh/start
```sh
Scroll to Top