SunWebServer 6.10SP11. Strange hanging on connecting to admin's console

I'd installed server and started it.
So, I can confirm, that server is up and running now... it's ok, but after I started admin console - I couldn't connect to it.
Port is avaliable, password is correct.
Admin's container recieved password and then it have been trying to display main page, but still all in state "Waiting for http://hostname:9999...."
Log level - finest, but I can't see any errors in appropriate log.
Last bunch of strings from errors log(/u01/SUNWebsrvr/https-admserv/logs):
[24/Sep/2009:13:08:02] fine (29161): inserted filter http-compression
[24/Sep/2009:13:08:28] fine (29161): inserted filter http-compression
[24/Sep/2009:13:08:28] fine (29161): GET requests for virtual server vs-admin can safely bypass ACL checks
[24/Sep/2009:13:08:28] fine (29161): HTTP4273: minimum number of Cgistub children is 2
[24/Sep/2009:13:08:28] fine (29161): HTTP4274: maximum number of Cgistub children is 10
[24/Sep/2009:13:08:28] fine (29161): HTTP4275: Cgistub reap interval is 30 seconds
[24/Sep/2009:13:08:28] fine (29161): HTTP4278: starting Cgistub listenerOS: SunSolaris 5.10 (SPARK 64)
Does anybody have any ideas of what's going on?
Edited by: ivdzhen on Sep 24, 2009 2:39 AM

Ah.
It has come at last. Now I see admin's page. Don't know If something were wrong with it, but I've been waiting for 30 minutes to see page.
thanks a lot :)
However, may be someone could explain me the reasons of such a ridiculous behaviour of admin's container?

