How to connect the independent auditor Apex to a RAC database?

I am trying to set up the last Apex listener to connect to one database RAC as a stand-alone, but he's dying a horrible death. So really would like to know how such a connection should be made.

I created the file of configuration of Summit as follows:

APEX_PUBLIC_USER
apex_public_user
Base
exadr01 - vip.aaa.bbb.ccc
1532
comntst1

and it works very well. However, if I change ONLY the following parts of the config file (and restart of course)...

APEX_PUBLIC_USER
apex_public_user
Base
exadr-scan
1521

comntst. AAA. BBB. CCC

... He died the horrible death I mentioned above. I can connect correctly using these exact settings in SQL Developer etc.

How do I configure the connection details in the configuration file so that I can connect correctly?

~ trevor

BTW, there are many summatised java by errors
"Caused by: java.net.NoRouteToHostException: no route to host".

Hi Trevor,

great to hear that you have to work.
It seems that there are still some minor problems in the listener of the APEX, which can cause headaches.
To help the other spot relevant messages faster, you could mark answers as "correct" or "useful". I have the presumption that some parts of the documentation are based on problems discussed here. At least, there are several questions that have been added to the documentation of the first 'Oracle-style' (early versions had some kind of informal documentation) which have been discussed here but not mentioned previously, so I guess that documentation staff scans the forum now and then, probably when they work on documents for new versions. We may have other documentation or a different application the next time. Because the configuration of migration can be difficult, I expect to change the documentation.

-Udo

Tags: Database

