Oracle AS cluster on single windows machine.

Hello All,
would appreciate your input here. I have two OAS 10g r2 (say node1 and node2) on my windows machine. I deployed my application on node1 and added node1 to a cluster. Then i added node2 to the cluster and the OC4J instance in node1 was duplicated into the second node.
My problem is the RMI port for my application is the same on both the OC4J instances and because of this only one OC4J instance can start at a time. I tried modifying the RMI port of node2 and I got both OC4J components working but the application broke. I want to later modify node1 to act as load balancer but my question is how do I modify the ports and get both OC4J isntances and the application working properly?
Thank you,
trr

Thanks for the reply hamdy. Could you please specify where I can find that doc?
Here's something I found which might answer this partly: When I redeployed using enterprise manager, the RMI server port specified in the server.xml is assigned automatically by the EM. Both the nodes have a different rmi port specified in this file. This allows both OC4J instance to start up at the sametime.
However, the RMI port in the rmi.xml correctly specifies what I assigned for my application and this is the same in the RMI.xml files for both the nodes. Because of this, some features of my application dont work. If I end up shutting down one of the nodes, all features work fine.
This makes me think that I cant get this working on windows and might have to shift to vmware/linux and continue my cluster testing. hoping this doc confirms or denies my assumption!
Thanks,
trr

