Connect to remote target without giving SYSDBA password

Hi, I would want to script RMAN backup running from a Catalog Server using windows scheduled job which will backup target running in remote machine.
Is there a way I can connect to the target in remote machine without giving the password in the script?
Catalog server and target server are 11.2.0.3
-Srini

Hi, I created the wallet with UserA and now I want to put a scheduled job with a service account UserB but am not able to access the wallet.
Its Windows 2008 and I have explicitly added the UserB as Full permission for the wallet file. The error message is below
ORA-12578: TNS:wallet open failed
Am pretty sure its a permission issue - but not sure how to provide the permission. UserB is in Admin Group, ORA_DBA Group, can log-in a batch job .........
Any pointer greatly appreciated.
-Srini

Similar Messages

  • Without giving any password  it is getting connected in windows

    in windowsfrom command prompt when i try to login to oracle it is asking for username but when i just press the enter key for password ( without giving any password) it is getting connected?
    How do i stop it ?
    Regards
    Sudharshan

    This is addressed in the following note:
    Note: 77665.1 - WIN: OS Authentication - CONNECT AS SYSDBA Without a Password
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=77665.1

  • From RMAN - Not able to connect to the target database as sysdba

    I wanted to configuring the backup server (rman catalog database server) to take RMAN
    backups of the varius target databases. while connecting to the target database
    from backup server, i am getting ORA-01031: insufficient privileges error.
    I created password file and modified the init.ora file in the target server, but
    still having connection issue.
    I can over come this issue by keep trying many times while using sqlplus.
    pbackup1$ sqlplus "sys/oracle @HCPRD as sysdba"
    SQL*Plus: Release 10.2.0.1.0 - Production on Tue Apr 25 17:02:56 2006
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    ERROR:
    ORA-01031: insufficient privileges
    Enter user-name:
    ERROR:
    ORA-01017: invalid username/password; logon denied
    Enter user-name:
    ERROR:
    ORA-01017: invalid username/password; logon denied
    SP2-0157: unable to CONNECT to ORACLE after 3 attempts, exiting SQL*Plus
    pbackup1$ sqlplus "sys/oracle @HCPRD as sysdba"
    SQL*Plus: Release 10.2.0.1.0 - Production on Tue Apr 25 17:03:05 2006
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bit Production
    With the Partitioning, Real Application Clusters, OLAP and Data Mining options
    SQL>
    -- finally, after few attempts, i can connect to the target database server as
    sysdba ---
    While connectiong thru RMAN, get the following error:
    RMAN> connect target sys/oracle@HCPRD
    RMAN-00571: ===========================================================
    RMAN-00569: ========= ERROR MESSAGE STACK FOLLOWS
    RMAN-00571: ===========================================================
    ORA-01031: insufficient privileges
    RMAN> connect target "sys/oracle @HCPRD as sysdba"
    RMAN-00571: ===========================================================
    RMAN-00569: ======== ERROR MESSAGE STACK FOLLOWS
    RMAN-00571: ===========================================================
    ORA-12154: TNS:could not resolve the connect identifier specified
    Text continued in next action...

    Hey,
    Please take a look at URL below to see it can help you -
    http://download-east.oracle.com/docs/cd/B19306_01/backup.102/b14191/rcmcnctg002.htm#i1008102
    or
    http://www.lc.leidenuniv.nl/awcourse/oracle/server.920/a96566/rcmcnctg.htm#443912
    regards,
    Marcello.

  • Connecting Using SSL Authentication Without Username and Password

    Hi,
    We're on RedHat Linux 4.0 using 10.2.0.3 (server/client). We're trying to figure out a way to connect to the database using instantclient and JDBC-OCI and SSL authentication without using a username or password. According to the documentation this should be possible but no sample code is given.
    LD_LIBRARY_PATH is set /opt/app/oracle/product/10.2.0/db_1/lib:/usr/lib:/home/oracle/instantclient where the instantclient was installed from the 10.2.0.1 client software
    and we are using JDK version 1.6.0_03.
    We're also referencing the following paper:
    http://www.oracle.com/technology/tech/java/sqlj_jdbc/pdf/wp-oracle-jdbc_thin_ssl_2007.pdf
    We've got our client and server wallets configured and the sample code we tried looks like this:
    import java.sql.*;
    import java.sql.*;
    import java.io.*;
    import java.util.*;
    import oracle.net.ns.*;
    import oracle.net.ano.*;
    import oracle.jdbc.*;
    import oracle.jdbc.pool.*;
    import java.security.*;
    import oracle.jdbc.pool.OracleDataSource;
    public static void main(String[] argv) throws Exception {
    DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
    Security.addProvider(new oracle.security.pki.OraclePKIProvider());
    System.setProperty("oracle.net.tns_admin", "/opt/app/oracle/product/10.2.0/db_1/network/admin");
    String url = "jdbc:oracle:thin:@orcl";
    java.util.Properties props = new java.util.Properties();
    props.setProperty("oracle.net.authentication_services","(TCPS)");
    props.setProperty("javax.net.ssl.trustStore",
    "/opt/app/oracle/product/10.2.0/db_1/admin/wallet/server/cwallet.sso");
    props.setProperty("javax.net.ssl.trustStoreType","SSO");
    props.setProperty("javax.net.ssl.keyStore", "/opt/app/oracle/product/10.2.0/db_1/admin/wallet/client/cwallet.sso");
    props.setProperty("javax.net.ssl.keyStoreType","SSO");
    props.put ("oracle.net.ssl_version","3.0");
    props.put ("oracle.net.wallet_location", "(SOURCE=(METHOD=file)(METHOD_DATA=(DIRECTORY=/opt/app/oracle/product/10.2.0/db_1/admin/wallet/client)))");
    System.out.println("At Here...");
    OracleDataSource ods = new OracleDataSource();
    //ods.setUser("scott");
    //ods.setPassword("tiger");
    ods.setURL(url);
    ods.setConnectionProperties(props);
    System.out.println("At Here1...");
    Connection conn = ods.getConnection();
    System.out.println("At Here2...");
    Statement stmt = conn.createStatement();
    ResultSet rset = stmt.executeQuery("select 'Hello Thin driver SSL "
    + "tester ' from dual");
    while (rset.next())
    System.out.println(rset.getString(1));
    rset.close();
    stmt.close();
    conn.close();
    When this code is compiled and run, the following error is thrown:
    Exception in thread "main" java.sql.SQLException: invalid arguments in call
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:112)
    If a username and password is supplied, the code works. So does anyone have a working of using SSL to authenticate without supplying username/password?
    Thanks
    mohammed

    Hi,
    I just solved this. I noticed from another thread that I was not using the OCI driver (see below):
    String url = "jdbc:oracle:thin:@pki14";
    Once I changed it to:
    String url = "jdbc:oracle:oci:@pki14";
    The code worked perfectly. One more setting that you'll have to do is to create the user you want to connect as externally:
    create user scott identified externally as
    'CN=acme, OU=development, O=acme, C=US';
    grant connect,create session to scott;
    Note that the DN should be the same as the SSL certificate that you created in your wallet.
    hth
    mohammed

  • Datasocket connection to remote target

    I want to connect two VI with the Datasocket Server using the functions Datasocket read and write.
    The datasocketserver receive the data from the VI on the remote target (the PXIcontroller), but the VI on the host recognize no connection (unrecognized protocol).
    The URL which I gave them was dstp://x.x.x.x/data .
    x.x.x.x stands for each IP of the other system which I want to connect to.
    I use XP with Labview 7.1 on the host-PC and  RT Labview as an OS on the PXI controller (PXI-8186).
    Regards, Jbrib

    Hello There:
    This is a duplicate discussion forum. I have posted an answer at the following link: http://forums.ni.com/ni/board/message?board.id=270&message.id=2039
    Thanks,
    Jaideep

  • Unable to initialize connection to remote target

    The device is NI PXI-1010, I can ping the device but I cannot connect it through MAX.  I am using version 4.5.  Whenever I try to set up a new remote system, it cannot find the remote device.  I have tried using both the computer name (which is resolved to an IP address in the hosts file) and the just IP address.  I get this error:  "Unable to initialize connection to remote system(s)."
    I am able to ping the remote computer and but I cannot browse to it in Windows Explorer.

    The PXI-1010 is just a chassis.  What controller are you using?  How is it configured?  What OS does it have?
    If you have a Windows controller, then you probably need to setup sharing, domains, and other network settings.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • Connecting to remote database without using db links

    Referred Thread:
    Re: Remote DB connection without DB link
    In reference to the thread above, my question goes like this:
    Let's say I want to run a query from a database and use data from another database. I have the user, password, SID and port number of the other database but do not want to create a separate connection using sqlplus or connect commands.
    Something like this:
    SQL> show user
    USER is "A"
    SQL> select a.col1, b.col2 from tab1 a, tab2@????? where <some condition>;
    Can this connection be done on the fly ?? I agree that a DB link will do the trick, but let's say I am not supposed to create objects on the other database.

    You need two sets of privs on the remote database to view data in that database schema:
    - create session (the schema must allow client connections to create schema sessions)
    - select on other schema tables whose contents to view
    You need a single priv on the local database, to connect to that remote schema on the other database:
    - create database link
    You also need the following in order to create the db link:
    - the remote schema name and password
    - IP address or hostname of the remote db server
    - the remote Listener's tcp endpoint port
    - the name of the remote database (SID, instance or service name)
    If you do not have these privs, you cannot use/access the remote database from the local database session via a database link.
    Other alternative methods needs additional privileges and objects on both the remote and local database sides - and are more complex (e.g. using web services, using web-enabled procedures, etc).

  • ITunes 11.0.2 no longer connecting to Remote app on iPhone; claims password is incorrect or takes forever verifying.

    iTunes on my mid 2011 iMac is not connecting to my iPhone 5 nor my iPad 1st gen "Remote" app. Homesharing is enabled on all devices, yet my library cannot be found. I made sure all of the devices had homesharing turned on. I tried manually adding the library, and when I entered the code displayed on my iPhone into iTunes, it either said it was incorrect or timed out in the verification process. This is really frustrating as it has worked before, and suddenly doesn't work. By the way, I have made no changes in my WiFi network or routers. Please help, thanks!

    Intego's VirusBarrier X6 was blocking my iPhone's connection.
    I saw that the program was blocking attempts to connect and took the address off the Blocked list. I instantly connected through everything again. It turned out to be a major oversight and easy fix!
    If anyone else is having similar issues, check your AntiVandal software and make sure your devices are not being blocked.

  • Connecting to remote oracle without installing full oracle

    Hi,
    I have an oracle dbase remotely I want to connect to through tnsnames.ora but I don't want to install full oracle. Can I do it ? if so please give me detail steps on how to do it.
    Thanks
    Elias

    Go to http://otn.oracle.com and download the Instant Client software.
    Read the documentation before installing it.

  • I sold a ipad 1.. I did a reset and cleaned out all data.. however, the new owner tells me when he connects to itunes it is asking for my password.  how can i resolve this without giving him my password

    I sold a ipad 1.. I did a reset and cleaned out all data before shipping to him.   however, the new owner tells me when he connects to itunes it is asking for my password.  how can i resolve this without giving him my password?  will a hard reset take care of this?

    Have the purchaser go to Settings/Store, tap your Apple ID and then choose Sign out.
    The purchaser will then need to tap Sign in and enter their own Apple ID for their iTunes account.

  • C# remote powershell without explicitelly applying user & password (rather connection with current credentials)

    Dear all,
    I would like to know, how I can open a runspace to an Exchange Server 2013 WITHOUT explicitelly applying username and password (well - this works using basic authentication).
    Following scenario :
    - A (well patched) Win 7 Enterprise Client with Exchange 2013 Client Tools installed
    - Logged in as (the) domain admin
    - Using Exchange Management Shell I can administer Exchange WITHOUT entering username/password
    - Using C# I cannot :(
    Nothing helped (DefaultCredentials [even with Releasebuild], PSCredentials.Empty or null, tried All members of AuthenticationMechanism).
    I wonder how Powershell itself does the thing....
    There must be a way to connect with the current user credentials...
    I you know, how this can be done, then provide a short snippet - please.
    Please no links or something like "...try to use blablabla" - thanks :)
    The thing that I would like to do is :
    - configure a runspace for the exchange server (WITHOUT user/password)
    - create that runspace
    - create a pipeline with that
    - add a command/parameters
    - invoke
    - examine the results
    - clean up
    As I mentioned above - all things work well - except the thing with the "trusted connection".
    It works only, if I provide a username and a password in the PSCredential parameter....
    ...but it should work without it...
    Please provide a tested and running example :)
    Best regards
    dp.

    Dear all,
    I would like to know, how I can open a runspace to an Exchange Server 2013 WITHOUT explicitelly applying username and password (well - this works using basic authentication).
    Following scenario :
    - A (well patched) Win 7 Enterprise Client with Exchange 2013 Client Tools installed
    - Logged in as (the) domain admin
    - Using Exchange Management Shell I can administer Exchange WITHOUT entering username/password
    - Using C# I cannot :(
    Nothing helped (DefaultCredentials [even with Releasebuild], PSCredentials.Empty or null, tried All members of AuthenticationMechanism).
    I wonder how Powershell itself does the thing....
    There must be a way to connect with the current user credentials...
    I you know, how this can be done, then provide a short snippet - please.
    Please no links or something like "...try to use blablabla" - thanks :)
    The thing that I would like to do is :
    - configure a runspace for the exchange server (WITHOUT user/password)
    - create that runspace
    - create a pipeline with that
    - add a command/parameters
    - invoke
    - examine the results
    - clean up
    As I mentioned above - all things work well - except the thing with the "trusted connection".
    It works only, if I provide a username and a password in the PSCredential parameter....
    ...but it should work without it...
    Please provide a tested and running example :)
    Best regards
    dp.

  • Connecting to remote database (idle) with Password File Authentication

    Hi all,
    I was wondering if it's possible to connect to a remote database that is shut down (idle instance) as sys user with sysdba privileges? In the book Oracle - All in One on page 210 in the section - Operating System and Password File Authentication it says:
    Connection with operating system or password file authentication is always possible, no matter what state the instance and database are in, and is necessary to issue STARTUP or SHUTDOWN commands.
    Above indicates that it's possible but I'm unable to do so.
    I managed to connect to remote database that was in nomount mode (see below for details).
    When I first tried to connect to a remote database (idle instance) using password file authentication it was giving following error:
    sqlplus sys@ORCL as sysdbaSQL*Plus: Release 11.2.0.3.0 Production on Fri Dec 21 13:59:28 2012
    Copyright (c) 1982, 2011, Oracle. All rights reserved.
    Enter password:
    ERROR:
    ORA-12514: TNS:listener does not currently know of service requested in connect
    descriptor
    Enter user-name:
    After starting the database to nomount mode I was getting following error:
    sqlplus sys@ORCL as sysdbaSQL*Plus: Release 11.2.0.3.0 Production on Fri Dec 21 13:48:36 2012
    Copyright (c) 1982, 2011, Oracle. All rights reserved.
    Enter password:
    ERROR:
    ORA-12528: TNS:listener: all appropriate instances are blocking new connections
    Enter user-name:
    So I added the clause (UR=A) to my listener.ora file and after that it work and I was able to connect:
    sqlplus sys@ORCL as sysdbaSQL*Plus: Release 11.2.0.3.0 Production on Fri Dec 21 14:04:49 2012
    Copyright (c) 1982, 2011, Oracle. All rights reserved.
    Enter password:
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL>
    I have all necessairly entries in tnsnames.ora on my local host.
    Also I have no problems when connecting as sys user with sysdba when the DB is open but can't get it work on an idle instance.
    I know that I can use operating system authentication but want to know if there is a mistake in the book or I'm doing something wrong.
    Regards,
    Dawid
    Edited by: 978239 on 2012-12-21 06:24

    978239 wrote:
    Hi all,
    I was wondering if it's possible to connect to a remote database that is shut down (idle instance) as sys user with sysdba privileges? In the book Oracle - All in One on page 210 in the section - Operating System and Password File Authentication it says:
    Connection with operating system or password file authentication is always possible, no matter what state the instance and database are in, and is necessary to issue STARTUP or SHUTDOWN commands.
    Above indicates that it's possible but I'm unable to do so.
    I managed to connect to remote database that was in nomount mode (see below for details).
    When I first tried to connect to a remote database (idle instance) using password file authentication it was giving following error:
    sqlplus sys@ORCL as sysdbaSQL*Plus: Release 11.2.0.3.0 Production on Fri Dec 21 13:59:28 2012
    Copyright (c) 1982, 2011, Oracle. All rights reserved.
    Enter password:
    ERROR:
    ORA-12514: TNS:listener does not currently know of service requested in connect
    descriptorSince the database is down, the only way the listener is going to know of it is if you create a static registration by adding an entry for the db in the SID_LIST section of listener.ora
    >
    Enter user-name:
    After starting the database to nomount mode I was getting following error:
    sqlplus sys@ORCL as sysdbaSQL*Plus: Release 11.2.0.3.0 Production on Fri Dec 21 13:48:36 2012
    Copyright (c) 1982, 2011, Oracle. All rights reserved.
    Enter password:
    ERROR:
    ORA-12528: TNS:listener: all appropriate instances are blocking new connections
    Enter user-name:
    So I added the clause (UR=A) to my listener.ora file and after that it work and I was able to connect:
    sqlplus sys@ORCL as sysdbaSQL*Plus: Release 11.2.0.3.0 Production on Fri Dec 21 14:04:49 2012
    Copyright (c) 1982, 2011, Oracle. All rights reserved.
    Enter password:
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL>
    I have all necessairly entries in tnsnames.ora on my local host.
    Also I have no problems when connecting as sys user with sysdba when the DB is open but can't get it work on an idle instance.
    I know that I can use operating system authentication but want to know if there is a mistake in the book or I'm doing something wrong.
    Regards,
    Dawid
    Edited by: 978239 on 2012-12-21 06:24

  • How to access unread mails of all users in Exchange server without having Passwords and without giving mailbox access to other user.

    Hi all,
       I am using Exchange server 2013, my task is to create
    Service , that
    need's to  monitor continuously for new mails of all Mailboxes in
    my server. if any user got new mail i need to get that Mail Subject, Mail Body, Sender Email Address [From emailId] .  
    Limitation
    : I don't have Passwords of mailboxes , so i gave all mailbox access permission  to one user , then i completed this   service using below code.
     But now, Client
    not willing to give Mailbox Permissions to one user because of security problems.
    How can i do this without passwords and without giving permissions to other user ?
    i don't want all mailbox access , i just need only
    access Mail Subject , Body and Sender mail address .
    How can i achieve
    this ?
    Process i follow
    => I created new user in server , and then i gave full permissions of all Mailboxes to newly created user[ex: james] in database level.
         i use below command for giving permissions in database level.
    Get-MailboxDatabase -Identity <Database Name> | Add-ADPermission -User <User> -AccessRights GenericAll
     => using below code i am searching unread mails of all user Mailboxes and then getting Subject, body and Sender Email            address . here i am have list of users,
    ExchangeService service = new ExchangeService(ExchangeVersion.Exchange2013);
    service.Credentials = new WebCredentials("[email protected]", "password");
    service.AutodiscoverUrl("[email protected]");  foreach (Object obj in usersList) // here i have Mailbox users list in usersList
                 { var userMailbox = new Mailbox(obj.user);
    var folderId = new FolderId(WellKnownFolderName.Inbox, userMailbox);
    SearchFilter.IsEqualTo filter1 = new SearchFilter.IsEqualTo(EmailMessageSchema.IsRead, false);
    var itemView = new ItemView(50);
    var userItems = service.FindItems(folderId, filter1, itemView);
    foreach (var item in userItems)
    item.Load();
    var senderEmail = ((EmailMessage)item).From;
    var subject = item.Subject;
    var body = item.Body;

    You would need to check that possibilities via WebServices but suggest you to post this in Development forum to get help from programmers....
    http://social.technet.microsoft.com/Forums/office/en-US/home?forum=exchangesvrdevelopment
    Blog |
    Get Your Exchange Powershell Tip of the Day from here

  • Connect to remote jmx with password

    Hello,
    now I�ve a problem to connect a remote jmx server with passord authentification. No idea why it does not work, here my configuration:
    jmxremote.password:
    ================
    # or specify another, less accessible file in the management config file
    # as described above.
    # Following are two commented-out entries. The "measureRole" role has
    # password "QED". The "controlRole" role has password "R&D".
    test test1
    jmxremote.access
    ================
    # Default access control entries:
    # o The "monitorRole" role has readonly access.
    # o The "controlRole" role has readwrite access.
    test readwrite
    This are my sys parameter:
    JAVA_OPTS="$JAVA_OPTS -Dcom.sun.management.jmxremote.port=9004"
    JAVA_OPTS="$JAVA_OPTS -Dcom.sun.management.jmxremote.ssl=false"
    JAVA_OPTS="$JAVA_OPTS -Dcom.sun.management.jmxremote"
    JAVA_OPTS="$JAVA_OPTS -Dcom.sun.management.jmxremote.access.file=/home/tomcat/jmxremote.access"
    JAVA_OPTS="$JAVA_OPTS -Dcom.sun.management.jmxremote.password.file=/home/tomcat/jmxremote.password"
    The .access and .password file is on the correct place and there is no exception because of the file access rights. If I start the remote jconsole with -J-Djava.security.debug=all, this is the end:
    jar:
    jar: beginEntry com/sun/crypto/provider/SunJCE_i.class
    jar: Manifest Entry: com/sun/crypto/provider/SunJCE_i.class digest=SHA1
    jar: manifest d462e6ef45ec12081028cd7ccf922cc2ec553358
    jar: computed d462e6ef45ec12081028cd7ccf922cc2ec553358
    jar:
    Cipher: Crypto Permission check failed
    Cipher: granted: (CryptoPermission * 128)
    Cipher: requesting: (CryptoPermission AES 256)
    I�ve found already a solution for that and connect with jconsole with the url service:jmx:rmi:///jndi/rmi://hostname:9004/jmxconsole
    Provider: Set SUN provider property [SecureRandom.SHA1PRNG ImplementedIn/Software]
    Provider: Set SUN provider property [CertificateFactory.X.509 ImplementedIn/Software]
    Provider: Set SUN provider property [KeyStore.JKS ImplementedIn/Software]
    Provider: Set SUN provider property [CertPathValidator.PKIX ImplementedIn/Software]
    Provider: Set SUN provider property [CertPathBuilder.PKIX ImplementedIn/Software]
    Provider: Set SUN provider property [CertStore.LDAP ImplementedIn/Software]
    Provider: Set SUN provider property [CertStore.Collection ImplementedIn/Software]
    Provider: Set SUN provider property [CertStore.com.sun.security.IndexedCollection ImplementedIn/Software]
    ProviderConfig: Loaded provider SUN version 1.6
    Although there is no exception I am unable to connect to the remote jmx server...
    Thx for any help!
    Cheers,
    Thilko
    Edited by: smilie79 on Jan 17, 2008 1:53 AM
    Edited by: smilie79 on Jan 21, 2008 2:51 AM

    Hi,
    You might need to specify explicitely -Dcom.sun.management.jmxremote.authenticate=true on the command line.
    Hope this helps,
    -- daniel
    http://blogs.sun.com/jmxetc

  • RMAN-06403 When registering remote target DB

    I'm running Oracle 10.2 Enterprise on RHEL4 (local pc) and Solaris (target db). I have a test db locally on my PC. I established the recovery catalog and successfully tested out backup functionality on my local test db. Now, I reset my SID and attempt to register a remote target database from within RMAN, I get the below error:
    [oracle@tony dbs]$ rman target / \ catalog rman/rman@t_dev
    Recovery Manager: Release 10.2.0.1.0 - Production on Mon Jun 25 16:04:41 2007
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    connected to target database (not started)
    connected to recovery catalog database
    RMAN> register database;
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of register command at 06/25/2007 16:04:45
    RMAN-06403: could not obtain a fully authorized session
    ORA-01034: ORACLE not available
    ORA-27101: shared memory realm does not exist
    Linux Error: 2: No such file or directory
    The recovery catalog database is running. The target database is also running. I can tnsping the target database and also connect via sqlplus with the connect string username/password@target_db.
    Why am I generating this error connecting to a remote db in rman?
    Thanks.

    I get the below error when I grant sysdba & sysoper to rman. This was suggested in another post:
    SQL> grant sysdba to rman;
    Grant succeeded.
    SQL> grant sysoper to rman;
    Grant succeeded.
    SQL> exit
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    [oracle@tony dbs]$ rman target sys/oracle@es_dev catalog rman/rman@t_dev
    Recovery Manager: Release 10.2.0.1.0 - Production on Tue Jun 26 17:19:22 2007
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-00554: initialization of internal recovery manager package failed
    RMAN-04005: error from target database:
    ORA-01031: insufficient privileges

Maybe you are looking for

  • Where can I go to download the original drivers & mediasource that came with my Zen Xt

    I keep getting errors when trying to transfer all my songs from my Zen Xtra to my PC when using both Mediasource 5, Sync Manager and Nomad Explorer. Creative say it is because I'm still running on the original firmware and would need to upgrade. Howe

  • Report erroring out with 'Invalid parameter requested' in Siebel.

    Hello - I have 9 parameters on a template, excluding the two delivered out-of-the-box by siebel to enter the Language and Locale. Recently, if i enter a language value of 'ESP' ( or any other language value), it errors out with 'Invalid parameters re

  • Flash Game Submit Score Problem

    I need to modify the flash game Replay button as Submit button and to redirect to other page(gamescore.html) after clicking the Submit button. I am new to flash. I don't know how to modify the script. Please help me. Here is the total score display p

  • IP over Thunderbolt on Mavericks

    From the recent press release on Mavericks: A new self-configuring IP over Thunderbolt software feature in OS X Mavericks provides a fast link between Thunderbolt-enabled Macs. I can't find any further description of this in their website or a KB art

  • Marshalling in Rmi

    Before data/object are to be transmitted it has to be marshalled,Where and who does the marshalling|? I am new to JAVA please help me out Abhishek Asthana [email protected]