Similar Messages

  • SSMS Hang on connecting Analysis services

    Hi Experts , 
    I am stuck on Production Server while connecting to Analysis services
    When I open SSMS and Connect to Analysis Services, it just hang and nothing happens even after waiting for 20-25 mins .
    We tried to restart Sql Server Analysis services but even it is hanged, with Amdin credential I have stopped the 
    Service , but for last 30 mins it is in Stoppng State ..
    I saw CPU usage is 10% and memory is hardly 30% used in Task manager
    Please assist , its urgent .?

    Hi Rihan8585,
    According to your description, it hangs when connecting SSAS and starting Analysis Services. Right?
    In this scenario, please go to event view. Remove all old entries and Clear All Events. Then try to start the Analysis Services service. After that you suppose to connect SSAS successfully. Please refer to similar threads below:
    https://social.msdn.microsoft.com/Forums/sqlserver/en-US/221be6b0-d57f-4d2c-8f03-1ffa77b51541/cannot-start-analysis-services-2008-service?forum=sqlanalysisservices
    http://www.sqlservercentral.com/Forums/Topic1108852-391-1.aspx
    Best Regards,
    Simon Hou
    TechNet Community Support

  • ActiveMQ-CPP client hangs when connect ActiveMQ-CPP client & OpenMQ broker

    I am trying to connect an ActiveMQ-CPP client with an Oracle OpenMQ broker via STOMP. Both manufacturers claim this will work, and I have been able to get an ActiveMQ-CPP client to connect to an ActiveMQ broker via STOMP, an OpenMQ client with an OpenMQ broker via STOMP, and an OpenMQ client with an ActiveMQ broker via STOMP without problems, but the only one missing is what I need- ActiveMQ-CPP client to connect with OpenMQ broker.
    I am using Fedora Linux and am using the provided "example" script for ActiveMQ-CPP, changing the brokerURL to be "tcp://localhost:61613?wireFormat=stomp" instead, where the OpenMQ STOMP bridge is located at localhost:61613.
    On the OpenMQ end, I receive the request to connect by the client and I start a connection:
    INFO: Create JMS connection for user admin with client id ID:csa-nexus-57767-1281630228652-1:0
    Aug 12, 2010 8:23:48 AM
    INFO: Started JMS connection 8950669406784000768[ID:csa-nexus-57767-1281630228652-1:0] for user admin
    This is where the ActiveMQ-CPP client hangs at "connection->start", or if this is removed, "connection->createSession".
    Any help would be appreciated. Thanks!

    I need to use ActiveMQ-CPP because I need a C++ messaging client which supports failover, which OpenMQ's C client does not. I thought it was unlikely that it wouldn't be able to connect as well. I can't find a good way to debug the ActiveMQ-CPP client enough to know whether the problem is on the ActiveMQ-CPP client's end or the OpenMQ broker's end.
    Here is the source code for installing ActiveMQ-CPP, that is how you install it: http://activemq.apache.org/cms/activemq-cpp-322-release.html.
    The example comes bundled with ActiveMQ-CPP installation, but I'll show you parts of the main.cpp file that does all of the work:
    class HelloWorldConsumer : public ExceptionListener,
    public MessageListener,
    public Runnable {
    private:
    this->brokerURI = brokerURI;
    virtual ~HelloWorldConsumer(){
    cleanup();
    void close() {
    this->cleanup();
    void waitUntilReady() {
    latch.await();
    virtual void run() {
    try {
    auto_ptr<ConnectionFactory> connectionFactory( ConnectionFactory::createCMSConnectionFactory( brokerURI ) );
    // Create a Connection
    connection = connectionFactory->createConnection("admin", "admin");
    connection->start();
    connection->setExceptionListener(this);
    // Create a Session
    if( this->sessionTransacted == true ) {
    session = connection->createSession( Session::SESSION_TRANSACTED );
    } else {
    session = connection->createSession( Session::AUTO_ACKNOWLEDGE );
    // Create the destination (Topic or Queue)
    if( useTopic ) {
    destination = session->createTopic( "TEST.FOO" );
    } else {
    destination = session->createQueue( "TEST.FOO" );
    // Create a MessageConsumer from the Session to the Topic or Queue
    consumer = session->createConsumer( destination );
    consumer->setMessageListener( this );
    std::cout.flush();
    std::cerr.flush();
    // Indicate we are ready for messages.
    latch.countDown();
    // Wait while asynchronous messages come in.
    doneLatch.await( waitMillis );
    } catch( CMSException& e ) {
    // Indicate we are ready for messages.
    latch.countDown();
    e.printStackTrace();
    // Called from the consumer since this class is a registered MessageListener.
    virtual void onMessage( const Message* message ){
    static int count = 0;
    try
    count++;
    const TextMessage* textMessage =
    dynamic_cast< const TextMessage* >( message );
    string text = "";
    if( textMessage != NULL ) {
    text = textMessage->getText();
    } else {
    text = "NOT A TEXTMESSAGE!";
    printf( "Message #%d Received: %s\n", count, text.c_str() );
    } catch (CMSException& e) {
    e.printStackTrace();
    // Commit all messages.
    if( this->sessionTransacted ) {
    session->commit();
    // No matter what, tag the count down latch until done.
    doneLatch.countDown();
    // If something bad happens you see it here as this class is also been
    // registered as an ExceptionListener with the connection.
    virtual void onException( const CMSException& ex AMQCPP_UNUSED) {
    printf("CMS Exception occurred. Shutting down client.\n");
    ex.printStackTrace();
    exit(1);
    int main(int argc AMQCPP_UNUSED, char* argv[] AMQCPP_UNUSED) {
    activemq::library::ActiveMQCPP::initializeLibrary();
    std::cout << "=====================================================\n";
    std::cout << "Starting the example:" << std::endl;
    std::cout << "-----------------------------------------------------\n";
    std::string brokerURI =
    "tcp://localhost:61613"
    "?wireFormat=stomp"
    // "&soConnectTimeout=5"
    // "&connection.sendTimeout=5"
    // "&connection.useAsyncSend=true"
    // "&transport.useInactivityMonitor=false"
    // "&connection.alwaysSyncSend=true"
    // "&connection.useAsyncSend=true"
    // "&transport.commandTracingEnabled=true"
    // "&transport.tcpTracingEnabled=true"
    // "&wireFormat.tightEncodingEnabled=true"
    //============================================================
    // set to true to use topics instead of queues
    // Note in the code above that this causes createTopic or
    // createQueue to be used in both consumer an producer.
    //============================================================
    bool useTopics = true;
    bool sessionTransacted = false;
    int numMessages = 2000;
    long long startTime = System::currentTimeMillis();
    HelloWorldProducer producer( brokerURI, numMessages, useTopics );
    HelloWorldConsumer consumer( brokerURI, numMessages, useTopics, sessionTransacted );
    // Start the consumer thread.
    Thread consumerThread( &consumer );
    consumerThread.start();
    // Wait for the consumer to indicate that its ready to go.
    consumer.waitUntilReady();
    // Start the producer thread.
    Thread producerThread( &producer );
    producerThread.start();
    // Wait for the threads to complete.
    producerThread.join();
    consumerThread.join();
    long long endTime = System::currentTimeMillis();
    double totalTime = (double)(endTime - startTime) / 1000.0;
    consumer.close();
    producer.close();
    std::cout << "Time to completion = " << totalTime << " seconds." << std::endl;
    std::cout << "-----------------------------------------------------\n";
    std::cout << "Finished with the example." << std::endl;
    std::cout << "=====================================================\n";
    activemq::library::ActiveMQCPP::shutdownLibrary();
    // END SNIPPET: demo The places where the code will hang upon connection are "connection->start() and connection->createSession()". Again, this happens with any ActiveMQ client, no matter the language, and via Stomp, both should be supported. But using an OpenMQ client with ActiveMQ broker works perfectly. And using this code with its own ActiveMQ broker still via Stomp works perfectly as well.
    Thanks!

  • Really strange hang

    Hi,
    this is the 3rd time i get this strange hang (with about 2-3 months between). It happens without any change in hardware and looks like this.
    I can work with my computer for about 20 minutes. Then the monitor turns black and the whole thing hanges (the LEDs on the motherboard are all green)
    Neither the power off button (soft-off) nor the reset button work anymore, the vent turns, the hd spins, the cddrives don't open anymore. Power is still there. After pulling the power-plug and restart the whole thing works between 1/2min and 20 min and then the same. I've removed all PCI cards, checked the RAM and so on. But that doesn't help. 2 two times before i got it running by turning off/on, shutting down via software (in windows) and lots of other combinations, but that all combinations i tried so far didn't help.
    Some times (after the first few hangs) just the HD LED turns on (on the front of my box) but the Mainboard LED stays black, and the whole computer don't boot (not even the BIOS (All LEDs on the MSI board are black then).
    I've updated my GFX card from GF2MX to GF4TI but those crashes also happened before that (the 2 times  before) so i doesn't have to do anything with that.
    Hardware:
    MSI-6330 (K7T-ProA2)
    Athlon 1GHZ
    384MB Ram
    Any ideas? I am pretty lost now, since it the problem is reproduceable but not solveable (and the timesteps of the hangs are variing ...)
    Thanks alot.
    -Stephan

    right, this whole does it support 333Mhz FSB is really pi**ing me off now. I got a MSI KT3 Ultra ARU and I wanta get the athlon 2700+. The manual and whitepaper does say that its not supported but... http://www.via.com.tw/en/apollo/KT333.jsp... the chipset apparently does so why does the mobo manufacturer decide to engineer the mobo to hold back the chipset! Either way, after i've posted this i'm gunna check the northbridge to see what seral i got and i'm probablly going to buy the 2700+ anyway. I don't like spending money like this but i want the 333 FSB! If it don't work i'll get a mobo that does support it. Why have a piece of hardware that doesn't do what it should do eh?
    The 333MHz DDR perfomance increase is a waste of money if you can't utilize it with a 333MHz CPU.

  • IPhone 4 won't connect when trying to dial out, just hangs and hangs at "connecting"

    iPhone 4 running 4.3.3 on AT&T network.
    For some reason, I can only make one outgoing call at a time on my phone without having to power it off and reboot it.  When I go to make a call, it will just hang at "connecting" -- I don't even get a "Call failed" or "can't connect".  If I power off and reboot, and I can make a call, but just ONE.  The next one I try is the same thing.  Really annoying! 
    Has anyone had this problem?  Is it a software or carrier issue?  I've resent the network settings and that didn't help.
    Thanks!

    Does the iOS device connect to other networks? If yes that tends to indicate a problem with your network.
    What happens when it fail to connect?
    -----  Does the iOS device see the network?
    ----- Any error messages?
    Do other devices now connect?
    Did the iOS device connect before?
    Try the following to rule out a software problem:                
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Power off and then back on your router
    .- Reset network settings: Settings>General>Reset>Reset Network Settings
    - iOS: Troubleshooting Wi-Fi networks and connections
    - Wi-Fi: Unable to connect to an 802.11n Wi-Fi network      
    - iOS: Recommended settings for Wi-Fi routers and access points
    - Restore from backup. See:
    iOS: How to back up
    - Restore to factory settings/new iOS device.
    If still problem and it does not connect to any networks make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar

  • Konica Minolta Bizhub 350 - OS/X 10.6 - Printing "hangs" after connecting

    I've installed the latest drivers (dated 4/2010) from the Konica site. I'm using 10.6.4.
    Whenever I try to print to our Bizhub 350, the job seems to hang with "Connected to printer..." in the printer status window.
    I'm pretty sure my Mac and the printer are actually talking. For instance, I get status messages occasionally (such as "Tray 1 is empty") and I can check supply levels.
    Is anyone printing to a Bizhub 350? If so can you give some advice on how to get it working?
    Thanks.

    Hi there. I don't have a Bizhub 350 but would suggest that your issue could related to the protocol or the driver being used.
    With regards to the driver, the latest driver you downloaded may be a Postscript driver. If the printer does not support Postscript then this would stop the job from printing. You should be able to print a configuration page from the 350 or connect to its internal web page by typing the IP address of the printer into a web browser. Either method should show what printer languages you have installed in the device.
    If the latest driver you are using is supported by the printer then the protocol you have selected when making the printer queue could be the issue. For IP printer queues, the default IPP protocol is not always supported by or enabled in the printer. Therefore it is often easier to create a queue using HP Jetdirect-Socket, as this is what Windows computers will use (called Standard TCP/IP Printing on Windows). LPD is the other IP protocol you can use but it often requires a specific queue name and for some devices can also be case-specific.

  • Leopard: Air Disk hanging at "Connecting..."

    I can see my AEBS under shared in the Finder window, but it hangs on "Connecting..." and "Connect As" does nothing. Through Airport Utility, I have tried a number of times to set up different ways for it to connect. Nothing. Always the same result.
    FWIW, all worked great under Tiger.
    It's an Iomega Minimax 750 (and alternately an Iomega 1TB UltraMax), AEBS 1Gbit, and a Mac Book Pro connected via ethernet (WiFi turned off on AEBS).

    Hi Chris,
    patience is a nice thing. But the situation of many users here is a little complicated.
    Many of us have
    - bought a large external HD with USB to hook to the AEBS.
    - than bought leopard.
    Here it is not just about a feature which does not work. For example: If "spaces" would be the problem, nobody would care about that. You don't need to buy extra hardware for that purpose.
    Many of us are in a household with some Apple notebooks. We for example have one iBook and two MacBooks. No extra server, no always on separate desktop system which we could use to hook up the HD. I'm just lucky that "drobo" is not available in Germany, so I didn't spent 1000 Euros but only 145 Euros for the external HD.
    Second point: The AEBS is always dropping the connection the the HD. And after that I'm not able to reconnect again. I found in another thread that with a downgrade to a prior firmware for the AEBS this problem would be fixed. That must be a joke, or not?
    I'm using apple HW and SW because I don't have an IT department here.
    Apple: If someone is hearing me: Help!!! I didn't found a possibility to post bugs to apple on this particular problem.
    Best
    Fernando
    Message was edited by: Fernando Schlottmann

  • Configurator 1.4 hangs at Connect Devices in Prepare screen

    The devices show up in the "Supervise screen" as connected. And they show up in Itunes. But when I go to the "Prepare screen" and hit the prepare button they just hang at "Connect Devices".  Have tried through the cart (Bretford) and plugging in individually.
    I have wiped all of them and started again.  Same results.
    Running 11.1 Itunes. 10.8.5 OSX. Configurator 1.4

    I had a reply to my topic from NYLink with the advice to check the Supervise pane and unsupervise the devices so that you can prepare them again.
    What happened in my case was half of my iPads needed a full restore to get iOS7.02 installed - Configurator still had them listed as being supervised, but would not apply any apps to them, and they would not show up in the Prepare pane. So they needed to be unsupervised first before anything else could be done to them.
    What I did: I plugged in a single iPad at a time, so that there was no confusion as to which device was which in Configurator - for me, Configurator had decided that all my devices were iPad02. Once the iPad was connected, I was able to go to the Devices menu at the top, and select Unsupervise from the bottom of the menu. After going through one by one, all my devices are now visible from the Prepare pane again, and once prepare was completed they were visible in the Supervise pane again.
    Good luck!

  • 31.3.0 hangs when connecting to my IMAPS server (problem with intermediate certificates or SSL in general?).

    After update to 31.3.0 Thunderbird hangs when connecting to IMAPS server aie.de (intermediate certificates in chain). No error message is given, Thunderbird just hangs with out updating the subject lines of the inbox.

    It is a configuration problem of the courier imap ssl daemon, resolution is shown [http://xf.wiki.mithi.com/index.php/Error_observed_in_/var/log/messages_log,_imapd:_couriertls:_accept:_error:1408F10B:SSL_routines:SSL3_GET_RECORD:wrong_version_number#Resolution here]

  • Hanging on "Connecting" in Mail

    Earlier today, while on EDGE, my phone was hanging on checking email, and tapping the reload icon wasn't helping. It just kept hanging on "Connecting".
    But it wasn't my mail server, because I was able to connect to it from the other iPhone in the household. And I was able to get to web pages in the browser.
    The only solution was to reset the iPhone and everything went back to normal.
    But I don't want to have to reset the whole phone all the time. Is it possible only to reset the EDGE connection? Or alternately, to "force quit" Mail?

    Looks like the answer is to force quit by holding down the home button for about 5 seconds, but this has the unfortunate side effect of sending any mail that's currently waiting to be sent into the void.

  • ITunes 11.1 hangs when connecting to iCloud. How can I download 11.0.5?

    Arrrrgh! iTunes 11.1 hangs on my system Windows 7 x64 when trying to connect to iCloud. It runs fine if I start it in safe mode (I have no third party plug-ins installed).
    How do I download iTunes 11.0.5???? I've been searching on the Internt for the last 1/2 hour and it looks like Apple prevents users from downloading 11.0 once 11.1 (piece of crap) is out. WHY?????????

    Hi,
    I've been able to resolve the problem of iTunes crashing by emptying the SycServices folder - by following the steps described at the foot of this comment. I've also been able to sync my iPhone contacts with my Address Book ...but I cannot sync my Address Book with Outlook 2011 ...  and thus my iPhone linking to Outlook 2011.
    I'm aware that 'Sync Services' were depreciated in 10.8 and was hoping that this would be restored in full in v: 10.9.3. I understand that MicroSoft needs Sync Services to be reintroduced into the OS to enable the sync to work again for linking up with Outlook 2011 - which appear to be blank in my Sync Services preferences window as follows ....
    I would be mighty grateful for any ideas/solutions on how to resolve this problem. Synching Outlook 2011 with my iPhone was so easy in the past!
    Simon
    Back up all data.
    Triple-click anywhere in the line below on this page to select it:
    ~/Library/Application Support/SyncServices
    Right-click or control-click the highlighted line and select
    Services ▹ Reveal in Finder (or just Reveal)
    from the contextual menu.* A folder should open with an item selected. Move the selected item to the Trash. Log out or restart the computer and empty the Trash. Test.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination  command-C. In the Finder, select
    Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.
    Re: iTunes ver 11.2.1 hangs when connecting to iPhone 

  • Update to Firefox 3.6.17 hangs after Checking Compatibility of Java Console - I have sceenshot

    Update to Firefox 3.6.17 hangs after Checking Compatibility of Java Console - I have a sceenshot

    I promised a screenshot, but you did not provide a way to submit it with the original post!

  • Console cannot connect to Admin Server in a local network

    Hi,
    This issue may has been asked before, but I didn't find corresponding answer. So I ask again:
    The Directory server 5.2 P4 is running on Windows XP and a console running on the same server (192.168.1.80) works fine. However second console which is running on 192.168.1.50 can not connect to admin server. Error message is:
    Cannot connect to the Admin Server "http://homeserver.keiban.com:5201/" The URL is not correct or the server is not running.
    I noticed that if I use http://192.168.1.80:5201 to connect admin server instead of http://homeserver.keiban.com, it took 10 seconds to show Initialization Failure:
    Connect connect to the Directory Server "ldap://homeserver.keiban.com:5200" LDAP error: failed to connect to server ldap://homeserver.keiban.com;5200 Would you like to attemt to restart the Directory Server?
    In Control Panel -> Windwos Firewall -> Exceptions, I have added port number 5201 for Sun ONe Admin Server 5.2 on TCP.
    In etc/host file, an entry is already added:
    192.168.1.80 homeserver.keiban.com homeserver
    Both computers are in a local network and via cable DSL to connect to Internet. Is there some thing I am missing?
    Your help will be appreciated,

    1. Make sure your FQDN is set up correct on both
    client and Server.Victor, you are right! I setup FQDN on server properly, but forgot to have FQDN setup to map FQDN to IP address on client. So the Console goes to Internet to find the directory server in which it causes failure.
    Thanks your hint,
    a. ping xxx.xxx.xxx.xxx from client to Server
    Check the Admin Server for Client Access Control
    configuration.
    Victor

  • Not able to connect to admin server through WLST

    Hi,
    I am not able to connect admin server of machine1 though WLST from machine2. This is how i am trying to connect.
    wls:/offline> connect('weblogic','weterner1','t3://machine1:7111')
    Connecting to t3://machine1:7111 with userid weblogic ...
    Traceback (innermost last):
    File "<console>", line 1, in ?
    File "<iostream>", line 22, in connect
    File "<iostream>", line 646, in raiseWLSTException
    WLSTException: Error occured while performing connect : null
    Use dumpStack() to view the full stacktrace
    Could anyone please help... FYI... This is in windows environment._
    Thanks,
    Venkat

    I am able to connect to admin console of Machine1 with this URL http://vakumarn12:7111/console.
    My machine name is M1 and listener address is vakumarn12.
    I have installed WL in machine2 and trying to connect admin server of machine1.
    I have used connect() but still the same.
    One more thing I am(Machine1) in VPN network and the system from which i am trying accessing admin server is in client location(Machine2).
    In machine1 i have two network connections one is Ethernet adapter and other is PPP adapter - (Is this creating a problem)
    dumpStack() is as below:
    wls:/offline> dumpStack()
    This Exception occurred at Tue Jan 08 07:56:30 EST 2013.
    javax.naming.ServiceUnavailableException [Root exception is java.net.UnknownHost
    Exception: vakumarn12]
    at weblogic.jndi.internal.ExceptionTranslator.toNamingException(Exceptio
    nTranslator.java:34)
    at weblogic.jndi.WLInitialContextFactoryDelegate.toNamingException(WLIni
    tialContextFactoryDelegate.java:788)
    at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLIni
    tialContextFactoryDelegate.java:366)
    at weblogic.jndi.Environment.getContext(Environment.java:315)
    at weblogic.jndi.Environment.getContext(Environment.java:285)
    at weblogic.jndi.WLInitialContextFactory.getInitialContext(WLInitialCont
    extFactory.java:117)
    at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:6
    67)
    at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:288
    at javax.naming.InitialContext.init(InitialContext.java:223)
    at javax.naming.InitialContext.<init>(InitialContext.java:197)
    at weblogic.management.scripting.WLSTHelper.populateInitialContext(WLSTH
    elper.java:520)
    at weblogic.management.scripting.WLSTHelper.initDeprecatedConnection(WLS
    THelper.java:573)
    at weblogic.management.scripting.WLSTHelper.initConnections(WLSTHelper.j
    ava:313)
    at weblogic.management.scripting.WLSTHelper.connect(WLSTHelper.java:203)
    at weblogic.management.scripting.WLScriptContext.connect(WLScriptContext
    .java:61)
    at weblogic.management.scripting.utils.WLSTUtil.initializeOnlineWLST(WLS
    TUtil.java:147)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.python.core.PyReflectedFunction.__call__(Unknown Source)
    at org.python.core.PyMethod.__call__(Unknown Source)
    at org.python.core.PyObject.__call__(Unknown Source)
    at org.python.core.PyObject.invoke(Unknown Source)
    at org.python.pycode._pyx45.connect$1(<iostream>:16)
    at org.python.pycode._pyx45.call_function(<iostream>)
    at org.python.core.PyTableCode.call(Unknown Source)
    at org.python.core.PyTableCode.call(Unknown Source)
    at org.python.core.PyTableCode.call(Unknown Source)
    at org.python.core.PyFunction.__call__(Unknown Source)
    at org.python.pycode._pyx50.f$0(<console>:1)
    at org.python.pycode._pyx50.call_function(<console>)
    at org.python.core.PyTableCode.call(Unknown Source)
    at org.python.core.PyCode.call(Unknown Source)
    at org.python.core.Py.runCode(Unknown Source)
    at org.python.core.Py.exec(Unknown Source)
    at org.python.util.PythonInterpreter.exec(Unknown Source)
    at org.python.util.InteractiveInterpreter.runcode(Unknown Source)
    at org.python.util.InteractiveInterpreter.runsource(Unknown Source)
    at org.python.util.InteractiveInterpreter.runsource(Unknown Source)
    at weblogic.management.scripting.WLST.main(WLST.java:173)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at weblogic.WLST.main(WLST.java:29)
    Caused by: java.net.UnknownHostException: vakumarn12
    at java.net.Inet4AddressImpl.lookupAllHostAddr(Native Method)
    at java.net.InetAddress$1.lookupAllHostAddr(InetAddress.java:850)
    at java.net.InetAddress.getAddressFromNameService(InetAddress.java:1201)
    at java.net.InetAddress.getAllByName0(InetAddress.java:1154)
    at java.net.InetAddress.getAllByName(InetAddress.java:1084)
    at java.net.InetAddress.getAllByName(InetAddress.java:1020)
    at weblogic.rjvm.RJVMFinder.getDnsEntries(RJVMFinder.java:422)
    at weblogic.rjvm.RJVMFinder.findOrCreateInternal(RJVMFinder.java:192)
    at weblogic.rjvm.RJVMFinder.findOrCreate(RJVMFinder.java:170)
    at weblogic.rjvm.ServerURL.findOrCreateRJVM(ServerURL.java:153)
    at weblogic.jndi.WLInitialContextFactoryDelegate$1.run(WLInitialContextF
    actoryDelegate.java:345)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(Authenticate
    dSubject.java:363)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:
    146)
    at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLIni
    tialContextFactoryDelegate.java:340)
    ... 43 more
    javax.naming.ServiceUnavailableException [Root exception is java.net.UnknownHost
    Exception: vakumarn12]
    Edited by: KumarOra on Jan 8, 2013 5:18 AM

  • Problem Load Balancing connections for Grid Control Console on port 80!

    I have two OMS and I'm balancing connections for Grid Control Console using a Software Load Balancer according with "Oracle Enterprise Manager Advanced Configuration". I have success where the load balancer is listening on port different to 80. When I configure Load Balancer to listen on port 80(architecture requirement) and distribute load between the two OMS(Port 7779), when login to Enterprise Manager Console the URL on the web browser changes to the port configured for HTTP server (port 7780) wich produces an "unable to connect" error message; and this behaviour also happends in some of the internal links of Grid Control Console too. Any ideas?
    Thanks in advance!
    Message was edited by:
    user463224

    I got it working, changing the "Port" directive to 80 on httpd.conf on HTTP Server

Maybe you are looking for

  • Sub total in a report

    hi guyz, may i know how to get a subtotal n grand total in a report , how can i get data right below the field names, whats the command to get vertical line. plz advise thanks a lot sudheer Message was edited by:         sudheer sun

  • Multiple Artboards CS4 versus Crop Area CS3

    If i'm getting this right, 1. CS 4 doesn't haven the Crop Area tool anymore. 2. Artboards are limited to 100 artboards per document depent there size. Question; Is it possibel to create an artboard from an element/object as you could with Crop Area?

  • PCD path from from portal 7.0 to 7.4

    HI, I need to migrate pcd content(pages/iviews etc) from sap portal 7.0 to sap portal 7.4 Pls suggest the way to be taken forward Thanks Mano

  • Pages with many text hyperlinks are very slow

    When making a text list, where a lot of the words are hperlinks, the resulting age is very slow with loading. Also, especially when not using Safari, the screen is garbled with text until the complete page is loaded. It looks like all those simple te

  • Level of granularity

    Hi Gurus, How do we determine the level of granularity of three different ODS?