JUSTbackupz

Client Web login

FREE 14 days Trial

 
JUsTbackupz solutions pricing reseller support about us
Online Benefit How Does it work? Database Backup Online Security Feature Comparasions Enterprise Solutions
UK Pricing US Pricing
Becoming a reseller Apply
Who we are? Investor Relations Credentials Contact Us
FAQ Screen Shots Flash Tutorials Download Software

OS support
  • Apple Mac OX X v10.x
  • Windows 95/98/ME/
    NT/2000/XP/2003
  • Red Hat linux 6.0 or later
  • Novell NetWare 5.1 or later
  • Sun Solaris 2.5 or later

  • Database support
  • Microsoft SQL Server
  • Microsoft Exchange Server 2000/2003
  • IBM Lotus Domino / Notes 5.0 or later
  • Oracle 8i or later
  • MySQL 3.23.42 or later



  • System Requirement
    Memory 128MB (minimum)
    256MB (recommended)
    Disk Space 100MB
    Network Protocol: TCP/IP (http/https)


    Credentials
    US
    Lancaster Chamber and Commerence
    UK
    Brighton Chamber and Commerce
    Sussex Enterprise
    Federation of Small Business
    Ecademy
    CADIA


    Reseller
    SW soft Inc
    Nominet UK
    Thawte
     

    Backup/Restore MySQL Server

    This chapter will describe how to use JUSTbackupz to backup your MySQL and how you can restore your MySQL from the backup files.

    Requirements

    1. JUSTbackupz must be installed onto the computer running MySQL server
    2. Data from MySQL server will be backed up to a temporary directory before they are sent to JUSTbackupz Offsite Backup Server (OBS). Please make sure you have sufficient space on your computer to store these data when you run the backup job.
    3. There must be a MySQL account that can be used to connect from localhost

    Add two new MySQL accounts for JUSTbackupz Backup Manager


    mysql> GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' > IDENTIFIED BY 'some_pass';
    mysql> GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost'.localhost.localdomain > IDENTIFIED BY 'some_pass';
    mysql> FLUSH PRIVILEGES;

    They are superuser accounts with full privileges to do with a password of some_pass.

    Overview

    JUSTbackupz OBM will back up your MySQL server by taking the following steps:
    1. Run all Pre-Commands of this backup set
    2. All databases selected are backed up to a temporary directory specified in its backup set
    3. Run all Post-Commands of this backup set
    4. Upload all backup files from the temporary directory to an JUSTbackupz Backup Server

    How to Backup MySQL server

    Please follow the instructions below to backup your MySQL server using JUSTbackupz OBM:
    1. Open Just backupz
      Right click JUSTbackupz icon available in the system tray and choose [Open]

    2. From the Menu, Choose [Backup Set] > [New] > [MySQL Backup Set] Create a backup set
    1. From the Menu, Choose [Backup Set] > [New] > [MySQL Backup Set]

    2. Enter a name for your backup set

    3. Enter the root password, the MySQL server TCP/IP port number anf the path to MySQL backup utility (mysqldump)
    4. Select the database to be backup

    5. Enter a temporary directory for storing the backup files before they are sent to an JUSTbackupz OBS, e.g. C:\Backup\MySQL
    6. Set the backup schedule for Database Backup

    7. Set the encryption algorithm, encryption mode and encrypting key for this backup set

      (Hint: For maximum security, please select AES(Advanced encryption Standard) Algorithm, CBC (Cipher Block Chaining) mode and use an encrypting key with more than 8 characters.)

       

    1. Run Backup

       

    1. Select the backup set you want to run on the left panel and press the [Start Backup] button
    2. Select [Off-site Backup Server] to start backing up your files to an JUSTbackupz OBS and press OK

    3. You should get something similar to the screen shot below

    How to Restore MySQL server

    Please follow the instructions below to restore MySQL server from an JUSTbackupz OBS
    1. Download the database backup files to be restored from JUSTbackupz OBS
    2. Restore the database named [db_name] from the database backup file [db_name.sql]:
    1. Connect to th MySQL server
      shell>mysql
    2. Create the database to be restored
      mysql>CREATE DATABASE IF NOT EXISTS db_name
    3. Restore the database backup file into the MYSQL server
      shell>mysql db_name db_name.sql
    1. Repeat the same procedure for each database to be restored to the MySQL Server
    2. Completed