程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> Oracle數據庫 >> Oracle數據庫基礎 >> TSM Server,Client,TDPO安裝配置手記

TSM Server,Client,TDPO安裝配置手記

編輯:Oracle數據庫基礎

TSM Server、ClIEnt 、TDPO安裝配置手記

一、TSM安裝規劃

H50a: 生產機1

H50b:生產機2

磁帶機與h50b連接

H50b:

  ◆ 創建卷組-à建立邏輯卷-à建立文件系統

  ◆ 安裝TSM Server,TSM ClIEnt,TDP for Oracle  

  ◆ TSM Server用到的db,log,data數據文件存放於/usr/Tivoli/tsm/tsmdata中。

    Db: db01.dsm 513 M

    Log: log01.dsm 513 M

    Data: bkvol.dsm 2047M

    arcvol.dsm 512M

    dbbak:513M(用於備份db)**

    (磁盤存儲池卷應該足夠大,至少能容納客戶機一天的備份)

  二、安裝Tivoli Storage Manager Server/ClIEnt

  1. 創建卷組tsmvg(B機整個hdisk1本地硬盤作為tsmvg)

  2. 激活卷組tsmvg :varyon tsmvg

  3. 在tsmvg上建立邏輯卷tsmlv,大小為320LP(320*16M=5G),然後在tsmlv上建立文件系統/usr/tivoli/tsm;

# smitty mklv
Logical volume NAME			[tsmlv]
* VOLUME GROUP name			[tsmvg]
* Number of LOGICAL PARTITIONS		[320]
……
# smitty crjfslvbf
* LOGICAL VOLUME name			tsmlv
* MOUNT POINT				[/usr/tivoli/tsm]
Mount AUTOMATICALLY at system restart?	yes
……
Allocation Group Size (MBytes)		8
# mount /dev/tsmlv

  注:因為TSM Server默認將TSM安裝到/usr/tivoli/tsm下,所以用該路徑做安裝點。

  4. 確認/usr文件系統至少有300M剩余空間,否則使用# smitty chfs增加空間。

  5. TSM Server安裝:(要安裝7個文件集)

  將TSM Server for AIX放入光驅以root用戶身份執行命令:

# smitty installp
Install and Update from LATEST Available Software ->
*INPUT device / directory for software -> /dev/cd0(用F4進行選擇)
*SOFTWARE to install [-all_latest] (用F4進行選擇)

  (安裝除64位和AIX5例如:tivoli.tsm.server.aix5.rte64外的所有文件集。)

COMMIT software updates?        [no]
SAVE replaced files?              [yes]

  6. 執行以下命令,就可以啟用Web管理界面了。

  # cd /usr/tivoli/tsm/server/bin
  # dsmserv runfile /usr/tivoli/tsm/server/webimages/dsmserv.idl

  7. 重新啟動:shutdown -Fr

  8. 重啟以後,就可以使用TSM了。

  9. ClIEnt安裝:(客戶端要安裝9個文件集)

  將TSM UnixBackup/Archive ClIEnts V2.2放入光驅,執行上述相同的操作。

  安裝完成後,運行下述命令確保以下文件集安裝:

  # lslpp -l | grep tsm

  10. 安裝TSM後,/etc/inittab文件被修改,確認包含如下文本行,否則請自行添加:

autosrvr:2:once:/use/tivoli/tsm/server/bin/rc.adsmserv>
  /dev/console 2>
  &1 #start the Tivoli Storage Manager server

  查看TSM的進程:# ps -ef | grep dsm

root  7028     1   0 09:42:31	
  -	0:00 ksh /usr/tivoli/tsm/server/bin/rc.adsmserv
root  9546     1   0 09:42:29	
  -	0:00 /usr/tivoli/tsm/client/hsm/bin/dsmrecalld
root  9804     1   0 09:42:29	
  -	0:00 /usr/tivoli/tsm/client/hsm/bin/dsmmonitord