Similar Messages

  • How can i create/install oracle 10 rac on my single windows machine

    can anyone help me to step by step install oracle 10g rac(rac environment) on my single window machine.
    if its not possible then y ?
    thxs

    Vmware is available for both Windows & Linux.
    Secondly you have to decide whether you want the guest OS (OS on which you would configure RAC) to be Windows or Linux ?
    And before everything, check your PC configuration. As Tim mentions in those articles, to run this setup, you need lots of RAM n power.
    Perhaps 4 GB of RAM and Core 2 Duo 2 Ghz + processor. If you are not having an appropriate configuration, it may not even run properly or your might hit memory dump errors on host OS.
    Amardeep Sidhu
    http://amardeepsidhu.com/blog
    http://oracleadmins.wordpress.com

  • Deploying Multiple Presentation Services on a single Windows machine

    Hi All,
    Have any one tried to deploy multiple presentation services in single windows machine. Can any one give me clear steps configure presentation services to access different repositories at a time.
    Thanks in Advance

    Right the conclusion was to either have everything in the same repository or create different presenation service instance. Can anyone please tell us how can different instances of presenation service be created in the same machine.

  • Oracle 9i client version in windows machines

    Hi,
    Currently in our company we have a Linux server in version Oracle9i Enterprise Edition Release 9.2.0.2.0 - Production.
    The client machines are windows and have the same version.
    Now we have another machine Oracle9i Enterprise Edition Release 9.2.0.8.0 - Production.
    Which version of the client for Windows machines, should have access to it?
    thanks.

    Hi,
    I can install only client for windows to access Oracle database in linux server.
    The installer indicated by what I believe is the server. Or I'm much mistaken?
    I could not find the MetaLink an installer for the client software.
    Can anyone help me?

  • Installing two OBIEE 11g instances in a single windows machine

    Dear Experts
    As a part of one of the client requirements , I need to install and configure two instances of OBIEE11g in a single windows server 2003.
    Is it possible , and if you could let know how to achieve that. Here I mean would I be able to run two rpd 's and catalogs. Can I use differnt port and differnt weblogic domain for the same.
    Pls. respond..
    Regds

    Hi,
    Yes ofcourse, we can have two instances on the same machine. However, we need to make sure that they do not conflict each other for the ports/node manager etc. Apart from this, I understand that you have to obey to some restrictions too here.
    1. Starting/Stopping BI Components needs to have a variable BI_SERVER_HOME set in the system. Now that you have two homes, I think you cannot set this. However, you can still start/stop BI Services through command line.
    May be others can add in their opinion here.
    Thank you,
    Dhar

  • Multiple Oracle Databases in a Single Windows Server

    Hi all,
    I have Windows Server System which has oracle database created.
    My question is:-
    How can i create multiple databases on the same server without affecting the first created database & i want to use the both databases at a time?
    Please give the steps to do multiple databases in the same server if possible..
    Thanks in advance,
    Venkatesh J

    Venkateshj wrote:
    How can i create multiple databases on the same server without affecting the first created database & i want to use the both databases at a time?Yes, possible. No, invariable a a bad idea as this is not a scalable approach.
    Oracle scales by adding more servers to a single physical database. This is called Oracle RAC.
    You want to add more physical databases to a single server - doing the exact opposite of what Oracle offers as a scalable solution.
    Please give the steps to do multiple databases in the same server if possible..No special steps. Run DBCA and create a new database instance. In other words, the exact same steps followed for creating the 1st database on that server.
    Also make sure you fully understand WHAT you are doing and the IMPLICATIONS of that. An Oracle database is not the same as a mySQL or SQL-Server database. An Oracle Schema is a logical database - and compares to what a mySQL/SQL-Server database is.
    And a single Oracle database can contain 1000s of logical databases (schemas). Each with their own dedicated storage, own security, own resource profile, etc.
    Oracle is not mySQL/SQL-Server.
    Understanding the differences is important.

  • Is the APEX 2.2 hosted on the oracle site only for windows machine

    Hi,
    Is the APEX 2.2 hosted on the oracle website only for the windows machine.
    Can I download the APEX 2.2 s/w for a linux box as well. Kindly let me know
    if a linux version is available anywhere else.
    Thanks.

    Hello,
    ApEx is running inside the database, so there is only one version of it, which can be downloaded here - http://www.oracle.com/technology/products/database/application_express/download.html
    The database itself can be run on Linux. You can see all the available versions in here - http://www.oracle.com/technology/software/products/database/oracle10g/index.html
    Regards,
    Arie.

  • Unable to connect to Oracle database running on Windows machine from linux.

    Hi,
    I'm not able to connect to oracle database running on Windows machine from Linux machine. I'm geting the below mentioned error. I have given below the code I used to connect to database and database propertes.Do I need to use any specific driver?
    Please help me.
    Thanks,
    Sunjyoti
    Code :
    import oracle.jdbc.pool.OracleDataSource;
    import java.sql.Connection;
    import java.util.*;
    import java.sql.*;
    import java.io.*;
    class try2{
    public static void main(String args[]) {
    try {
              System.out.println("hi");
    // Load the properties file to get the connection information
    Properties prop = new Properties();
    prop.load(new FileInputStream("/home/sreejith/EDIReader/Connection.properties"));
    // Create a OracleDataSource instance
    OracleDataSource ods = new OracleDataSource();
    System.out.println("prop is "+prop);
    configureDataSource(ods, prop);
    Connection conn=null;
    // Create a connection object
    conn = ods.getConnection();
         System.out.println("Connection is"+conn);
    // Sets the auto-commit property for the connection to be false.
    conn.setAutoCommit(false);
    } catch (SQLException sqlEx){ // Handle SQL Errors
    System.out.println("In exception "+sqlEx);
    } catch(Exception excep) { // Handle other errors
    System.out.println(" Exception "+ excep.toString());
    private static void configureDataSource(OracleDataSource ods, Properties prop) {
    // Database Host Name
    ods.setServerName(prop.getProperty("HostName"));
    // Set the database SID
    ods.setDatabaseName(prop.getProperty("SID"));
    // Set database port
    ods.setPortNumber( new Integer( prop.getProperty("Port") ).intValue());
    // Set the driver type
    ods.setDriverType ("thin");
    // Sets the user name
    ods.setUser(prop.getProperty("UserName"));
    // Sets the password
    ods.setPassword(prop.getProperty("Password"));
    Connection properties :
    # Your Database Connection details
    HostName = 10.20.3.19
    SID = EDIREAD
    Port = 1521
    UserName = dbuser
    Password = dbuser
    Error I'm getting is
    error while trying to connect with odbc datasource
    [root@iflexpau2217 EDIReader]# java try2
    hi
    prop is {HostName=10.20.3.19, Password=dbuser, UserName=dbuser, SID=EDIREAD, Port=1521}
    In exception java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
    Also I tried to connect with weblogic JDBC driver
    Code is here:
    import java.io.BufferedReader;
    import java.io.ByteArrayInputStream;
    import java.io.File;
    import java.io.FileNotFoundException;
    import java.io.FileReader;
    import java.io.IOException;
    import java.sql.Blob;
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.PreparedStatement;
    import java.sql.SQLException;
    //import com.entrust.toolkit.util.ByteArray;
    public class trial{
         public static void main(String args[]) throws IOException{
              System.out.println("hi");
              Connection p_conn = null;
              PreparedStatement xml_insert = null;
              try {
         // Load the JDBC driver
                   System.out.println("hi2");
         // String driverName = "oracle.jdbc.driver.OracleDriver";
    String driverName = "weblogic.jdbc.oracle.OracleDriver";
         System.out.println("hi2");
         Class.forName(driverName);
         // Create a connection to the database
         String serverName = "10.20.3.19";
         String portNumber = "1521";
         String sid = "EDIREAD";
         //String url = "jdbc:oracle:thin:@" + serverName + ":" + portNumber + ":" + sid;
    String url = "jdbc:bea:oracle://10.20.3.19:1521";
         String username = "dbuser";
         String password = "dbuser";
    System.out.println("connection is:"+p_conn+"user name is"+username+"password is"+password);
         p_conn = DriverManager.getConnection(url, username, password);
         System.out.println("connection is:"+p_conn+"user name is"+username+"password is"+password);
              xml_insert=p_conn.prepareStatement("insert into PRTB_SUBUNIT (SUBUNT_ID,SUBUNT_SUB_UNIT,SUBUNT_PHYUNT_ID) values (?,?,?)");
              //InputStream in=null;
              File l_file=new File("/home/sreejith/EDIReader/propertyfiles/inputfile/BUG_10802_ES_CSB19_68.txt");
              BufferedReader input =null;
              input=new BufferedReader(new FileReader(l_file));
              String line = null;
              StringBuffer trial=new StringBuffer();
              while (( line = input.readLine()) != null){
                   trial.append(line);
                   trial.append(System.getProperty("line.separator"));
              //InputStream is = new BufferedInputStream(new FileInputStream(l_file));
              System.out.println(trial.toString());
              //Blob b ;
              //byte[] bytes=trial.toString().getBytes();
              //System.out.println("Size-->"+bytes.length);
              xml_insert.setString(1,new String("SpecailChar"));
              //xml_insert.setBinaryStream(2,new ByteArrayInputStream(bytes),15920);
              xml_insert.setString(3,"SpecailChar");
              xml_insert.executeUpdate();
              p_conn.commit();
              } catch (ClassNotFoundException e) {
                   System.out.println("ClassNotFoundException:"+e.getMessage());
              // Could not find the database driver
              } catch (SQLException e) {
                   System.out.println("SQEXCEPTIN:"+e.getMessage());
              // Could not connect to the database
              }catch (FileNotFoundException e) {
                   System.out.println("filenot found:"+e.getMessage());
              // Could not connect to the database
    Error I'm getting is
    error while trying with jdbc:
    SQEXCEPTIN:[BEA][Oracle JDBC Driver]Error establishing socket to host and port: 10.20.3.19:1521. Reason: Connection refused

    Is the Windows firewall active? Have you enabled the port on the firewall, if it is?

  • Can install Oracle 10g release 2 on Windows 2008 R2 Server  64-bit machine

    Hi All,
    Can we install Oracle 10g Release 2 on Windows 2008 Server R2 for 64-bit machine? If yes then is there any patche requirement for this, So suggest me.
    Regards,
    Rizi

    Hi;
    Can we install Oracle 10g Release 2 on Windows 2008 Server R2 for 64-bit machine? If yes then is there any patche requirement for this, So suggest me.Yes you can but you must use 10.2.0.5.0 version. Pelase check below note:
    How to Install Oracle 10.2.0.5 on MS Windows 7 / Windows 2008R2 [ID 1173433.1]
    Regard
    Helios

  • Not able to install Oracle 11g R2 client in windows 8 machine

    Oracle universal installer window is not coming up in windows 8 machine, if any one installed Oracle 11G R2 client in windows 8. Please share those steps and if you have latest 11G client share that download link.
    Thanks in advance.
    Edited by: 969434 on Nov 4, 2012 10:48 PM

    Hi;
    Win 8 is not certified yet. Please use certification matrix at metalink and also check below note:
    Master Note For Oracle Database Client Installation [ID 1157463.1]
    Client / Server / Interoperability Support Between Different Oracle Versions [ID 207303.1]
    PS:Please dont forget to change thread status to answered if it possible when u belive your thread has been answered, it pretend to lose time of other forums user while they are searching open question which is not answered,thanks for understanding
    Regard
    Helios

  • Hw to install oracle forms and reports 11g builder on windows machine

    HI Guys
    i need to install oracle forms and reports 11G builder on windows machine for devlopers.. do anybody know from where i can download them and install them on developers machine. if anybody know steps of them .. that will be great..
    Regards,
    Devender

    Maybe this thread will help you: Re: Install Forms & Rpts 11.1.1.3 with WebLogic Server 10.3.3 on Win32

  • How to install 2 oracle homes on singl windows host

    Hi Experts,
    I am planning to install two sap R/3 4.7 ext200 SR1 instances on windows 2003. I already installed DEV instance & planning for QAS.
    I am confused about how to install two ORACLE softwares on single windows host.
    I search on internet there for windows they are pointing to the registry value
    \HKEY_LOCAL_MACHINE
    Software\Oracle\inst_loc.
    I am not able to understand what I have to do with this ?
    Can you please help me to understand & execute this.
    Thanks,
    Sachin

    Sachin,
    Go throuth this link to understand more about Oracle Inventory and Oracle Homes software update.
    http://cs.ifmo.ru/~ad/Documentation/oracle-10g-lib-doc/em.101/b12140/3_oui_oracle_homes.htm#i1005634
    The current entry is picked from the PATH vairable of the system and user that you have logged on. This is because you have already done 1 Oracle Installation on the host.
    Keep in mind that you choose the correct oracle home while installing and in future updating Oracle software (patchset, Interim Pactches...)
    You can give a seperate path for Oracle Inventory. Just go thru to the existing folder of OraInventory in Program files you will understand it better.
    It is used to install and update the Oracle software in the oracle home that you will choose in your next step.
    All the Best,
    Nilesh

  • Oracle Database at Novel Netware and D2K at Windows Machine

    One of our clients are asking Combination of Oracle Database at Novel netware and Developer 2000 at Windows machine , please send us the comments whether the above combination is possible

    Hello,
    yes it is possible, we are having oracle 8.04 running on Netware 5.0 with Win98 clients using D2K.
    However further versions of oracle e.g. 8i,9i etc are not available and never going to be available on netware.
    hence we are migratiing to Win2K Adv server.
    regards.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by [email protected]:
    One of our clients are asking Combination of Oracle Database at Novel netware and Developer 2000 at Windows machine , please send us the comments whether the above combination is possible<HR></BLOCKQUOTE>
    null

  • Moving oracle 8i db running in windows 2k3 srvr to another machine

    hi everybody,
    my scenario is very simple but i am not able to do that so plz give ur soln wth proper sql commands and steps.
    i want to move oracle 8i db running in windows 2003 server to another machine running in same server how can i do this.
    my database name is att.
    path: c:\oracle\ora81\database
    path: c:\oracle\oradata\att
    inside this cntrl files, log files and trace files are there.
    path: c;\oracle\admin\att
    inside this pfile,udump,bdump,cdump are there.
    so kindly provide me soln asap as i hav to do it by tmw.
    plz oracle dba experts and professionals help me.
    thanks
    suresh

    Why have you made a duplicate post?
    moving 8i database\very urgent\plz
    Questions and suggestions in that thread are unanswered from your side.

  • Running Oracle XE and Oracle enterprise on same windows machine

    Hi,
    I never had to try anything similar to this on windows. I need to continue to run Oracle Enterprise edition and Oracle XE on my windows machine.
    I can install both, but when I try to run the Listener for XE Edition, it starts the listener for the enterprise edition.
    Also the DB Homepage doesnt work, which leads me to believe that it might be using some fo the enterprise files, not the XE files.
    I cant access the XE forum, because I cant register, so sorry for posting this here. I cant seem to find a place that mentions or explains how you can run both on a Windows box.
    I have run multiple oracle versions on Unix, just never on windows...

    On the windows case, the order of evaluation is taken from the PATH environment variable. This same rule applies when you have several Oracle products installed on the same box, ensure you are launching a tool that makes sense with its home, i.e. launching netca to configure a tnsentry at the XE home will not work since XE doesn't have a netca tool and the tnsora file it will be modifying will be that of the oracle home it is related to. On the other hand, when lauching sqlplus it would not be too dangerous since any compatible version of sqlplus will work.
    There are issues with the listener, Oracle XE requires to be registered against the listener, additionally it will create an OraDAV access (http protocol) to open the access to the Web Administration Console. If you are planning to use web/plsql application this is also important. It can work with the other listener, but depending on your particular conditions you may want to start an independent listener for XE.
    ~ Madrid

Maybe you are looking for

  • Fast easy money*** no scams

    Make Money Fast and Easy$$$ $$MAKE LOTS OF CASH THE EASY WAY$$ Dear Internet user, good day, this article i've written is all about the fact where u earned an ASTOUNDING amount of money in less than a month and I've decided to share or reveal the sec

  • Using the Insert statement in a Java program without hardcoding the data

    hello. this is james mcfadden. i have developed a program called Demo.java, which is used with another program called QueryTableModel.java (a program that allows data to be viewed in a JTable). The Demo.java program displays a menu, connects to a dat

  • Sub-Groups Not Appearing in Report

    Post Author: burhan.survery CA Forum: Crystal Reports I am using CR10. My report has two groups: Main group "Order Number" and the subgroup "Customer Number". Both groups are from the same table. There could be upto four Customers per order. When i p

  • IPod Touch will NOT sync!  Have tried EVERYTHING! ... suggestions anyone?

    I have no idea what is going on, my iPod touch is only 6 months old and in good condition. I've never dropped or anything like that, no computer crashes or surges that would cause any problems with it, and up until this morning, it has been working f

  • Re: Hidden charge - not happy

    Yes, I just found the same thing on my bill. I didn't had a landline for years because given that I have 1200 inclusive mobile minutes it is a complete waste of money. However, I am forced to have one if I want a decent broadband set up (this seems u