Question for install repository on RAC environment

hi all,
Our RAC has two nodes: node1(primary) and node2. Each node has two database instances: odsstag and ods. I've finished with odsstag, and
now I am testing on ods. I create a new repository owner on node1.ods, and get
node2.ods registered via repository assisstant. My question is will this change
the value for rtrepos.properties file? I mean do I need to copy the file to
node2 again?
thanks

Hi,
you should use node net service name
Regards,
Oleg

Similar Messages

  • Question for installing Solution Manager & ECC 5.0

    Any idea for installing Solution Manager 3.2 on Windows server 2003 with Oracle9i problem when install Database Instance. Installation failed when the intallation progress went to Oracle Post-Load Action.
    The message from startsap log file is
    "running C:\usr\sap\T01\SYS\exe\run/sapstart.exe name=T01 nr=03 SAPDIAHOST=saptest02 -Wait
    start service SAP01_03 on machine
    saptest02
    OpenService of SAPT01_03 failed. Error#: 1060
    CreateNamedPipe for
    saptest02\pipe\SAP01_03 Failed, Extended Error #2
    start service SAP01_03 on machine
    saptest02
    OpenService of SAPT01_03 failed. Error#: 1060
    C:\usr\sap\T01\SYS\exe\run/sapstart.exe=>sapparam(1c): No Profile Used."
    Another question is about installing the Oracle database software: should we choose Create Databse or not when install Oracle Server Software only?
    Is my installation process as following correct?
    ->SELECT A PRODUCT TO INSTALL:
      Oracle9i Database 9.2.0.1.0
    ->WHAT TPYE OF INSTALLATION DO YOU WANT:
      Enterprise Edition
    ->SELECT A DATABASE SUITED TO YOUR NEEDS:
      Software only
    After end of installation
    install Oracle9i Client 9.2.0.1.0->Administrator
    Thanks a lot

    Hi Shusen, I´m trying to do the same think (Install ECC IDES with Oracle 9i in one computer for educational propose), can you help me with this:
    1.I made the same Oracle install process because when I tried with sapserver.cmd nothing happened, for that reason i made:
    SELECT A PRODUCT TO INSTALL:
    Oracle9i Database 9.2.0.1.0
    ->WHAT TPYE OF INSTALLATION DO YOU WANT:
    Enterprise Edition
    ->SELECT A DATABASE SUITED TO YOUR NEEDS:
    Software only
    After end of installation
    I did not install client, is this correct?
    2.After install this, I run the sapins.exe but  show me this error: INSTALL FIRST SAP J2EE ENGINE, I download the JAVA SDK from JAVA page (java_ee_sdk-5-windows) but did not fix the problem: Do you know what file is this? Or, where is it in the DVD installation?
    Thanks in advance if you or somebody can help me and excuse me if the answers are obviously, but I´m not a system engineer I´m only try to install IDES for learn SAP WM.
    Thanks.

  • Procedure for Installing Oracle9i RAC on RH AS 2.1

    I wrote a step-by-step guide for installing Oracle 9i RAC on Red Hat Advanced Server 2.1. It covers raw devices, OCFS, and FireWire-based shared storage:
    http://www.puschitz.com/InstallingOracle9iRAC.shtml
    I tried to address problems and errors pertaining to installing 9i RAC on Linux including the usage of FireWire drives:
    http://www.puschitz.com/InstallingOracle9iRAC.shtml#FireWireBasedSharedStorageForLinux
    http://www.puschitz.com/InstallingOracle9iRAC.shtml#ConfiguringFireWireBasedSharedStorage
    If you know of problems/solutions not covered in this article, let me know.
    Werner

    Hello,
    I just want to say Thanks!!
    For your Installation 9i R2 on RH Tutorial.
    And, I have to say they works fine to Mandrake too. (some times - better tham).
    My best regards,
    Eduardo from Rio de Janeiro, Brasil

  • Analyze job very slow in RAC environment

    Hi,
    I have an anlyze job which runs for 3 hrs in RAC environment (9.2.0.6).
    Earlier in NON-RAC environment it used to complete in 1 hrs.
    Need help in solving this issue.
    Ajoy Kumar Thapa

    hi,
    This database is used for query purpose mainly.
    we do huge data load during weekend into one of the table.
    This table is then exchange with one of the partition of a huge partitioned table.
    after that analyze job runs on this partitioned table.
    The command we use for analyze is given below:
    DBMS_STATS.GATHER_SCHEMA_STATS
    ownname => '<owner_name>'
    ,estimate_percent => 05
    ,cascade => true
    ,degree => 4
    ,granularity=>'ALL'
    I want to know, what can be the reason, this job, which runs fine in NON-RAC environment, is taking so long in RAC enviroment.
    Any help is highly appreciated.
    Ajoy Kumar Thapa

  • Plsql Programming Guidelines within a RAC Environment

    Hi Guys,
    Are there any specific guidelines you would recommend for programming within a RAC environment, in addition to the usual best practices one would adopt for writing Plsql programs? ie guidelines that would take advantage of the performance boost from the high availability feature of the RAC environment, as well as the processing power?

    There are realistically no guidelines that are specific to RAC (other than making sure if you're referencing V$ tables in code that you're using the GV$ version if you want data from all the nodes).
    On the other hand, there are plenty of guidelines that are nice in single-node environments that potentially become necessities in a RAC environment. In particular, all the guidelines that reduce contention are useful in a single-node environment but can become critically important in a RAC environment. Anything that causes hot blocks in a single-node system can cause massive scaling problems in a RAC environment.
    - If you are using permanent tables rather than global temporary tables to store temporary data, once load crosses a critical point, that can cause every session in the database to be queued up waiting for some other session to finish with the handful of blocks in this table to get sent over the interconnect from a different node in the cluster. That will bring your system to its knees.
    - If you are inserting monotonically increasing keys into an index (i.e. a sequence generated primary key), you want as many of those primary key indexes to be reverse key indexes as possible (where "possible" takes into account the downside of no longer being able to do range scans on those indexes) to minimize index hot blocks and thus contention for those blocks over the interconnect.
    - etc.
    Justin

  • Question for repository installation on RAC environment

    Hi guys,
    our RAC enviroment has two nodes: node1 and node2. The tnsnames file has 3 net servcie names. They are for node1, node2, and node(node1 and node2). Here is the example:
    node1 =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = host1)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = service_name)
    (INSTANCE_NAME = node1)
    node2 =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = host2)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = service_name)
    (INSTANCE_NAME = node2)
    node =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = host1)(PORT = 1521))
    (ADDRESS = (PROTOCOL = TCP)(HOST = host2)(PORT = 1521))
    (LOAD_BALANCE = yes)
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = service_name)
    When I am installing repository owner on node1, do I need to use net service name? if need, what name to use here? node1 or node?
    when I register node2, I know I need to use the net servcie name, according to the installation guide. So which name do i use in this step? node1, node2 or node?
    thanks in advance.

    Hi,
    you should use node net service name
    Regards,
    Oleg

  • Crs question for rac

    on RH ES3 Update 5, Oracle 10.1.0.3....
    Due to some network reconf. I reinstalled CRS.
    I reconfigured VIPCA and NETCA.
    My current status on this rac is:
    VIP is running on node: hp1
    GSD is running on node: hp1
    Listener is running on node: hp1
    ONS daemon is running on node: hp1
    Problem: When I reboot, none of these resources come up automatically. How can i configure so that it can start during reboot.
    Thanks in advance,
    VT

    The term rolling upgrade refers to upgrading different databases or different instances of the same database in a RAC environment, one at a time, without stopping the database. Oracle supports the rolling upgrade of Oracle RAC (not OS like I wrote previously) in a cluster when both versions of the operating system are certified with the version of the Oracle Database you are running. Rolling patch upgrades are not available if the Oracle Database software is shared across the different nodes. This is the case where the Oracle home is on Cluster File System (CFS) or on shared NFS volumes. The feature is only available where each node has its own copy of the Oracle Database software.
    I doubt that Redhat or Oracle Linux will support in-place upgrades from version 4 to 5. Your only option really available might be to split the RAC cluster and completely setup each node from scratch, than rebuild the cluster. There could be of few changes between EL 4 and 5 that may affect your ability to run a mixed cluster, i.e. raw device support. Sorry, I'm afraid I cannot give you any other practical advise. Perhaps you might want to check the RAC forum at RAC, ASM & Clusterware Installation
    To answer you question about the difference with Oracle Linux. The same versions of Oracle Linux and Red Hat Enterprise are binary compatible. For Oracle Linux 5.5, x86_64, you have an option to install the Unbreakable Enterprise Kernel (UEK), which contains a newer and Oracle optimized version of the kernel, currently 2.6.32. Oracle Linux provides a free public yum repository for software management and other Oracle specific packages. For access to patches you need a subscription to the Unbreakable Linux Network (ULN).
    http://www.oracle.com/us/technologies/linux/index.html
    http://www.oracle.com/us/corporate/pricing/els-pricelist-070592.pdf
    https://www.redhat.com/apps/store/server/
    Edited by: MaC on Dec 20, 2010 7:20 PM

  • Install Repository Creation Utility [RCU] for Discoverer 11g

    Friends !
    Please help me in answering below quesitons.
    1. We are implementing Discoverer 11g on Sun Solaris 64 SParc systems
    2. For this i did download software using "edelivery" - Oracle Fusion MiddleWare 11g.
    3. I did installed Weblogic server
    4. But there is no "Repository Creation Utility " for solaris env. Is it mandatory to install Repository Creation Utility for discoverer 11g installation
    our main goal is to install discoverer 11g and integrate with e-business environment 12.1.3
    Please advise on this
    Regards
    VSH

    Please see MOS note 858748.1.
    Section "5. RCU only on Linux x86 and Windows 32 bit"
    This states:
    "Since the Repository Creation Utility (RCU) is only available on Linux and Windows, how can I create schemas in other supported Oracle Database platforms?
    Answer:
    RCU is only available for Windows 32 bit and Linux x86. Run RCU on these supported platforms to remotely access a certified Oracle Database Server (see Certification Guide) by following the RCU User's Guide"
    There are then links to useful information so definitely read that note.
    Regards
    Robin

  • Question on pfile in RAC environment

    DB version:10GR2,11GR2
    OS Version: Solaris, AIX, Linux
    Lets say i have a 2 node RAC environment.
    DB name is : jerry
    I have a datagroup called DATA7
    Node1's pfile would only contain a single like as shown below
    $ cat initjerry1.ora
    SPFILE='+DATA7/jerry/spfilejerry.ora'Likewise, for Node2
    $ cat initjerry2.ora
    SPFILE='+DATA7/jerry/spfilejerry.ora'Am i right?

    yes, this works. But I don't think this pfile is even needed because afair srvctl will know to use the spfile on ASM. I remember that I had some trouble with one install a while ago because there was also an spfile on each server. This would not get touched by automatic startup and shutdown but when I started the instance manually with sqlplus (and without arguments) this spfile would be used and it caused a lot of confusion for me.
    Bjoern

  • Manually Setting up a Standby Database for RAC Environment

    Hi,
    I am a Junior DBA so apologies if this sounds like a silly question.
    We have production 11g Extended RAC environment setup. Management have asked for a separate single instance database be setup as a standby DB on a separate 'cold' server in case we lose complete connection to both sides of the RAC. I read up on Oracle Data Guard and presented this as a solution, but they seem adamant about manually going in and copying out the latest backup and archive logs over to the standby database.
    Can this be done? I mean, can ASM managed backup files and archive logs from one database be simply copied out of the backup directory and imported into a completely separate database as easy as that?
    We are using ASM to manage to data files on the RAC. My understanding is that we cant manually access the files on an OS level when using ASM, but maybe I am wrong. Any help or opinions on this would be greatly appreciated.
    Rgs,
    Rob

    Hi,
    Can this be done? I mean, can ASM managed backup files and archive logs from one database be simply copied out of the backup directory and imported into a completely separate >database as easy as that?Yes, but depends on DB version.
    what is the DB version.
    from 11g you have cp command so there is a possibility to copy generated archive logs to standby location, so that you can apply..
    In 10g there is no such option. you need to create a standby database. with automatic shipping
    Thanks

  • Is a gateway mandatory for RAC environment?

    Question:
    Is a gateway mandatory for RAC installation, general on RAC environment?
    *..when yes, why?*
    Many thanks
    I make this test with my only one RAC node
    1. Run with gateway:
    [oracle@linux1 ~]$ crs_stat -t
    Name           Type           Target    State     Host       
    ora....SM1.asm application    ONLINE    ONLINE    linux1     
    ora....X1.lsnr application    ONLINE    ONLINE    linux1     
    ora.linux1.gsd application    ONLINE    ONLINE    linux1     
    ora.linux1.ons application    ONLINE    ONLINE    linux1     
    ora.linux1.vip application    ONLINE    ONLINE    linux1     
    ora.orcl.db    application    ONLINE    ONLINE    linux1     
    ora....l1.inst application    ONLINE    ONLINE    linux1     
    ora....test.cs application    ONLINE    ONLINE    linux1     
    ora....cl1.srv application    ONLINE    ONLINE    linux1
    [oracle@linux1 ~]$ srvctl status database -d orcl
    Instance orcl1 is running on node linux1All thing seem correct!
    2. run without gateway (blank setting):
    [oracle@linux1 ~]$ crs_stat -t
    Name           Type           Target    State     Host       
    ora....SM1.asm application    ONLINE    OFFLINE              
    ora....X1.lsnr application    ONLINE    OFFLINE              
    ora.linux1.gsd application    ONLINE    ONLINE    linux1     
    ora.linux1.ons application    ONLINE    ONLINE    linux1     
    ora.linux1.vip application    ONLINE    OFFLINE              
    ora.orcl.db    application    ONLINE    OFFLINE              
    ora....l1.inst application    ONLINE    OFFLINE              
    ora....test.cs application    ONLINE    OFFLINE              
    ora....cl1.srv application    ONLINE    OFFLINE              
    [oracle@linux1 ~]$ srvctl status database -d orcl
    Instance orcl1 is not running on node linux1Something is false!

    By default, the server's default gateway is used as a ping target during the Oracle RAC 10g VIP status check action.
    Upon a ping failure, Oracle will decide that the current interface where the VIP is running has failed, and will initiate
    an interface / internode VIP failover.
    In above case, we used just one node for CRS installation, so the VIP coudn't failover to other nodes and thus reported additional error like :
    CRS-1006: No more members to consider
    CRS-0215: Could not start resource 'ora.dbtest2.vip'.
    Try ->
    A parameter FAIL_WHEN_DEFAULTGW_NOT_FOUND in the file
    $ORA_CRS_HOME/bin/racvip to address this problem.
    The following steps will fix the VIP starting problem for above mentioned scenario.
    1- stop nodeapps
    2- As root,
    vi the script $ORA_CRS_HOME/bin/racgvip and change the value of
    variable FAIL_WHEN_DEFAULTGW_NOT_FOUND=0 .
    3- start nodeapps and you should see the resources ONLINE
    You may proceed with netca and dbca to create a RAC database after this.

  • Configuring our RAC environment Questions

    The environment consists of Sun Solaris 10, Veritas, and 10g RAC:
    Questions:
    I need to know the settings and configuration of the entire software stack that will be the foundation of the oracle RAC environment....Network configurations, settings and requirements for any networks including the rac network between servers
    How to set up the solaris 10k structures: what goes into the global zones, the containers, the resource groups, RBAC roles, SMF configuration, schedulers?
    Can we use zfs, and if so, what configuration, and what settings?
    In addition, these questions I need answers to:
    What I am looking for is:
    -- special hardware configuration issues, in particular the server rac interconnect. Do we need a hub, switch or crossover cables configured how.
    -- Operating System versions and configuration. If it is Solaris 10, then there are more specific requirements: how to handle smf, containers, kernel settings, IPMP, NTP, RBAC, SSH, etc.
    -- Disk layout on SAN, including a design for growth several years out: what are the file systems with the most contention, most use, command tag depth issues etc. (can send my questionnaire)
    -- Configuration settings\ best practices for Foundation suite for RAC and Volume manager
    -- How to test and Tune the Foundation suite settings for thru-put optimization. I can provide stats from the server and the san, but how do we coordinate that with the database.
    -- How to test RAC failover -- what items will be monitored for failover that need to be considered from the server perspective.
    -- How to test data guard failures and failover -- does system administration have to be prepared to help out at all?
    -- How to configure Netbackup --- backups

    Answering all these questions accurately and correctly for you implementation might be a bit much for a forum posting.
    First I'd recommend accessing the Oracle documentation on otn.oracle.com. This should get you the basics about what is supported for the environment your looking to set up, and go a long way to answering your detailed questions.
    Then I'd break this down into smaller sets of specific questions and try and get the RAC axters on the RAC forum to help out.
    See: Community Discussion Forums » Grid Computing » Real Application Clusters
    Finally Oracle Support via Metalink should be able to fill in any gaps int he documentation.
    Good luck on your project,
    Tony

  • RAC environment setup for OEM Grid Control

    Hi All,
    One of my customer is setting up RAC environment for OEM Grid Control, he has following questions.
    1) Can I use the DirectNFS client on each RAC node to mount SAN storage created with an OCFS2 filesystem?
    2) Can I use the DirectNSF client to mount the shared filesystem loader directory?
    3) Should I be using DirectNFS for the shared filesystem loader at all? Or should I just use a normal Linux NFS mount?
    4) Is OCFS2 preferred over NFS for the shared filesystem loader?
    Any information is highly appriciated.
    Thank you,
    Bhavin

    Please check the below doc
    http://www.oracle.com/technology/deploy/availability/pdf/MAA_WP_10gR2_EnterpriseManagerBestPractices.pdf

  • Questions on sqlnet.ora, listener.ora files in RAC environment.

    Experts,
    I've some confusion with below files in RAC environment.
    sqlnet.ora
    listener.ora
    These files are available in two locations: <GRID_HOME> & <DB_HOME>.
    My questions:
    1. Why do we have two versions of files ?
    2. When I query lsnrctl status from BOTH the homes, it says it is using listener.ora from <GRID_HOME> as shown below.
    Listener Parameter File D:\app\11.2.0\grid\network\admin\listener.ora
    3. What is the use of files which are in <DB_Home>
    4. If you make some changes to listener using "Netmgr" tool, we expect it will update listener.ora in <GRID_HOME>. Interestingly, it is changing the contents of listener.ora in <DB_HOME> .
    Can anyone please clarify it ?
    Thanks in advance.

    859875 wrote:
    1. Why do we have two versions of files ? In the past, the CRS s/w did not include ASM (ASM did not provide support for cluster voting and registration disks). Thus the networking components such as SQL*Net and the Listener were not part of the CRS installation.
    With Grid Infrastructure, ASM supports cluster voting and registration disks and is recommended to be used for that (as oppose to the old style of raw disks or using an external cluster-based cooked file system like <i>ocfs</i>). And with ASM comes the SQL*Net networking layer and s/w (such as the Listener). As ASM ships with Grid Infrastructure, it now also includes the same networking layer as what the RDBMS installation will. Thus both <GRID_HOME> and <DB_HOME> will contain the same networking components.
    However, only a single Listener is for example needed. And that can only run from a single base location. So for operational use, only one version will be actively in use.

  • Minimum Requirments for Installing RAC

    Hi Guru's
    I have to Install Oracle RAC with ASM .I am new to it and searching for answers of following Questions .
    1: I want to buy Book For Oracle RAC , which one is best ?
    2: What are the minimum hardWare, Software and Network Requirments for Installing 2node RAC?
    3: I have a Windows Vista 3GB machine and a windows 2008R2 Sever on which I can make Machines through HyperV , Is this Hardware sufficient for the purpose ?
    4: I have heard that we can not Install RAC on Machines on HyperV is this true? so do i need to go for VMware if true?
    Thanx in advance
    regards,
    Manish

    1. Two books
    http://www.packtpub.com/oracle-11g-r1-r2-real-application-clusters-essentials/book
    http://www.apress.com/9781430229582
    2. Your Windows Vista machine should be a 64bit machine (Vista Professional) with 8GB RAM.
    3. and 4. Create VMs using Oracle Virtual Box and installing Oracle Linux in the VMs
    See http://www.oracle-base.com/articles/rac/articles-rac.php#11gR2
    Hemant K Chitale

Maybe you are looking for

  • Is it possible to add an attachment in an adapter module

    Hi, I'm trying to add an attachment to the main payload in a SOAP communication channel, like this: XMLPayload extraInfoAsAttachment = new XMLPayloadImpl(); //com.sap.engine.interfaces.messaging.spi.XMLPayloadImpl //XMLPayload extraInfoasAttach = msg

  • Itunes not picking up my iphone

    Since the last update Itunes does not pick up my Iphone.  Ran diag. says no usb port found

  • Behaviour of EDN in RC3

    Having worked with RC3 of SOA Suite 11g, particularly the new EDN features, I have come across the following issues: The use case I am trying to model is that I have, for example, three orders. The first is for the physical installation of a telephon

  • How to attach a file to a mail using htmldb

    Hi all, can u help me how to attach a file in htmldb. iam able to send a mail using the inbuilt package but unable to attach a file. advance thanks in helping out.

  • JDeveloper installation appears to have the wrong Persistence class

    I'm trying to use EJBs for the first time, and have run into a problem initialising an EntityManagerFactory. The examples I've been looking at use something like: EntityManagerFactory emf = Persistence.createEntityManagerFactory("<persistence unit na