root	10584  7028   0 09:42:31	
  -	0:00 dsmserv quIEt 
root	11378  7740   1 09:47:15	
  0	0:00 grep dsm

  如果TSM沒有運行,請運行:/usr/Tivoli/tsm/server/bin/rc.adsmserv &(以後台方式運行)

  TSM Server 缺省路徑:/usr/tivoli/tsm/server/bin/

  TSM Backup/Archive Client 缺省路徑:/usr/tivoli/tsm/clIEnt/ba/bin/

  三、配置TSM Server/ClIEnt

  ◆ 配置TSM客戶端

  1. 建立Tivoli Storage Manager 選項文件:復制樣本客戶機系統選項文件(dsm.sys.smp)和樣本客戶機用戶選項文件(dsm.opt.smp):

# cd /usr/tivoli/tsm/clIEnt/ba/bin
# cp dsm.opt.smp dsm.opt
# cp dsm.sys.smp dsm.sys

  2. 編輯該文件使之包含下面列出的選項:

# vi /usr/tivoli/tsm/client/ba/bin/dsm.opt
 SErvername  tsmserver
TAPEPROMPT yes
  # vi /usr/tivoli/tsm/client/ba/bin/dsm.sys
在dsm.sys中添加:	SErvername		tsmserver
COMMmethod		TCPip
TCPPort				1500
TCPServeraddress		172.16.18.2
Nodename			clIEnt
PassWordAccess		generate

  3. 現在可以使用管理客戶端dsmadmc了。

  ◆ 配置TSM服務器

  1、 配置TSM Server:

  2、創建TSM數據庫文件:

# mkdir /usr/Tivoli/tsm/tsmdata
# cd /usr/Tivoli/tsm/tsmdata
# dsmfmt -db db01.dsm 513
# dsmfmt -log log01.dsm 513
# dsmfmt -data bkvol.dsm 2047
# dsmfmt -data arcvol.dsm 513

  3. 進入/usr/tivoli/tsm/clIEnt/ba/bin執行下列命令(用戶/密碼:admin/admin)進入管理界面並注冊許可文件(以TSM>開頭的命令均為在管理界面中執行的命令):

# dsmadmc
	TSM> register license file=*.lic

  注冊NODE(注冊節點tdp_h50b、tdp_h50a,ora817):

TSM>register node tdp_h50b tdp_h50b backdelete=yes(node名為tdp_h50b,密碼這tdp_h50b)
  TSM>register node tdp_h50a tdp_h50a backdelete=yes
  TSM>register node ora817 ora817 backdelete=yes
	TSM> quit

  4. 在PC計算機的浏覽器中輸入:http://172.16.18.2:1580/,輸入管理員的用戶名和密碼後,從Web界面來配置TSM服務器。在使用Web管理界面時確保服務器選項文件/usr/tivoli/tsm/server/bin/dsmserv.opt中包含如下行:

COMMethod		HTTP
HTTPPOrt		1580

  5. 安裝、配置3570磁帶庫

  在RS 6000上安裝3570驅動程序有兩種方法:

  2 運行:# installp -acXd /pathname/Atape.5.4.4.0.bin Atape.driver。如果已經安裝了相同版本的驅動程序,可使用"-F"執行強制安裝。安裝完成後使用下列命令列出當前安裝的Atape.driver的版本:

  # lslpp -l Atape.driver

  ◆ 將3570的驅動程序Atape.5.4.4.0.bin復制到任意目錄,這裡復制到/tmp下。執行:

# smit installp
Install and Update from LATEST Available Software ->
INPUT device / directory for software -> /dev/cd0
* INPUT device / directory for software		/tmp
* SOFTWARE to install					[Atape ]
PREVIEW only? (install Operation will NOT occur)	no
COMMIT software updates?				yes
SAVE replaced files?					yes
Process multiple volumes?				yes
……

  使用下列命令列出當前安裝的Atape.driver的版本:

  # lslpp -l Atape.driver

  確認Magstar MP連接到適配器並安裝了上述驅動程序,配置並激活Magstar MP 3570。沒有配置、激活的Magstar MP是不能使用的。

  為了連接3570庫中的驅動器請運行命令:

