public:8106_faq:how_to_perform_a_seedload_backup_and_import_cli

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revision Both sides next revision
public:8106_faq:how_to_perform_a_seedload_backup_and_import_cli [2021/02/26 17:11]
edward.chan
public:8106_faq:how_to_perform_a_seedload_backup_and_import_cli [2021/02/26 19:18]
edward.chan
Line 47: Line 47:
  <​ul>​  <​ul>​
   <​li><​font color=black>​   <​li><​font color=black>​
-   Login to AhsayOBM, execute the RunConfigurator.sh script file:+   Login to AhsayOBM, execute the RunConfigurator.sh script file in the AhsayOBM installation bin folder:
    <​br>​    <​br>​
    <​br>​    <​br>​
Line 174: Line 174:
    </​table> ​        </​table> ​    
 <​b>​Note</​b>:​ In the above example, the local destination path is /​usr/​local/​obm/​local_dest and the destination name is Local Dest. <​b>​Note</​b>:​ In the above example, the local destination path is /​usr/​local/​obm/​local_dest and the destination name is Local Dest.
 +<br>
 +<br>
 +For more details on the backupSet.xml backup set template, refer to Appendix A and B of the <a target=_blank href="​https://​download.ahsay.com/​support/​document/​v8/​guide_obm_quickstart_nix_cli_v8.pdf">​AhsayOBM Quick Start Guide for Linux (CLI)</​a>​.
 <br> <br>
 <br> <br>
Line 279: Line 282:
     </tr>     </tr>
    </​table>  ​    </​table>  ​
-<​b>​Note</​b>:​ In the above example, the 'local destination'​ (e.g. local_dest) was added properly, and the '​import destination'​ (e.g. AhsayCBS ​and a Google Drive Predefined destination) are also listed.+<​b>​Note</​b>:​ In the above example, the 'local destination'​ (e.g. local_dest) was added properly, and the '​import destination'​ (e.g. CBS and a Google Drive Predefined destination) are also listed.
  
  
Line 297: Line 300:
  <​ul>​  <​ul>​
   <​li><​font color=black>​   <​li><​font color=black>​
