How to restore system from Backup which are made from GUI

From Kolmisoft Wiki
Revision as of 15:48, 16 January 2012 by Admin (talk | contribs) (→‎Workflow)
Jump to navigationJump to search



About

The backup system backs up the MOR database and allows it to be restored at any time. More information about Backups from MOR GUI you can be found here

Workflow

1. Connect to your server over ssh and go to backup folder:

cd /usr/local/mor/backups

Untar backup:

tar xvfz backupname.tar.gz 

2. Stop Apache and Asterisk services:

/etc/init.d/httpd stop
killall -9 safe_asterisk 
killall -9 asterisk 

3. Data base import:
Import file which you gunziped at first step.

mysql mor < backupname.sql

4. Data base update:

Notice:

Your DB version must be the same as GUI.

How to check GUI version type this command:

svn info /home/mor | grep URL | awk -F"/" '{print $NF}'

Then upgrade to your version as you checked with previous command:

svn update /usr/src/mor
cd /usr/src/mor/db/[9,10,x] and run import_changes.sh of your checked version.

5. Restart mysql:

/etc/init.d/mysqld restart 

6. Start stoped services:

Starting Apache:

/etc/init.d/httpd start

Starting Asterisk:

/etc/init.d/asterisk start