# smit dev
Tape Drive ->
Add a Tape Drive ->(如何沒有安裝3570驅動程序,就沒有3570的選項)
"3570  scsi  IBM Magstar MP Tape Subsystem"-->
"scsi1 Available 10-70 Wide SCSI I/O Controller"-->
Tape Drive type		3570
Tape Drive interface	scsi
Description		 IBM Magstar MP Tape Subsystem
Parent adapter		scsi1
* CONNECTION address	[1,0]
……
注:CONNECTION address:第1 SCSI標識:SCSI ID
                          第2 SCSI邏輯單元號:(lun)

  如果看到"rmt1 Available"消息就表示配置完成了。rmt1表示TSM使用的特殊文件名。

  使用下面的命令來配置並激活Magstar MP 3570磁帶子系統:

  # cfgmgr

  輸入不帶參數的命令:cfgmgr。該命令配置所有已知的設備包伙新添加的Magstar MP設備。輸入下列命令來校驗配置是否成功:

  # lsdev -Cc tape

  # ls -l /dev/rmt1.smc

  注:設備文件/dev/rmt1.smc非常重要,它是由3570庫使用SCSI介質換片器的特殊文件。如果該文件不存在,則無法進行下面的配置。

  6. 按下列步驟配置3570庫:

◆ 	Operation View ->
Manager Security ->
Set web authentication time out ->
change 10 to 60 -> 60
◆ 	Object View ->
Server Storage ->
Libraries and Drives ->
Automated Libraries ->
Operations: -> Define Automated Library
library name		3570lib
device			/dev/rmt1.smc
Share Library		NO
◆ 	Object View ->
Server Storage ->
Libraries and Drives ->
Automated Drives ->
Operations: -> Define Automated Drive
Library Name		3570lib
Drive Name		3570drv
Device			/dev/rmt1
Element			16
Device On-Line	YES
◆ 	Object View ->
Server Storage ->
Device Classes ->
3570 Device Classes ->
Operations: -> Define Device Class
Device Class Name		3570C11
Recording Format		3570C
Library Name			3570lib
Mount Limit			DRIVES
Mount Retention		60
Tape Volume Prefix		ADSM
Mount Wait			60
◆ 	Object VIEw ->
Server Storage ->
Storage Pools ->
Sequential Access Storage Pools ->
Operations: -> Define Sequential Access Storage Pool
Storage Pool Name			3570pool
Device Class				3570C11
Description				Backup Oracle Database
……
Collocate?				NO
Maximum Scratch Volumes	20
Allowed
……
Migration Continue			YES
◆ 	Object View ->
Server Storage ->
Storage Pools ->
Disk Storage Pools ->
ARCHIVEPOOL -> Volumes ->
Operations: -> Define a disk storage pool volume
Storage Pool Name		ARCHIVEPOOL
Volume Name			/usr/tivoli/tsm/tsmdata/arcvol.dsm
Media Access Status	READWRITE
Format Size
Wait					YES
◆ 	Object VvIEw ->
Server Storage ->
Storage Pools ->
Disk Storage Pools ->
BACKUPPOOL -> Volumes ->
Operations: -> Define a disk storage pool volume

Storage Pool Name		BACKUPPOOL
Volume Name	/usr/tivoli/tsm/tsmdata/bkvol.dsm
Media Access Status	READWRITE
Format Size
Wait					YES
◆	Object View ->
Server Storage ->
Storage Pools ->
Disk Storage Pools ->
ARCHIVEPOOL ->
Operations: -> Update a disk storage pool