Similar Questions

  • How to connect the cables to an AMD Radeon HD 7450 video card for two monitors individual work?

    I have a HP Pavilion p6-2360eo with the video card Radeon 7450 connected to a monitor of 23xi Pavilion.

    Now, I want to add a monitor of 23xi more, but I do not understand how to connect the cables to the video card to get two logical screen (different views on each monitor)

    Supposedly this monitor can connect to the video card, you have the HDMI connection.  Assuming that the first monitor is connected via DVI, then try a HDMI cable to the second.  I got this from the description of the video card on THIS page.

    Support up to two displays at the same time in these configurations: DVI, HDMI and VGA + HDMI (using the included adapter cable)

  • How to connect the keyboard for apple tv wireless?

    How to connect the keyboard for apple tv wireless?

    If you mean the 4th generation new Apple Tv, you cannot currently. It does not support keyboards at this time.

    If you mean the 3rd generation Apple Tv:

    Use a keyboard Apple Wireless with your Apple TV (2nd or 3rd generation) - Apple supported

  • How to connect the iMac 27 inches 5 K (end of 2014) as PC monitor

    Hello

    How to connect the iMac 27 inches 5 K (end of 2014) as PC monitor?

    Are there any adapter or cable that can help?

    Concerning

    M

    PCs have no support for the target Display Mode.

  • How to connect the value of the input string to numeric values

    Hello

    I'm trying to figure out how to connect the value of unique user input string to numeric values. Basically I want the user to enter the name of a gas that I have a list for (I think I put the list of gases in a table >). Then I want to match numeric values 2 'a' and 'b', according to which gas, name of the user has set. These 'a' and 'b' values will be automatically matched with the name of the gas in a list that I put. For example, hydrogen gas has the value 3 for "a" and 4 for "b. when the user puts the ' hydrogen' name in a string constant, automatically 'a' and 'b' must be issued.» I have connect a and b to a formula

    Thanks for any help

    Hello

    It is perhaps not exactly what you are looking for, but perhaps you could use the enumerated data type and the array of clusters of points (a, b).

    Look at the VI I enclose.

  • How to connect the Officejet Pro 8100 printer to wireless network

    Bought a "nine" Officejet Pro 8100 and want to use via my wireless network. The CD supplied with the printer is obsolete. Updated Apple software but can't see how to connect the printer to the network. Getting Started Guide is no help on this issue. Searched for support without result pages. Utility HP does not provide a method to set up a wireless feature. Find all the instructions, I say first of all make sure that the printer is connected to the wireless network, and that's what I can't find out how. What I forget?

    Finally, I called HP hotline for help and was rescued. It turns out that Apple's software update software includes all the required components. The software from the HP Web site is no longer available. It's frustrating to see the Getting Started Guide refer frequently to the HP installation wizard and be unable to locate it. Once the wizard tech took control of my computer and installed the necessary software, it was a breeze!

    I also note that compose the support number to talk with a guy was rather brief: between 1 and 2 minutes, I recall. Although there was a menu of the phone, it was not a large (unlike the attempt labyrinthine and often circular to locate the online help).

    Insofar as HP knows the necessary software in not available via software update or directly from HP, wouldn't make sense to inform buyers, as well as how to access? At least do not place meaningless, useless on the Web site links that lead into oblivion and frustration!

    Although I did appreciate the journey, I finally arrive at my destination. Thanks to Aris, HP technician. You are exceptional!

  • How to connect the printer wireless hp with the computer?

    * - Original title - the printer printing

    How to connect the printer wireless hp with the computer?

    HP all what you need to be able to complete the task... See here...

    http://h71036.WWW7.HP.com/HHO/us/en/EP/articles/Wireless-Setup-Wizard.html

  • How to connect the slot button Cascades

    I am new to waterfalls and QML and yesterday I tried to port native QtWidget app to waterfalls, but it does not. The problem is, I add some buttons to the container in QML main file and coded my custom slot function which should be executed when the user click some button. But I don't know how to connect the clicked() signal to my function from the custom location.

    When using

    Connect (CloseButton, signal(Button::clicked()),this,slot(on_closeButton_clicked()));) or connect (exitButton, SIGNAL (clicked ()), this, SLOT (on_exitButton_clicked ())); I get error "unable to connect SIGNAL (null) to SLOT (on_closeButton_clicked ()) ' on all the buttons.

    Here is my code in app.cpp

    App::App()
    {
        QmlDocument *qml = QmlDocument::create("main.qml");
        qml->setContextProperty("cs", this);
    
        AbstractPane *root = qml->createRootNode();
        Application::setScene(root);
        textHolder = root->findChild("textHolder");
        openButton = root->findChild("openButton");
        saveButton = root->findChild("saveButton");
        saveAsButton = root->findChild("saveAsButton");
        closeButton = root->findChild("closeButton");
        exitButton = root->findChild("exitButton");
    
        connect(openButton,SIGNAL(Button::clicked()),this,SLOT(on_openButton_clicked()));
        connect(saveButton,SIGNAL(Button::clicked()),this,SLOT(on_saveButton_clicked()));
        connect(saveAsButton,SIGNAL(Button::clicked()),this,SLOT(on_saveAsButton_clicked()));
        connect(closeButton,SIGNAL(Button::clicked()),this,SLOT(on_closeButton_clicked()));
        connect(exitButton,SIGNAL(clicked()),this,SLOT(on_exitButton_clicked()));
    }
    
    //one slot function
    
    void App::on_closeButton_clicked()
    {
    //ui->textEdit->clear();
        textHolder->resetText();
    //if(file.open(QIODevice::ReadOnly | QIODevice::Text)){
        file.close();
        fileName.clear();
    //}
    }
    

    And qml

    import bb.cascades 1.0
    
    Page {
        id: mainPage
        content:
        Container {
        id: main
        Container {
        id: buttonHolder
        scrollMode: ScrollMode.None
                layout: StackLayout {
                    layoutDirection: LayoutDirection.LeftToRight
                    leftPadding: 5.0
                    rightPadding: 5.0
                    topPadding: 5.0
                    bottomPadding: 5.0
                }
                touchPropagationMode: TouchPropagationMode.None
                objectName: "buttonHolder"
                Button {
                    id: openButton
                    text: "Open"
                }
                Button {
                    id: closeButton
                    text: "Close"
                    onClicked: {
                    }
                }
                Button {
                    id: saveButton
                    text: "Save"
                    onClicked: {
                    }
                }
                Button {
                    id: saveAsButton
                    text: "Save As"
                    onClicked: {
                    }
                }
                Button {
                    id: exitButton
                    text: "Exit"
                }
            }
    
        //********************************
            Container {
                id: textHolderArea
                layout: AbsoluteLayout {
                }
                topMargin: 5.0
                leftMargin: 1.0
                rightMargin: 1.0
                bottomMargin: 2.0
                TextArea {
                    id: textHolder
                    textStyle.fontStyleHint: FontStyleHint.Default
                    layoutProperties: AbsoluteLayoutProperties {
                    }
                    leftMargin: 5.0
                    rightMargin: 5.0
                    preferredHeight: 645.0
                    textStyle.justification: TextJustification.Enabled
                    objectName: "textHolder"
                    text: ""
                }
            }
        //********************************
        }
    }
    

    And I have no idea how call my app.cpp C++ slot in my main QML file

    Your buttons should an objectName set to be visible to C++, the id is only visible inside the QML.

  • How to connect the bluetooth iball-groovy head game

    How to connect the bluetooth iball-groovy head game

    Hi Gurushankar,

    You can consult the following articles and check.

    Connect to Bluetooth and other wireless or network devices

    http://Windows.Microsoft.com/en-us/Windows7/connect-to-Bluetooth-and-other-wireless-or-network-devices

     

    Add a Bluetooth device or other wireless or network device: frequently asked questions

    http://Windows.Microsoft.com/en-us/Windows7/add-a-Bluetooth-or-other-wireless-or-network-device-frequently-asked-questions

    Hope this information helps.

  • How to connect the akai ATT01U

    How to connect the Akai ATT01U with my PC? (Windows 7)

    Johan Burgman

    With the supplied USB cable, I guess.  You probably have to install the software provided with the unit first.  Check job mode, manual quick start or any documentation that came with the device.

  • Is there anyone know how to connect the "HP PSC 2355 all in one for iPhone 4S?

    Is there anyone know how to connect the "HP PSC 2355 all in one for iPhone 4S?

    Hello

    First of all, please check if your printer in the list:

    http://support.Apple.com/kb/ht4356

    If so, you can use this hotfix/install:

    iPhone: http://www.Apple.com/support/iPhone/Assistant/AirPrint/

    If NOT you must print using other applications (if applicable) such as

    http://iTunes.Apple.com/au/app/HP-eprint/id299531647?Mt=8

    Kind regards.

  • How to connect the URL of Web site companies existing on the new site I've built?

    How to connect the URL of Web site companies existing on the new site I've built?

    Hello

    If you want to use the current domain with your new business catalyst site, please follow this link

    User manual

    Let me know if you have any question.

  • How to connect the Ombudsman with several bpel process

    Hi Please someone tell me how to connect the Ombudsman with several processes bpel in soa 11g

    And here

    http://eoracleapps.blogspot.com/2009/11/how-to-call-synchronous-BPEL-process.html

  • How to know the degree of optimal parallelism for my database?

    I have an important application on my (Oracle 10,2,0) databae and the box has 4 CPU. All tables are not partitioned. Should I set the parallel degree by myself?

    How to know the degree of optimal parallelism for my database?

    As far as I am concerned there is no optimum degree of parallelism at the database level. The optimal value depends on the query based on the plan in use. This may change over time.

    It is not so difficult to abuse of the PQO and end up harming the overall database performance. PQO is a brute force methodology and should be applied with caution. Otherwise, you end up with results inconsisten.

    You can let Oracle manage, or you can manage it on the level of education through advice. I do not have to specify the degrees of parallelism to the object level. As I said, no two queries are exactly alike and what is right for a query on a table cannot be good for another query on the table.

    In the case of doubt put in place the system to let Oracle manage. If you ask really, it's how many sessions to allocate PQO then look at your reports Statspack or AWR and judge your system load. Monitor v$ px_session and v$ pq_slave to see how these views show activity.

    IMHO - Mark D Powell-

  • Satellite P15: How to connect the TV antenna?

    I bought Toshiba Satellite P15 S479with XP MCE, with tips and Tv tuner, and I do not know how to connect my Tv antenna, so I could watch and record tv on my computer. My picture quality is poor, I see tones with lots of "snow".
    What should I do?

    Hello
    As far as I know it must be an American model. Do you use it in the United States or Europe? If you use in Europe is another TV standard (PAL).