-   In the client user interfaceselect ​the 'Backup'​ tile: +   Edit the RunBackupSet.sh file in the AhsayOBM installation bin folder with a text editor such as VI Editor: 
-   <​br><​br>​ +   <​br>​ 
-      <img style="​width:20%border:thin solid black" ​src="http://wiki.ahsay.com/lib/exe/fetch.php?media=public:5152_4.png"/>​ +   <​br>​ 
-   ​<​br/>​ +   In this example, we will edit the file by adding the corresponding backup set's name (backup_set), the local destination's destination name (e.g. local_dest). We will also enable Full delta mode for full backup. 
-   <br/>+   <​br>​ 
 +   <br
 +    
 +    
 +    
 +    
 +   <​table border="​0"​ cellpadding="​0"​ cellspacing="​0"​ width="​750">​ 
 +    <​tr>​ 
 +     <​td style="​BACKGROUND-COLOR:​ black"
 +      <font size=2 color=white><​p ​style="​font-family:courier;"> ​  
 +      ############################## ​ RunBackupSet.sh ​ ###############################<​br>​ 
 +# You can use this shell script to run any of your backup sets from the        #<​br>​ 
 +# command line. Just customize the "User Defined Section"​ below with your      #<​br>​ 
 +# values for your backup action. ​                                              #<​br>​ 
 +################################################################################<​br><​br>​ 
 + 
 +#########################​ STARTUser Defined Section ##########################<​br><​br>​ 
 + 
 +# --------------------------------- BACKUP_SET ---------------------------------<​br>​ 
 +# | The name or ID of the backup set that you want to run                      |<​br>​ 
 +# | If backup set name is not in English, please use ID instead. ​              ​|<​br>​ 
 +# | e.g. BACKUP_SET="1119083740107" ​                                           |<​br>​ 
 +# |  or  BACKUP_SET="FileBackupSet-1" ​                                         |<​br>​ 
 +# |                                                                            |<​br>​ 
 +# | You can leave this parameter blank if you have only 1 backup set.          |<​br>​ 
 +# ------------------------------------------------------------------------------<​br>​ 
 +BACKUP_SET="​backup_set"<​br><​br>​ 
 + 
 +# -------------------------------- BACKUP_DESTS --------------------------------<​br>​ 
 +# | The list of name or ID of the backup destinations that you want to run.    |<​br>​ 
 +# | If backup destination name is not in English, please use ID instead. ​      ​|<​br>​ 
 +# | e.g. BACKUP_DESTS="​1740107119083" ​                                         |<​br>​ 
 +# |  or  BACKUP_DESTS="​Destination-1,​Destination-2" ​                           |<​br>​ 
 +# |  or  BACKUP_DESTS="​ALL" ​                                                   |<​br>​ 
 +# |                                                                            |<​br>​ 
 +# | You can specify multiple destinations in comma-separated format, ​          ​|<​br>​ 
 +# | or use "​ALL"​ to run backup for all destinations. ​                          ​|<​br>​ 
 +# ------------------------------------------------------------------------------<​br>​ 
 +BACKUP_DESTS="​local_dest"<​br><​br>​ 
 + 
 +# -------------------------------- BACKUP_TYPE ---------------------------------<​br>​ 
 +# | Set backup type. You don't need to change this if you are backing up a     ​|<​br>​ 
 +# | file backup set.                                                           ​|<​br>​ 
 +# | Options availableFILE/DATABASE/DIFFERENTIAL/​LOG ​                         |<​br>​ 
 +# | e.gBACKUP_TYPE="​FILE" ​         for file backup ​                          ​|<​br>​ 
 +# |  or  BACKUP_TYPE="​DATABASE" ​     for Full database backup ​                 |<​br>​ 
 +# |  or  BACKUP_TYPE="​DIFFERENTIAL" ​ for Differential database backup ​         |<​br>​ 
 +# |  or  BACKUP_TYPE="​LOG" ​          for Log database backup ​                  ​|<​br>​ 
 +# ------------------------------------------------------------------------------<​br>​ 
 +BACKUP_TYPE="​FILE"<​br><​br>​ 
 + 
 +# -------------------------------- SETTING_HOME --------------------------------<​br>​ 
 +# | Directory to your setting home.                                            |<​br>​ 
 +# | Default to ${HOME}/.obm when not set.                                      |<​br>​ 
 +# | e.g. SETTING_HOME="​${HOME}/.obm" ​                                          ​|<​br>​ 
 +# ------------------------------------------------------------------------------<​br>​ 
 +SETTING_HOME=""<​br><​br>​ 
 + 
 +# --------------------------------- DELTA_MODE ---------------------------------<​br>​ 
 +# | Set In-File Delta mode.                                                    |<​br>​ 
 +# | Options available: Incremental/Differential/​Full (I/​D/​F) ​                  ​|<​br>​ 
 +# | e.g. DELTA_MODE="​I" ​  for Incremental In-file delta backup ​                ​|<​br>​ 
 +# |  or  DELTA_MODE="​D" ​  for Differential In-file delta backup ​               |<​br>​ 
 +# |  or  DELTA_MODE="​F" ​  for Full File backup ​                                ​|<​br>​ 
 +# |  or  DELTA_MODE="" ​   for using backup set in-file delta setting ​          ​|<​br>​ 
 +# ------------------------------------------------------------------------------<​br>​ 
 +DELTA_MODE="​F"<​br><​br>​ 
 + 
 +# -------------------------------- CLEANUP_MODE --------------------------------<​br>​ 
 +# | You can enable Cleanup mode to remove obsolete files from your backup ​     |<​br>​ 
 +# | destinations after backup. ​                                                ​|<​br>​ 
 +# | Options availableENABLE-CLEANUP/​DISABLE-CLEANUP ​                         |<​br>​ 
 +# | e.g. CLEANUP_MODE="ENABLE-CLEANUP" ​                                        ​|<​br>​ 
 +# |  or  CLEANUP_MODE="​DISABLE-CLEANUP" ​                                       |<​br>​ 
 +# ------------------------------------------------------------------------------<​br>​ 
 +CLEANUP_MODE="​DISABLE-CLEANUP"<​br><​br>​ 
 + 
 +# --------------------------------- DEBUG_MODE ---------------------------------<​br>​ 
 +# | Set Debug mode.                                                            |<​br>​ 
 +# | Options available: ENABLE-DEBUG/DISABLE-DEBUG ​                             |<br
 +# | e.g. DEBUG_MODE="​ENABLE-DEBUG" ​                                            |<br
 +# |  or  DEBUG_MODE="​DISABLE-DEBUG" ​                                           |<​br>​ 
 +# ------------------------------------------------------------------------------<​br>​ 
 +DEBUG_MODE="​DISABLE-DEBUG"​ 
 +    </td> 
 +    </tr
 +   </table  
 +   
   </​font></​li>​   </​font></​li>​
-   +
-   +
-  ​+
   ​   ​
   <​li><​font color=black>​   <​li><​font color=black>​
-   Select ​the corresponding backup set for backup: +   Save, then exit from the text editor. 
-   <​br><​br>​ +   <​br>​ 
-      <img style="​width:​75%;​ border:thin solid black" src="​http://​wiki.ahsay.com/​lib/​exe/​fetch.php?​media=public:​5152_5.png"/​+   <​br>​ 
-   <​br/+   </​font></​li>​
-   <​br/>​ +
-  ​</​font></​li>​ +
-  ​+
   ​   ​
   ​   ​
   <​li><​font color=black>​   <​li><​font color=black>​