Next Storage Pool		3570pool
◆	Object View ->
Server Storage ->
Storage Pools ->
Disk Storage Pools ->
BACKUPPOOL ->
Operations: -> Update a disk storage pool

Next Storage Pool		3570pool
◆	Object View ->
Database ->
Database Volumes ->
Operations: -> Define Database Volume

Volume Name	/usr/tivoli/tsm/tsmdata/db01.dsm
Format Size
Wait					YES
 Object View ->
Database ->
Database Volumes ->
Operations: -> Define Database Copy

Database volume name	/usr/tivoli/tsm/tsmdata/db01.dsm
Copy Volume Name	/usr/tivoli/tsm/tsmdata/db02.dsm
 
◆	Object View ->
Recovery log ->
Recovery log Volumes ->
Operations: -> Define Recovery log Volume

Volume Name		/usr/tivoli/tsm/tsmdata/log01.dsm
Format Size
Wait					YES

◆	Select Object VIEw ->
Recovery log ->
Recovery log Volumes ->
Operations: -> Define Recovery log Copy

Database volume name	/usr/tivoli/tsm/tsmdata/log01.dsm
Copy Volume Name	/usr/tivoli/tsm/tsmdata/log02.dsm

四、標記磁帶卷並檢入庫

  所有的磁帶卷在TSM使用前都必須標記,只有標記過的磁帶卷才能由庫進行管理。為確保下列命令順利執行,在操作面板上選擇"SET LIBR MODE"->"Random"->"Cancel"。

  1. 執行以下命令標記磁帶卷:

  # cd /usr/tivoli/tsm/server/bin

  # ./dsmlabel -drive=/dev/rmt1,16 -library=/dev/rmt1.smc -search -keep [-overwrite]

  注意:Picker(揀選器)將裝入可用的磁帶卷,然後提示管理員一個一個的輸入卷標名。卷標名在1-6個字符之間,可自行定義。這裡定義為tape01-tape10。

  2. 當磁帶卷全部標記完後,再將磁帶卷檢入庫:

  # dsmadmc

  # TSM> checkin libvolume 3570lib search=yes status=scratch devtype=3570

  注意:該命令將磁帶卷定義為臨時卷。

  3. 將磁帶卷tape01定義為3570lib的專用卷:

  TSM> define volume 3570pool tape01

  注意:磁帶卷tape01成為專用卷,就是說tape01屬於存儲池。如果要定義專用卷,參數"Maximum Scratch Volumes Allowed"必需大於0。至此,TSM的安裝全部完成。

  4. 可以檢入一個指定磁帶進庫

  前台運行 # cd /usr/tivoli/tsm/server/bin

#dsmserv

  首先,checkin之前,3570上必須有空槽,若沒有,先checkout一磁帶。

  TSM> checkin libv 3570lib tapexx status=scratch(數據帶時為private)

  把磁帶放入31槽中,根據提示,執行reply pp命令,系統自動把此磁帶移入3570的空槽中,並記錄在案。

  5. checkout一個指定磁帶

  TSM>checkout libv 3570lib tapexx

  系統會自動取出指定磁帶,移到3570的31槽,應及時取走,並根據提示執行reply pp命令,向系統確認已經取走磁帶。

  checkout多個磁帶

  直接取出整個磁帶架,把磁帶取出,插入空磁帶架,發出命令:

  TSM>audit library 3570lib

  6. 將新磁帶添加到Storage Pool中:

  TSM>defi volume 3570pool tape02

  五、測試

  從備份客戶機進行

  從命令行執行下列命令:

