Command Line Interface - Backup

Generate the Command Line Script from the CommCell Console

In order to run the backups from command line, you need an input xml file which contains the parameter values for configuring the backup options. This input xml file can be obtained by generating the script from the CommCell Console and saving it on the computer from where the backup will be performed.

Follow the steps given below to generate a script which you can use to perform a backup from the command line interface:

  1. From the CommCell Browser, navigate to <Client> | MySQL | <Instance> | defaultBackupSet.

  2. Right click the <Subclient> and click Backup.

  3. Select the required backup options which you want to execute using the script.

  4. Click Save as Script.

    save_script - backupklzzwxh:0047ysqlklzzwxh:0048ave_script.png

  5. Enter the location to save the script along with the file name and extension. For example, "C:\scripts\myscript.bat" on Windows and "/usr/scripts/myscript.sh" on Unix. Alternatively, you can also click Browse and navigate to the location.

    The script will be saved as a .xml file and .bat/.sh file.

    If a file with the same name already exists in the specified location, both the .xml and .bat/.sh files will be overwritten.

  6. Enter the username and password for the user account which you want to use to perform the backup.

    By default, the user account which you have used to login to CommCell console is used for performing the backup. However, if the user account does not have access to any application or database, click Use a different account.

  7. Click OK.

    save_as_script2

Perform the Backup

  1. From Command prompt, navigate to <Software_Installation_Directory>/Base and run the following command:

    qlogin -cs <commserve name> -u <user name>

  2. Navigate to the location where the .xml file is saved and execute the saved .xml script using the qoperation execute command.

    qoperation execute -af backup.xml -appName 'MySQL' -clientName xxxxx -instanceName xxxxx -subclientName xxxxx -backupLevel FULL

  3. Verify the status of the job using the following command:

    qlist job -j jobID
  4. Once the job completes, log off from the CommServe using the qlogout command.

    qlogout [−cs <commserve_host_name>] [−all] [−tf <tokenfile>] [−tk <token>] [−h]
Examples

Performing a Full Backup

qoperation execute -af backup.xml -appName 'MySQL' -clientName client1 -instanceName instance1 -subclientName subclient1 -backupLevel FULL

Performing an Incremental Backup

qoperation execute -af backup.xml -appName 'MySQL' -clientName client1 -instanceName instance1 -subclientName subclient1 -backupLevel INCREMENTAL

Loading...