To move the system to another server:
Automatic - Login to the system administration
- Navigate to 'Site Settings: Backup'
- Set 'Backup type'='Auto'
- Set 'Backup at'=$TIME (where $TIME is set to 12:00 for example)
- Set 'Replace previous day'='Yes'
- Once the backup is created, the 'backup' directory will be found under '/home/servers'
Manual - Login to the system shell as a root user
- Stop the services
/home/servers/sitemanager/sh/stop /home/servers/pbxware/sh/stop /home/servers/httpd/sh/stop tar cvf backup.tar /home/servers/ && gzip backup.tar.gz - Copy the backup file to the new server
scp backup.tar.gz $IPADDRESS:backup.tar.gz' (where $IPADDRESS stands for 192.168.1.20 for example) - Move the file to the correct path
mv /root/backup.tar.gz /home
tar -zxf backup.tar.gz
/home/servers/sitemanager/sh/start /home/servers/pbxware/sh/start /home/servers/httpd/sh/start - Open the new server IP address in web browser (You should probably get a 'license error'. Contact Bicom Systems account manager and provide new IP and MAC address for appropriate changes)
|