Maybe you are looking for

  • Random numbers appearing in messages

    I am running Firefox 4.0.1 on 64-bit Windows 7 and every time that I post on a forum or send a Gmail account, it adds random numbers at the end of my entry. I tried using Chrome and it doesn't do this, what's the problem?

  • F5: Error E95-204

    Hey guys,. I just bought an F5. All Firmwares are installed. Version 2.10. When im starting to save any SR-Codec (444/SQ422/Lite), the red LED flashes quickly while the TC works and will not stop... can not turn off the camera after that. All other f

  • Tecra A8 (PTA83H) - strange error after software updates

    I downloaded the software upgrades and installed successfully. But if I run it, I get the message "error! The T.BIOS'CEO driver file is missing or damaged. The application leaves. "I just upgraded to BIOS 1.6 but software updates always generate the

  • Use of the good battery?

    Hello When I play the game graphic high (asphalt 8: Airborne) around 68% brightness my battery drains quickly and it reaches 11% to 72% after 2 hours and 30 minutes to 3 hours and 15 minutes. is it good or bad or normal? NOTE: THE SOUND A BIT OVERHEA

  • Problems with 'Runtime Error '.

    The system is Windows XP Professional 64-bit After I enter the password and login to the system as an administrator. a small window opens, who says: ------------------------------- Microsoft Visual C++ Runtime Library Runtime error! Program: C:\Progr