Home » RDBMS Server » Backup & Recovery » I am not able to start RMAN excutable (Oracle 91-R2,RHEL Version-3)
I am not able to start RMAN excutable [message #337463] Thu, 31 July 2008 00:28 Go to next message
kiran.satyan
Messages: 25
Registered: March 2008
Location: Bangalore
Junior Member
Hi All,

When I start the RMAN in LINUX as $ rman, it should prompt out RMAN>.
But when I try to start ,its just blinking there.

My Environmental Varibales are given below
------------------------------------------
# .bash_profile

# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi

# User Specific environment and startup programs

PATH=$PATH:$HOME/bin:/usr/java/jdk1.3.1_11/bin

export PATH
export LD_ASSUME_KERNEL=2.4.1
export ORACLE_BASE=/home/oracle
export ORACLE_HOME=/home/oracle/product/9.2.0
export ORACLE_SID=test
export ORACLE_TERM=xterm
export NLS_LANG=AMERICAN
export ORA_NLS33=$ORACLE_HOME/ocommon/nls/admin/data
LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib
LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib
export LD_LIBRARY_PATH
export PATH=$PATH:$ORACLE_HOME/bin


I would like to get some information ragarding this.



Thanks & Regards

Kiran Sathyan
Re: I am not able to start RMAN excutable [message #337464 is a reply to message #337463] Thu, 31 July 2008 00:31 Go to previous messageGo to next message
BlackSwan
Messages: 26766
Registered: January 2009
Location: SoCal
Senior Member
exactly which 'rman' are you invoking?
provide complete path.
Re: I am not able to start RMAN excutable [message #337465 is a reply to message #337464] Thu, 31 July 2008 00:38 Go to previous messageGo to next message
kiran.satyan
Messages: 25
Registered: March 2008
Location: Bangalore
Junior Member
Hi Ana,

If we type rman and press enter, it should prompt like

RMAN>

I dont know exactly which RMAN it is?

Thanks & Regards

Kiran Sathyan
Re: I am not able to start RMAN excutable [message #337467 is a reply to message #337464] Thu, 31 July 2008 00:44 Go to previous messageGo to next message
kiran.satyan
Messages: 25
Registered: March 2008
Location: Bangalore
Junior Member
Hi Ana,

Should we provide Path for RMAN in environmental variables?

But Executables like SQL*PLUS,LSNRCTL are being invoked without any issues.

Only RMAN is not getting invoked!!

Any Idea?

Rgds

Kiran

Re: I am not able to start RMAN excutable [message #337480 is a reply to message #337465] Thu, 31 July 2008 01:06 Go to previous messageGo to next message
Michel Cadot
Messages: 68653
Registered: March 2007
Location: Nanterre, France, http://...
Senior Member
Account Moderator
Quote:
I dont know exactly which RMAN it is?

Post "which rman"

Regards
Michel
Re: I am not able to start RMAN excutable [message #337543 is a reply to message #337480] Thu, 31 July 2008 03:34 Go to previous messageGo to next message
kiran.satyan
Messages: 25
Registered: March 2008
Location: Bangalore
Junior Member
Dear Michel,

I am not clear about your doubt!

Are you asking about the Version?

rgds

Kiran
Re: I am not able to start RMAN excutable [message #337549 is a reply to message #337543] Thu, 31 July 2008 03:55 Go to previous messageGo to next message
Michel Cadot
Messages: 68653
Registered: March 2007
Location: Nanterre, France, http://...
Senior Member
Account Moderator
Just type the command I posted at OS prompt and post the result.

Regards
Michel
Re: I am not able to start RMAN excutable [message #337581 is a reply to message #337549] Thu, 31 July 2008 05:37 Go to previous messageGo to next message
kiran.satyan
Messages: 25
Registered: March 2008
Location: Bangalore
Junior Member
Dear Michel,

"which rman" result is

/usr/X11R6/bin/rman

What does it mean??

rgds

Kiran
Re: I am not able to start RMAN excutable [message #337582 is a reply to message #337581] Thu, 31 July 2008 05:39 Go to previous messageGo to next message
Michel Cadot
Messages: 68653
Registered: March 2007
Location: Nanterre, France, http://...
Senior Member
Account Moderator
It means that you have another program named rman and you don't use Oracle one.
You have to either give full path for Oracle program or put it before X11 one in your $PATH (I don't recommend the later one).

Regards
Michel

[Updated on: Thu, 31 July 2008 05:40]

Report message to a moderator

Re: I am not able to start RMAN excutable [message #337587 is a reply to message #337582] Thu, 31 July 2008 05:54 Go to previous messageGo to next message
kiran.satyan
Messages: 25
Registered: March 2008
Location: Bangalore
Junior Member
Dear Michel,

But I think the path provided for oracle executables are correct.

export PATH=$PATH:$ORACLE_HOME/bin
This is where OS has to check for RMAN Executable,am i right?

I am not able to find this path "/usr/X11R6/bin/rman " anywhere in the bash_profile.

I am confused.

Regards

Kiran
Re: I am not able to start RMAN excutable [message #337606 is a reply to message #337587] Thu, 31 July 2008 07:03 Go to previous messageGo to next message
Michel Cadot
Messages: 68653
Registered: March 2007
Location: Nanterre, France, http://...
Senior Member
Account Moderator
echo $PATH
It is in your server profile.

Regards
Michel
Re: I am not able to start RMAN excutable [message #337632 is a reply to message #337606] Thu, 31 July 2008 08:10 Go to previous messageGo to next message
kiran.satyan
Messages: 25
Registered: March 2008
Location: Bangalore
Junior Member
Dear Michel,

I've just moved "/usr/X11R6/bin/rman" as root to some other folder temporarly.

Will this affect the OS in anyway?
What is this rman exactly?
Is it pretty necessary to keep in that folder?

Now as oracle user I'm able to get the rman prompt.

Anyways Thanks Alot for all the information you provided.

Have a great time,

Regards

Kiran Sathyan



Re: I am not able to start RMAN excutable [message #337635 is a reply to message #337632] Thu, 31 July 2008 08:19 Go to previous messageGo to next message
Michel Cadot
Messages: 68653
Registered: March 2007
Location: Nanterre, France, http://...
Senior Member
Account Moderator
Quote:
Will this affect the OS in anyway?
What is this rman exactly?

1/ Maybe
2/ I don't know but I think it is connected to window interface. Did you try "man rman"?

Regards
Michel
Re: I am not able to start RMAN excutable [message #337643 is a reply to message #337635] Thu, 31 July 2008 08:37 Go to previous messageGo to next message
kiran.satyan
Messages: 25
Registered: March 2008
Location: Bangalore
Junior Member
Hi Michel,

"man rman" gives these results.

Name
PolyglotMan, rman -reverse compile man pages from formatted form to a number of source formats

The name of the binary for PolyglotMan aliase RosettaMan is rman.

Thanks & Regards

Kiran Sathyan
Re: I am not able to start RMAN excutable [message #337653 is a reply to message #337463] Thu, 31 July 2008 08:52 Go to previous message
BlackSwan
Messages: 26766
Registered: January 2009
Location: SoCal
Senior Member
Your PATH is wrong.
your "rman" is not Oracle's "rman"
Previous Topic: reg. error DIM-OOO14...!!!!!
Next Topic: undo data file is lost
Goto Forum:
  


Current Time: Sat May 18 19:17:36 CDT 2024