/etc/udev/rules.d/50-windrvr.rules does not exist, creating...
/etc/udev/rules.d/50-windrvr.rules updated with JungoWinDriver permissions. Installed WinDriver for FT Server mode. NetBackupFibre Transport Server started.
Would you like to make these changes persist after a reboot? [y,n] (y) y Running mkinitrd. Previous initrd image is saved at /boot/initrd-2.6.18-194.el5.img.03-23-
12.13:20:23.
SSID Change: MUST REBOOT TO COMPLETE INSTALLATION.
完成后重启FT Media Server 6 验证服务
重启完成后验证FT Media Server针对SAN Client的服务是否启动 查看是否有下面标红的服务
[root@ ~]# cd /usr/openv/netbackup/bin/ [root@ bin]# ./bpps
root 2873 1 9 13:27 ? /usr/openv/netbackup/bin/nbftsrvr
root 3138 1 0 13:27 ? /usr/openv/netbackup/bin/vnetd -standalone
root 3143 1 0 13:27 ? /usr/openv/netbackup/bin/bpcd -standalone
root 3147 3143 0 13:27 ? 00:00:00 [bpcd]
root 3331 1 0 13:27 ? /usr/openv/netbackup/bin/nbrmms
root 3353 1 0 13:27 ? /usr/openv/netbackup/bin/nbsl
root 3408 1 0 13:27 ? /usr/openv/netbackup/bin/nbsvcmon
root 3770 2873 12 13:27 ? /usr/openv/netbackup/bin/nbfdrv64 -m=0x4a0009 -v=1 -s=256K
00:00:05 00:00:00 00:00:00
00:00:00 00:00:00 00:00:00 00:00:00 00:00:02
到这里 FT Media Server端就配置完成了。
7 配置SAN 客户端
AIX Client配置:
执行/usr/openv/netbackup/bin/bpclntcmd–sanclient 1启用SAN Client
执行/usr/openv/netbackup/bin/bp.kill_all停止服务 执行/usr/openv/netbackup/bin/bp.kill_al启动NBU服务
执行/usr/openv/netbackup/bin/bpps -x确认nbftclnt服务是否正常启动。 执行系统命令cfgmgr-v后利用lsdev–Cctape确认识别到ARCHIVE Python 的驱动器
8 Master Server 中配置查看 SAN Client 正确的配置;类似下图:
到此,SAN Client配置全部完成。
注意:如果SAN Client没有发现2个Client HBA Num,请去客户端重新扫描下并重启nbu服务。 .
二、 配置SAP的备份脚本和参数文件
1 为backint文件创建NetBackup的链接
ln –s /usr/openv/netbackup/bin/backing /usr/sap/CEP/SYS/exe/run/backing 说明:此SAP数据库的SID为CEP
2 创建并修改备份脚本和参数文件
2.1 创建备份脚本存放路径;
/usr/openv/scripts 2.2 复制脚本模本;
脚本模板放在客户端/usr/openv/netbackup/ext/db_ext/sap/scripts下,复制sap_online_backup到新建的脚本目录下。 如新建脚本存放路径为/usr/openv/scripts 然后执行以下步骤:
#cd /usr/openv/netbackup/ext/db_ext/sap/scripts #cpsap_online_backup /usr/openv/scripts #chmod 777 sap_online_backup
2.3 修改红色部分的sap_online_backup的备份脚本;
#bcpyrght
#*************************************************************************** #* $VRTScprght: Copyright 1993 - 2012 Symantec Corporation, All Rights Reserved $ * #*************************************************************************** #ecpyrght #
#NOTE:IF your SAP user (in this script orasap) runs in C shell, environmental #variables can not be exported. In that case, you should modify this script to #work in your environment. For example:
# SAP_SERVER=$SAP_SERVER; export SAP_SERVER; (Correct for Bourne and Korn shells) # can change into
# setenv SAP_SERVER $SAP_SERVER; (Correct for C shell) # #
#This environment variable are created by Netbackup (bphdb) #
echo \echo \echo \echo \echo \
echo \
RETURN_STATUS=0
# SAP_ENV - Holds environmental variables. SAP_ENV=\ #
# If SAP_SERVER exists then export it to make it available to backint. #
if [ -n \then
SAP_ENV=\
#if Oracle DBA acount(orasap user) uses C Shell,comment the above line and uncomment the next line #SAP_ENV=\fi #
# If SAP_POLICY exists then export it to make it available to backint. #
if [ -n \then
SAP_ENV=\
#if Oracle DBA account(orasap user) uses C Shell, comment the above line and uncomment the next line # SAP_ENV=\fi #
# If SAP_SCHED exists then export it to make it available to backint. #
if [ -n \then
SAP_ENV=\
#if Oracle DBA account(orasap user) uses C Shell, comment the above line and uncomment the next line # SAP_ENV=\fi

