(轉)linux下rman沒有反應問題

polestar123發表於2009-04-07
新接觸rman的人,可能會常遇到的問題:


[oracle@DB1 ~]$ rman

....waitting

[oracle@DB1 ~]$which rman
/usr/X11R6/bin/rman

預設的是用/usr/X11R6/bin/下的rman,用下面的方法即可:

[oracle@DB1 ~]$ cd /oracle/product/10g/bin
[oracle@DB1 bin]$ ./rman

或者從根本上解決:

修改.bash_profile環境變數path,把$ORACLE_HOME/bin提前

[oracle@DB1 ~]$vi .bash_profile
PATH=$ORACLE_HOME/bin:$PATH:/usr/sbin:/etc
[oracle@DB1 ~]$source .bash_profile
[oracle@DB1 ~]$rman
Recovery Manager: Release 10.2.0.1.0 - Production on Wed Sep 17 18:57:39 2008

Copyright (c) 1982, 2005, Oracle. All rights reserved.

RMAN>[@more@]

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/70612/viewspace-1020059/,如需轉載,請註明出處,否則將追究法律責任。

相關文章