Rhel

在 cron 中執行 rman 的問題

  • September 17, 2018

我在 cron 中安排的腳本有問題。在 cron 我有以下行:

33 09 * * 1-5 oracle /data1/backup/scripts-test/rman.sh > /data1/backup/log.txt 2> /data1/backup/log_err.txt

如您所見,我必須使用 oracle 使用者來執行 rman 腳本。RMAN.SH 如下所示:

#!/bin/bash
ORACLE_HOME="/data1/app/oracle/product/12.1.0.2/db_1"
ORACLE_SID="eelxtest"
PATH=$ORACLE_HOME/bin:$PATH
now="$(date)"
logloc="/data1/backup/scripts-test/log"
rmanscript="/data1/backup/scripts-test"
jboss="/usr/JBossEAP/jboss-eap-6.4/bin"
ip="x.x.x.x"
ServerGroup="EELX-Server-Group-Test"
logfile="$logloc/$(date '+%Y-%m-%d')_log.txt"
echo "============================================" | tee -a "$logfile"
date | tee -a "$logfile"
echo "STEP1 closing JBoss Server Group" | tee -a "$logfile"
$jboss/jboss-cli.sh --controller=$ip --connect /server-group=$ServerGroup:stop-servers | tee -a "$logfile"
echo "STEP2 oracle backup. See rman log." | tee -a "$logfile"
**$ORACLE_HOME/bin/rman msglog /data1/backup/scripts-test/log/$(date '+%Y-%m-%d')_rman.log cmdfile=$rmanscript/rman_backup.cmd**
echo "STEP3 starting jboss Server Group" | tee -a "$logfile"
$jboss/jboss-cli.sh --controller=$ip --connect /server-group=$ServerGroup:start-servers | tee -a "$logfile"]

rman_backup.cmd是:

connect target /
shutdown immediate;
startup mount;
run
{
allocate channel ch1 device type disk;
backup as compressed backupset full database format '/data1/extDirectories/xxx/yyy/oracle/test/%T_eelxtest_full_%u.bkp';
backup format '/data1/extDirectories/xxx/yyy/oracle/test/%T_archivelog_eelxtest_%u.bkp' >>(archivelog all delete input);
backup spfile;
backup current controlfile format '/data1/extDirectories/xxx/yyy/oracle/test/%T_ora_ctl_file_eelxtest_%u.bkp';
release channel ch1;
}
sql 'alter database open'

由於 cron 中的作業,有以下消息:

Message file RMAN<lang>.msb not found
Verify that ORACLE_HOME is set properly

因此,我已經ORACLE_HOME在配置文件 oracle 和 root 上進行了驗證,並且它位於*.bash_profile*中。此外,rman 跟踪或日誌中沒有提到任何內容,因為 rman 根本沒有啟動。

請幫忙。

托馬斯,

可能您必須通過以下方式導出變數 ORACLE_HOME;

export ORACLE_HOME

在腳本中聲明後:rman.sh

引用自:https://unix.stackexchange.com/questions/340518