自動バックアップ手順では、対話型バックアップ手順とほぼ同様に構成データとアカウンティングデータがバックアップされます。無人バックアップまたは定期的なバックアップをスケジュールする場合は、自動バックアップ手順を cron ジョブとして実行できます。自動バックアップには構成ファイルが必要で、そのテンプレートは sge_root/ util/install_modules/backup_template.conf ファイルにあります。
構成ファイルテンプレート内には、実際の環境でどの値を使用すべきかを示したコメントがあります。
構成ファイルの設定後、次のコマンドを入力すると自動バックアップが開始されます。
% ./inst_sge -bup -auto full-path-to-configuration-file |
既存のバックアップファイルを上書きしないよう、構成ファイルで指定されたバックアップディレクトリ名に、日付と時刻の組み合わせが追加されます。
#--------------------------------------------------- # Autobackup Configuration File Template #--------------------------------------------------- # Please, enter your SGE_ROOT here (mandatory) SGE_ROOT="/opt/gridengine" # Please, enter your SGE_CELL here (mandatory) SGE_CELL="default" # Please, enter your Backup Directory here # After backup you will find your backup files here (mandatory) # The autobackup will add a time /date combination to this dirname # to prevent an overwriting! BACKUP_DIR="/opt/backups/ge_backup" # Please, enter true to get a tar/gz package # and false to copy the files only (mandatory) TAR="true" # Please, enter the backup file name here. (mandatory) BACKUP_FILE="backup.tar" |