# cd /usr/tivoli/tsm/server/bin
# dsmc
Tivoli Storage Manager
Command Line Backup Client Interface - Version 3, Release 7, Level 0.0
(C) Copyright IBM Corporation, 1990, 1999, All Rights Reserved.
TSM> incr /tmp
Node Name: CLIENT
Please enter your user id :
Please enter passWord for user id "CLIENT": clIEnt
Incremental backup of volume '/tmp'
Directory ->	512	/tmp/ibm	[Sent]
Normal File ->	59,101	/tmp/.oslevel.mlinfo.cache	[Sent]
Normal File ->	155	/tmp/.toc	[Sent]
Normal File ->	1,143,969	/tmp/55324085.DBB	[Sent]
……
Successful incremental backup of '/tmp'
Total number of objects inspected:		531
Total number of objects backed up:		34
Total number of objects updated:		0
Total number of objects rebound:		0
Total number of objects deleted:		4
Total number of objects failed:			0
Total number of bytes transferred:		2.17 MB
Data transfer time:				0.48 sec
Network data transfer rate:			4,636.25 KB/sec
Aggregate data transfer rate:			717.28 KB/sec
Objects compressed by:				0%
Elapsed processing time:			00:00:03
TSM>

  看到輸出的信息類似於上述文本,就表示備份成功。

  六、TDP for Oracle ON AIX 32-bit安裝及配置

  安裝配置要點

  ◆ smit安裝軟件包:

  ◆ 編輯tdpo.opt文件

  ◆ 編輯api clIEnt的dsm.opt文件

  ◆ 編輯api clIEnt的dsm.sys文件

  ◆ 在TSM server注冊api clIEnt(tdp_h50b)

  注意:該客戶機節點的屬性必須是:BACKDELETE=YES

  ◆ 初始化passWord:

  ◆ 確認安裝:顯示TDP的環境變量:

  tdpoconf showenv

  ◆ 重新連接Oracle備份的庫文件

  步驟實施

  1、 h50b機器上,安裝點與TSM相同(/usr/Tivoli/tsm)

  2、 將TDP for Oracle光盤放入光驅以root用戶身份執行命令:

# smitty installp
tivoli.tsm.client.oracle.32bit 
tivoli.tsm.clIEnt.Oracle.tools.32bit 
tivoli.tsm.clIEnt.api.32bit

  只安裝TDP for Oracle on AIX 32-bit的文件集。

  3、 #su - Oracle

  shutdown oracle
  $cd $ORACLE_HOME/lib
  $mv libobk.a libobk.a.03_24(移去此文件) 
  $ cd $ORACLE_HOME/rdbms/lib
   $ make -f ins_rdbms.mk LLIBMM=/usr/lib/libobk.a ioracle
  - Linking Oracle ld -L/user/oracle/app/oracle/product/8.0.5/lib/
  -L/user/oracle/app/oracle/product/8.0.5/rdbms/lib
  -o /user/oracle/app/oracle/product/8.0.5/rdbms/lib/oracle
  -bI:/user/oracle/app/oracle/product/8.0.5/lib/pw-syscall.exp
  -bI:/user/oracle/app/oracle/product/8.0.5/lib/ksms.imp
  /user/oracle/app/oracle/product/8.0.5/rdbms/lib/opimai.o
  /user/oracle/app/oracle/product/8.0.5/rdbms/lib/ssoraed.o
  /user/oracle/app/oracle/product/8.0.5/rdbms/lib/ttcsoi.o
  /user/oracle/app/oracle/product/8.0.5/rdbms/lib/config.o
  -lserver -lclient -lvsn -lcommon -lgeneric
  /user/oracle/app/oracle/product/8.0.5/rdbms/lib/defopt.o
  /user/oracle/app/oracle/product/8.0.5/lib/ncrstab.o
  -lknlopt -lslax -lplsf -lplsb -lextp -lserver -lclient -lvsn
  -lcommon -lgeneric -lknlopt -lslax -lplsf -lplsb -lextp -ldbicx
  /user/oracle/app/oracle/product/8.0.5/lib/nautab.o
  /user/oracle/app/oracle/product/8.0.5/lib/naeet.o
  /user/oracle/app/oracle/product/8.0.5/lib/naect.o
  /user/oracle/app/oracle/product/8.0.5/lib/naedhs.o
  -lnetv2 -lnttcp -lnetwork -lncr -lnetv2
  -lnttcp -lnetwork -lclient -lvsn -lcommon -lgeneric
  /usr/lib/libobk.a -lnlsrtl3 -lcore4 -lnlsrtl3 -lcore4 -lnlsrtl3
  -lnetv2 -lnttcp -lnetwork -lncr -lnetv2 -lnttcp -lnetwork
  -lclient -lvsn -lcommon -lgeneric -lepc -lnlsrtl3 -lcore4 -lnlsrtl3
  -lcore4 -lnlsrtl3 -lclIEnt -lvsn -lcommon -lgeneric -lnlsrtl3
  -lcore4 -lnlsrtl3 -lcore4 -lnlsrtl3 -lld -lm
  /lib/crt0_r.o -lc_r -lpthreads -lodm -lm -lm
  /user/oracle/app/oracle/product/8.0.5/rdbms/lib/skgxns.o
  -lkidt -lnlsrtl3 -lcore4 -lnlsrtl3 -lcore4 -lnlsrtl3 -lld -lm
  /lib/crt0_r.o -lc_r -lpthreads -lodm -lm -lm
  mv -f /user/oracle/app/oracle/product/8.0.5/bin/oracle
  /user/oracle/app/oracle/product/8.0.5/bin/oracleO
        mv oracle /user/oracle/app/oracle/product/8.0.5/bin/oracle
        chmod 6751 /user/oracle/app/oracle/product/8.0.5/bin/oracle
  $startup Oracle
         $exit

  4、 #cd /usr/tivoli/tsm/clIEnt/api/bin

  5、 cp dsm.opt.smp dsm.opt

