Running RMAN backups from grid control but using oracle account with rsa keys vs a password ?

 
Thread Tools Search this Thread
Special Forums UNIX and Linux Applications Running RMAN backups from grid control but using oracle account with rsa keys vs a password ?
# 1  
Old 10-13-2010
Running RMAN backups from grid control but using oracle account with rsa keys vs a password ?

I'm a sysadmin trying to help out one of our DBA's setup the RMAN backups (Oracle 11g on rhel5 ) so they can schedule and control them from the OEM grid control. But we want the oracle user to use ssh keys instead of a password. I have the working rsa keys in place for the user but the GUI seems to require a password and all tests fail if we do not specify a password. I've looked around and been unsuccessful finding anything to resolve this so far. Is this something that can be done or does the software require a password ?


Thanks for your help.
Login or Register to Ask a Question

Previous Thread | Next Thread

3 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

[SSH-RSA] Still prompting for password after generating keys

Hello, I'm trying to perform these operations without entering any password, as user "fzd":fzd@machine1> scp /tmp/srcFile1 fzd@machine2:/tmp/$destFile fzd@machine1> scp fzd@machine2:/tmp/$srcFile /tmp/$destFilebut alsofzd@machine1> scp /tmp/srcFile1 machine2:/tmp/$destFile fzd@machine1> scp... (6 Replies)
Discussion started by: fzd
6 Replies

2. Solaris

PASSWORD LOOPof Oracle account

hi ...can anyone help me with this.. i have to create a oracle account, whose passwd should be in oracle password loop i know how to create account but i got stuck with oracle password loop so please help me ASAP... thanks in advance.. (0 Replies)
Discussion started by: 6pound
0 Replies

3. Linux

RSA Keys root account problem?

I have set up RSA private and pub keys between "NodeA" and "NodeB" Everything works fine when I test with a regular user account. However it does not work as root. I followed the same procedure to set up the keys as the root user but I am still prompted for a password. I have verified my... (1 Reply)
Discussion started by: geek4lif
1 Replies
Login or Register to Ask a Question
Tk_SetGrid(3)						       Tk Library Procedures						     Tk_SetGrid(3)

__________________________________________________________________________________________________________________________________________________

NAME
Tk_SetGrid, Tk_UnsetGrid - control the grid for interactive resizing SYNOPSIS
#include <tk.h> Tk_SetGrid(tkwin, reqWidth, reqHeight, widthInc, heightInc) Tk_UnsetGrid(tkwin) ARGUMENTS
Tk_Window tkwin (in) Token for window. int reqWidth (in) Width in grid units that corresponds to the pixel dimension tkwin has requested via Tk_GeometryRequest. int reqHeight (in) Height in grid units that corresponds to the pixel dimension tkwin has requested via Tk_GeometryRequest. int widthInc (in) Width of one grid unit, in pixels. int heightInc (in) Height of one grid unit, in pixels. _________________________________________________________________ DESCRIPTION
Tk_SetGrid turns on gridded geometry management for tkwin's toplevel window and specifies the geometry of the grid. Tk_SetGrid is typi- cally invoked by a widget when its setGrid option is true. It restricts interactive resizing of tkwin's toplevel window so that the space allocated to the toplevel is equal to its requested size plus or minus even multiples of widthInc and heightInc. Furthermore, the reqWidth and reqHeight values are passed to the window manager so that it can report the window's size in grid units during interactive resizes. If tkwin's configuration changes (e.g., the size of a grid unit changes) then the widget should invoke Tk_SetGrid again with the new informa- tion. Tk_UnsetGrid cancels gridded geometry management for tkwin's toplevel window. For each toplevel window there can be at most one internal window with gridding enabled. If Tk_SetGrid or Tk_UnsetGrid is invoked when some other window is already controlling gridding for tkwin's toplevel, the calls for the new window have no effect. See the wm manual entry for additional information on gridded geometry management. KEYWORDS
grid, window, window manager Tk 4.0 Tk_SetGrid(3)