-   Click on the 'Show advanced option'​ button, ensure that the '​In-File Delta' type is set to '​Full'​+   Execute ​the RunBackupSet.sh file afterward: 
-   <​br/+   <​br>​ 
-   <​br/+   <​br>​ 
-  </font></​li+   <table border="​0"​ cellpadding="​0"​ cellspacing="​0"​ width="​750">​ 
-   +    <​tr>​ 
-   +     <​td style="​BACKGROUND-COLOR:​ black">​ 
-   +      ​<​font ​size=2 color=white><p style="​font-family:​courier;"> ​  
-  <li><font color=black+      root@hostname:​/usr/​local/​obm/​bin#​ sh RunBackupSet.sh<​br
-   Under 'Destination', deselect all destinations except for the newly created local destination+-<br> 
-   ​<​br><​br>​ +Using APP_HOME ​     : /​usr/​local/​obm<​br>​ 
-      <img style="​width:75%; border:thin solid black" src="​http://wiki.ahsay.com/lib/exe/fetch.php?​media=public:5152_6.png"/> +Using SETTING_HOME ​ : <br> 
-   ​<br/+Using JAVA_HOME ​    : /​usr/​local/​obm/​jvm<br> 
-   ​<​br/>​ +Using JAVA_EXE ​     : /​usr/​local/​obm/​jvm/​bin/​java<br> 
-  </font></li+Using JAVA_OPTS ​    : -Xrs -Xms128m -Xmx768m -XX:​MaxDirectMemorySize=512m -client -Dsun.nio.PageAlignDirectMemory=true<​br
-   +Using JNI_PATH ​     : -Djava.library.path=.:​./​LinX64<​br>​ 
-   +Using CLASSPATH ​    : .:​./​cb.jar<​br>​ 
-   +-<​br>​ 
-  <li><font color=black+Running Backup Set - 'backup_set' ​...<​br>​ 
-   Click 'Backup' to start the initial backup. +[2021/02/26 19:04:26] [info] [-] Start [ AhsayOBM v8.5.0.63 ]<br> 
-  </​font></​li>​+[2021/02/26 19:04:26] [info] [-] Saving encrypted backup set encryption keys to server...<br> 
 +[2021/02/26 19:04:28] [info] [1614318606096] Start Backup ... [In-File Delta: Full]<​br>​ 
 +[2021/02/26 19:04:28] [info] [1614318606096] Using Temporary Directory /​root/​temp/​1614311678846/​Local@1614318606096<br> 
 +[2021/02/26 19:04:31] [info] [-] Start running pre-commands<​br>​ 
 +[2021/02/26 19:04:31] [info] [-] Finished running pre-commands<​br>​ 
 +[2021/02/26 19:04:31] [info] [1614318606096] Downloading server file list...<​br>​ 
 +[2021/02/26 19:04:34] [info] [1614318606096] Downloading server file list... Completed<​br>​ 
 +[2021/02/26 19:04:35] [info] [1614318606096] Reading backup source from hard disk...<​br>​ 
 +[2021/02/26 19:04:35] [info] [1614318606096] [New Directory]... /<br
 +[2021/02/26 19:04:35] [info] [1614318606096] [New Directory]... /usr<​br>​ 
 +[2021/02/26 19:04:35] [info] [1614318606096] [New Directory]... /usr/local<br
 +[2021/02/26 19:04:35] [info] [1614318606096] [New Directory]... /​usr/​local/​backup_source<​br
 +[2021/02/26 19:04:36] [info] [1614318606096] Reading backup source from hard disk... Completed<br> 
 +[2021/02/26 19:04:36] [info] [1614318606096] [New File]... 100% of "/​usr/​local/​backup_source/​dir/​.../​data"<​br> 
 +[2021/02/26 19:04:36] [info] [1614318606096] [New File]... 100% of "/​usr/​local/​backup_source/​dir/​.../​data"​<br> 
 +[2021/02/26 19:04:37] [info] [1614318606096] Start validating the presence and size of backup data in destination "​local_dest"​...<​br
 +<br> 
 +...<​br>​ 
 +...<​br>​ 
 +<br> 
 +[2021/02/26 19:04:43] [info] [1614318606096] Deleting temporary file /​root/​temp/​1614311678846/​Local@1614318606096<br
 +[2021/02/26 19:04:44] [info] [1614318606096] ​Backup ​Completed Successfully<​br>​ 
 +    </​td>​ 
 +    </​tr>​ 
 +   </​table> ​  
 +   </​font></​li>​ 
 + 
  </​ul>​  </​ul>​
- <​br/>+ <​br
 +<br>
  
  
  
  <​b>​  <​b>​
-  3. Import the data from the local destination (e.g. the removable hard drive) to the AhsayCBS ​server.+  3. Import the data from the local destination (e.g. the removable hard drive) to the AhsayCBS ​and Predefined destination.
  </​b>​  </​b>​
  <​br/>​  <​br/>​
public/8106_faq/how_to_perform_a_seedload_backup_and_import_cli.txt · Last modified: 2021/12/14 08:50 by anna.olalia

Page Tools