#vi dsm.opt

Servername       tsmserver    
TAPEPROMPT    yes
# cp dsm.sys.smp dsm.sys
#vi dsm.sys

SErvername  tsmserver 
   COMMmethod         TCPip
   TCPPort               1500
   TCPServeraddress        172.16.18.2 
   nodename              tdp_h50b
   passWordAccess        prompt

  6、 #cd /usr/tivoli/tsm/clIEnt/Oracle/bin

#cp tdpo.opt.smp tdpo.opt
#vi tdpo.opt
DSMI_LOG                /tmp
DSMI_ORC_CONFIG         /usr/tivoli/tsm/client/oracle/bin/dsm.opt
TDPO_FS                  adsmorc 
TDPO_NODE               tdp_h50b
TDPO_OWNER              oracle
TDPO_PSWDPATH           /usr/tivoli/tsm/clIEnt/Oracle/bin 
TDPO_AVG_SIZE           1500
TDPO_NUM_BUFFERS        2
# vi dsm.opt
TAPEPROMPT      yes

  7、 # ./tdpoconf passWord

***************************************************************
*       Tivoli Data Protection for Oracle Utility             *
*  Password file initialization/update program                *
*     ROOT privilege needed to update value                   *
***************************************************************
Please enter current password: tdp_h50b
Please enter new password:*******
Please reenter new password for verification:
ANU0260I Password successfully changed.
#
# ls -la TDPO.*
-rw-r--r--   1 root     sys  48 Mar 25 14:06 TDPO.tdp_h50b

# ./tdpoconf showenv
TDP FOR ORACLE INFORMATION
  Version:              2
  Release:              2
  Level:                0
  Sublevel:             0
  Platform:             TDP Oracle AIX

TSM SERVER INFORMATION
  Server Name:          TDP_H50B
  Server Address:       172.16.18.2
  Server Type:          AIX-RS/6000
  Server Port:          1500
  Communication Method: TCP/IP

SESSION INFORMATION
  Owner Name:           oracle
  Node Name:            TDP_H50B
  Node Type:            TDP Oracle AIX
  DSMI_DIR:             /usr/tivoli/tsm/client/api/bin
  DSMI_ORC_CONFIG:      /usr/tivoli/tsm/client/oracle/bin/dsm.opt
  TDPO_OPTFILE:         /usr/tivoli/tsm/clIEnt/oracle/bin/tdpo.opt
  PassWord Directory:   /usr/tivoli/tsm/clIEnt/Oracle/bin
  Compression:          FALSE

POLICY DATA
  Domain Name:          STANDARD
  Management Class:     STANDARD
  Active Policy Set:    STANDARD
  Backup Retention:     30
#

  h50a機器:安裝TDP For Oracle和Tsm clIEnt。

  1、 創建卷組tsmvg(A機整個hdisk1本地硬盤作為tsmvg)-à激活卷組tsmvg :varyon tsmvg-à在tsmvg上建立邏輯卷tsmlv,大小為320LP(320*16M=5G),然後在tsmlv上建立文件系統/usr/tivoli/tsm;

  2、 與B機安裝相似,將TDP for Oracle光盤放入光驅以root用戶身份安裝在此安裝點上(/usr/Tivoli/tsm)。

  3、 在h50a對節點tdp_h50a

  七、TDP FOR Oracle 在win2k安裝配置

  1、 將TDP for Oracle光盤放入光驅以administrator用戶身份執行安裝。安裝目錄:

c:\Tivoli\tsm。(測試機器 xxb_chh,os為win2k,Oracle為817)。安裝完畢重啟計算機。

  2、 進入C:\Tivoli\TSM\AgentOBA>目錄,配置編輯tdpo.opt及dsm.opt文件:

  dsm.opt內容:

COMMmethod TCPip

TCPPort 1500

TCPServeraddress 172.16.18.2

nodename ora817

passWordAccess generate

  tdpo.opt內容:

************************************************************
*  Sample options file for Tivoli Data Protection for Oracle
************************************************************
DSMI_ORC_CONFIG    c:\tivoli\tsm\agentoba\dsm.opt
DSMI_LOG           c:\tivoli\tsm\agentoba
TDPO_AVG_SIZE      2000
TDPO_FS            \adsmorc
TDPO_NUM_BUFFERS   2

  3、 Initializing the PassWord:

C:\Tivoli\TSM\AgentOBA>tdpoconf passWord
***************************************************************
*       Tivoli Data Protection for Oracle Utility             *
*  Password file initialization/update program                *
***************************************************************
Please enter current password:******
Please enter new password:******
Please reenter new password for verification:******
ANU0260I PassWord successfully changed.
C:\Tivoli\TSM\AgentOBA>

  4、 顯示環境配置:

C:\Tivoli\TSM\AgentOBA>tdpoconf showenv
TDP FOR ORACLE INFORMATION
  Version:              2
  Release:              2
  Level:                0
  Sublevel:             0
  Platform:             TDP Oracle NT
TSM SERVER INFORMATION
  Server Name:          DSMSERV
  Server Address:       172.16.18.2
  Server Type:          AIX-RS/6000
  Server Port:          1500
  Communication Method: TCP/IP

SESSION INFORMATION
  Owner Name:
  Node Name:            ORA817
  Node Type:            TDP Oracle NT
  DSMI_DIR:             C:\Tivoli\TSM\api
  DSMI_ORC_CONFIG:      c:\tivoli\tsm\agentoba\dsm.opt
  TDPO_OPTFILE:         C:\Tivoli\TSM\AgentOBA\tdpo.opt
  PassWord Directory:
  Compression:          FALSE
POLICY DATA
  Domain Name:          STANDARD
  Management Class:     STANDARD
  Active Policy Set:    STANDARD
  Backup Retention:     30
C:\Tivoli\TSM\AgentOBA>

  至此,安裝配置全部完畢。

  對需要作冷備份的(shutdown 數據庫,即直接備份文件系統的)和利用client的schedule進行定時在線備份的,請再安裝tsm的client端。ClIEnt有平台之分,tdp for Oracle沒有平台之分。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved