Error on start node

When I start my nodes I have this error:
<Nov 15, 2011 11:21:17 AM BRST> <Error> <Cluster> <BEA-000110> <Multicast socket receive error: java.net.SocketException: Socket closed
java.net.SocketException: Socket closed
at java.net.PlainDatagramSocketImpl.receive0(Native Method)
at java.net.PlainDatagramSocketImpl.receive(PlainDatagramSocketImpl.java:145)
at java.net.DatagramSocket.receive(DatagramSocket.java:725)
at weblogic.cluster.MulticastFragmentSocket.receive(MulticastFragmentSocket.java:239)
at weblogic.cluster.FragmentSocketWrapper.receive(FragmentSocketWrapper.java:98)
Truncated. see log file for complete stacktrace
>
<Nov 15, 2011 11:21:17 AM BRST> <Error> <Cluster> <BEA-000109> <An error occurred while sending multicast message: java.net.SocketException: sendto failed: Invalid argument
java.net.SocketException: sendto failed: Invalid argument
at java.net.PlainDatagramSocketImpl.send(Native Method)
at java.net.DatagramSocket.send(DatagramSocket.java:625)
at weblogic.cluster.MulticastFragmentSocket.sendThrottled(MulticastFragmentSocket.java:206)
at weblogic.cluster.MulticastFragmentSocket.send(MulticastFragmentSocket.java:158)
at weblogic.cluster.FragmentSocketWrapper.send(FragmentSocketWrapper.java:91)
Truncated. see log file for complete stacktrace
>
What I should do to solve this issue?

Hi Alex,
I would suggest you to check with your network team because BEA-000109 error which points to the NIC card and the network issues.
Ensure that no physical problems exist in your network:
- Verify the network connection for each machine that hosts servers within the cluster.
- Verify that all components of the network, including routers and DNS servers, are connected and functioning correctly.
- Address conflicts within a network can disrupt multicast communications.
- Use the netstat utility to verify that no other network resources are using the cluster multicast address.
- Verify that each machine has a unique IP address.
Workaround: Try using a different multicast address.
Detail Information about the Error Code BEA-000109
Error: An error occurred while sending multicast message:
Description: An IO error occurred while trying to send a message over multicast.
Cause: An error occurred while trying to send a message over multicast.
Action :WebLogic Server will try to recover from this error. If the problem continues to persist, make sure that the network infrastructure and NIC are functioning properly.
a) Suggest you to change the address and port to be certainly unique to have another try.
Is your machine multihomed for managed server?
b) If it is, try specifying Interface Address for each server.
From admin console, you can go to the managed server -> Configuration -> Cluster ->
Interface Address.
Hope this helps.
Thanks,
Cris

Similar Messages

  • Need help: error when starting node manager

    When attempting to start node manager i recieve the following error:
    <Sep 30, 2004 1:30:47 PM EDT> <Error> <NodeManager> <Node manager could not find the required library, libNodeManager.so, in path - /usr/j2se/jre/lib/i386/client:/usr/j2se/jre/lib/i386:/usr/j2se/jre/../lib/i386:/export/home/bea/weblogic81/server/lib/solaris:/export/home/bea/weblogic81/server/lib/solaris/oci920_8:/usr/lib>
    i have copied the file, libnodemanager.so to every directory in the path above, spelling and case are correct, permissions set to rwxrwxrwx but still get error.
    wl 8.1 sp2 solaris 9.1.
    please help if you can.
    thanks.
    vb

    Hi Chaitanya,
    Does the nodemanager.domains file exists in
    /home/xyz/Oracle/Middleware/Oracle_Home/oracle_common/common/nodemanager?
    Does it contain a reference to your domain?
    For example:
    tetra=/u01/app/oracle/domains/tetra
    Regards Peter
    http://theheat.dk

  • Error in Starting soa Managed server on WEBLOGIC 11g..Windows 7

    Hi All,
    I have an exception coming up while starting the soa_server1 managed soa server in Weblogic Domain.
    I have started the Admin server but while starting the soa managed server we are getting the following error :
    <Jul 26, 2010 9:29:04 PM PDT> <Critical> <EmbeddedLDAP> <BEA-000000> <java.io.Fi
    leNotFoundException: D:\Oracle\Middleware\user_projects\domains\SOA_Domain\serve
    rs\AdminServer\data\ldap\replicadata\soa_server1.status (The process cannot acce
    ss the file because it is being used by another process)
    at java.io.FileOutputStream.open(Native Method)
    at java.io.FileOutputStream.<init>(FileOutputStream.java:179)
    at java.io.FileOutputStream.<init>(FileOutputStream.java:70)
    at com.octetstring.vde.replication.Replicator.increment(Replicator.java:
    88)
    at com.octetstring.vde.replication.Replicator.run(Replicator.java:301)
    at com.octetstring.vde.replication.Replication.run(Replication.java:339)
    >
    Pointers on this error would help us.
    Regards,
    Ramnath

    Lets us try to start your environment by using a WLST script.
    Before you try starting the servers by using the script, could you first check your weblogic console,
    to see if the server soa_server1 is running or not (click on environment, servers) maybe the enterprise manager is out of sync.
    The following steps are necessary the run the script:
    First edit the nodemanager.properties (which is located in the directory <middleware-home>/wlserver_10.3/common/nodemanager).
    Find the entry StartScriptEnabled and set this property to true.
    Open a command shell and navigate to the directory <middleware-home>/wlserver_10.3/server/bin and run the file setWLSEnv.cmd
    (this sets your environment variables, so that we can run a WLST script).
    Copy the following script into a file named for example StartScript.py and adjust variables as needed
    beahome = '<middleware-home>';
    linux = false;
    adminusername = 'weblogic';
    adminpassword = 'transfer-solutions';
    domainname = 'base_domain';
    pathseparator = '/';
    if not linux:
         print 'SETTING WINDOWS PATH SEPARATOR';
         pathseparator = '\\';
    domainlocation = beahome + pathseparator + 'user_projects' + pathseparator + 'domains' + pathseparator + domainname;
    nodemanagerhomelocation = beahome + pathseparator + 'wlserver_10.3' + pathseparator + 'common' + pathseparator + 'nodemanager';
    print 'START NODE MANAGER';
    startNodeManager(verbose='true', NodeManagerHome=nodemanagerhomelocation, ListenPort='5556', ListenAddress='localhost');
    print 'CONNECT TO NODE MANAGER';
    nmConnect(adminusername, adminpassword, 'localhost', '5556', domainname, domainlocation, 'ssl');
    print 'START ADMIN SERVER';
    nmStart('AdminServer');
    nmServerStatus('AdminServer');
    print 'CONNECT TO ADMIN SERVER';
    connect(adminusername, adminpassword);
    print 'START SOA SERVER';
    start('soa_server1','Server');
    nmServerStatus('soa_server1');Run this script as follows, but first stop the servers already running
    java weblogic.WLST <directory>/StartScript.py

  • Error in starting DB2 UDB (AIX with ECC 6.0)

    Hello All,
    I am facing error in starting the database as below :
    <b>exec(): 0509-036 Cannot load program db2start because of the following errors:
            0509-130 Symbol resolution failed for /usr/lib/threads/libc.a[aio_64.o] because:
            0509-136   Symbol kaio_rdwr64 (number 0) is not exported from
                       dependent module /unix.
            0509-136   Symbol listio64 (number 1) is not exported from
                       dependent module /unix.
            0509-136   Symbol acancel64 (number 2) is not exported from
                       dependent module /unix.
            0509-136   Symbol iosuspend64 (number 3) is not exported from
                       dependent module /unix.
            0509-136   Symbol aio_nwait (number 4) is not exported from
                       dependent module /unix.
            0509-136   Symbol aio_nwait64 (number 5) is not exported from
                       dependent module /unix.
            0509-136   Symbol aio_nwait_timeout (number 6) is not exported from
                       dependent module /unix.
            0509-136   Symbol aio_nwait_timeout64 (number 7) is not exported from
                       dependent module /unix.
            0509-026 System error: Error 0
            0509-192 Examine .loader section symbols with the
                     'dump -Tv' command.
    SQL1652N  File I/O error occurred.</b>
    I have even changed the Acc. I/O setting also as per the note :683396 .
    But the error still exists.Please help me out in this ssue.
    Regards,
    Chandra.

    Hi Chandra,
    this error may occure when you do not install DB2 on the node via db2setup on AIX. I assume you moved DB2 via ACC to this box. DB2 requires AIO. In general db2setup enables it for you. You can check this by issuing the following command: 'lsdev -Cc aio'
    The correct output should be like:
    aio0 Available Asynchronous I/O (Legacy)
    The wrong one with disabled AIO:
    aio0 Defined Asynchronous I/O (Legacy)
    Use 'smitty aio' to configute AIO for your machine.
    Regards,
    Steffen

  • Error in starting dbconsole

    Hi,
    Actually I have gone through many posts based on this thread. but no one really have a proper solution for it ...I have a situation like this,
    I have a 2 node cluster on 10RAC. I was able to access respective oem url's from both the nodes before. But now somehow I am not able to access the OEM url from the first node. I can still access the OEM url from other node. When I tried to troubleshoot, I noticed that it is dbconsole problem. I am getting error while starting the dbconsole as follows,
    oracle10g>emctl start dbconsole
    Oracle Enterprise Manager 10g Database Control Release 10.1.0.4
    Copyright (c) 1996, 2004 Oracle Corporation. All rights reserved.
    http://rac01:5500/em/console/aboutApplication
    Starting Oracle Enterprise Manager 10g Database Control ............................................................................................. failed.
    Logs are generated in directory oracle/app/product/10.1.0/rac01_abc1/sysman/log
    you have mail in /var/mail//oracle
    When I looked into emdctl.trc, i can see following error message is repeating.
    2006-09-06 16:43:05 Thread-1 WARN http: snmehl_connect: connect failed to (racnyc01:5500): Connection refused (error = 146)
    2006-09-06 16:45:36 Thread-1 WARN http: snmehl_connect: connect failed to (racnyc01:5500): Connection refused (error = 146)
    2006-09-06 16:48:08 Thread-1 WARN http: snmehl_connect: connect failed to (racnyc01:5500): Connection refused (error = 146)
    in emagent.trc i am getting following errors.
    2006-09-06 16:50:34 Thread-192 WARN http: snmehl_connect: connect failed to (racnyc01:5500): Connection refused (erro
    r = 146)
    2006-09-06 16:50:34 Thread-192 ERROR pingManager: nmepm_pingReposURL: Cannot connect to http://racnyc01:5500/em/upload
    /: retStatus=-32
    2006-09-06 16:50:34 Thread-192 WARN http: snmehl_connect: connect failed to (racnyc01:5500): Connection refused (erro
    r = 146)
    2006-09-06 16:50:34 Thread-192 ERROR pingManager: nmepm_pingReposURL: Cannot connect to http://racnyc01:5500/em/upload
    /: retStatus=-32
    2006-09-06 16:50:37 Thread-194 ERROR upload: Error in uploadXMLFiles. Trying again in 300.00 seconds.
    2006-09-06 16:50:50 Thread-196 ERROR upload: Error in uploadXMLFiles. Trying again in 300.00 seconds.
    2006-09-06 16:51:04 Thread-197 WARN http: snmehl_connect: connect failed to (racnyc01:5500): Connection refused (erro
    r = 146)
    2006-09-06 16:51:04 Thread-197 ERROR pingManager: nmepm_pingReposURL: Cannot connect to http://racnyc01:5500/em/upload
    /: retStatus=-32
    2006-09-06 16:51:04 Thread-197 WARN http: snmehl_connect: connect failed to (racnyc01:5500): Connection refused (erro
    r = 146)
    2006-09-06 16:51:04 Thread-197 ERROR pingManager: nmepm_pingReposURL: Cannot connect to http://racnyc01:5500/em/upload
    /: retStatus=-32
    emagent.log says
    2006-09-06 16:22:27 Thread-1 Starting Agent 10.1.0.4.0 from /orasw/app/oracle/product/10.1.0 (00701)
    2006-09-06 16:22:32 Thread-1 EMAgent started successfully (00702)
    emdb.nohup shows following error message
    ----- Wed Sep 6 16:53:10 2006::DBConsole exited at Wed Sep 6 16:53:10 2006 with return value 7. -----
    ----- Wed Sep 6 16:53:10 2006::Restarting DBConsole. -----
    ----- Wed Sep 6 16:53:10 2006::Console Launched with PID 18803 at time Wed Sep 6 16:53:10 2006 -----
    06/09/06 16:53:24 Error starting ORMI-Server. Unable to bind socket: Address already in use
    ~
    If anyone has solved this type of problem, then please guide me in this.
    Thanks in advance !!!

    Replies Here:
    Re: Error in starting dbconsole

  • Error while starting the Informatica services

    Hi All,
    I have installed Informatica on my local machine. All of sudden my Informatica services in services.msc went down. If I start the Informatica service means, it is starting in services.msc. But after few seconds it is again going down in services.msc. Again if I start the service then it is starting and after 15 seconds it is going down again and again. I am not sure with the issue.
    Due to that Informatica administrator page is not logging in and also I couldn’t connect to any of the Informatica clients.
    I checked the catalina.out file and find the below error message:
    Cannot start node due to the error: [[RSVCSHARED_00014] The Repository Capability ['Persistence'] failed to initialize due to: '[DBPERSISTER_0009] Failed to connect to database with connection string 'jdbc:informatica:oracle://localhost:1521;ServiceName=ora.idc.oracle.com;MaxPooledStatements=20;CatalogOptions=0;BatchPerformanceWorkaround=true' as user 'hdm'']
    Starting Tomcat on HTTP port 6005.
    Domain service init method is called.
    # An unexpected error has been detected by Java Runtime Environment:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x2b9cd2fe, pid=7920, tid=7980
    # Java VM: Java HotSpot(TM) Client VM (11.2-b01 mixed mode windows-x86)
    # Problematic frame:
    # C [PMUTILS.dll+0xed2fe]
    # An error report file with more information is saved as:
    # C:\Informatica\9.0.1\tomcat\bin\hs_err_pid7920.log
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    # The crash happened outside the Java Virtual Machine in native code.
    # See problematic frame for where to report the bug.
    The content of hs_err_pid7920.log is:
    # An unexpected error has been detected by Java Runtime Environment:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x2b9cd2fe, pid=7920, tid=7980
    # Java VM: Java HotSpot(TM) Client VM (11.2-b01 mixed mode windows-x86)
    # Problematic frame:
    # C [PMUTILS.dll+0xed2fe]
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    # The crash happened outside the Java Virtual Machine in native code.
    # See problematic frame for where to report the bug.
    --------------- T H R E A D ---------------
    Current thread (0x00b79c00): JavaThread "main" [_thread_in_native, id=7980, stack(0x00090000,0x00190000)]
    siginfo: ExceptionCode=0xc0000005, reading address 0x00000000
    Registers:
    EAX=0x00000000, EBX=0xffffffff, ECX=0x71d7e78e, EDX=0x00190000
    ESP=0x0018ed2c, EBP=0x00000000, ESI=0x00000000, EDI=0x00000000
    EIP=0x2b9cd2fe, EFLAGS=0x00010246
    Top of Stack: (sp=0x0018ed2c)
    0x0018ed2c: a5478bb0 00b79c00 256a9688 0018eff4
    0x0018ed3c: 256a9688 2e963ca4 2e940828 2e963d44
    0x0018ed4c: 00000000 0018efd4 00000000 00b79c00
    0x0018ed5c: 0018edec 00b79c00 00000000 00000000
    0x0018ed6c: 0000000b 0018ef08 00b79c00 00000000
    0x0018ed7c: 00000114 00000006 00000001 00001db1
    0x0018ed8c: 00000002 00650053 00760072 00630069
    0x0018ed9c: 00200065 00610050 006b0063 00310020
    Instructions: (pc=0x2b9cd2fe)
    0x2b9cd2ee: 10 33 ff ff d0 83 7c 24 54 06 72 54 8b 44 24 20
    0x2b9cd2fe: 8b 08 55 55 8d 54 24 34 52 55 68 cc 2c a1 2b 50
    Stack: [0x00090000,0x00190000], sp=0x0018ed2c, free space=1019k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C [PMUTILS.dll+0xed2fe]
    [error occurred during error reporting (printing native stack), id 0xc0000005]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j com.informatica.powercenter.sdkint.repository.ISystemUtility._getNumberOfCpuSockets()I+0
    j com.informatica.powercenter.sdkint.repository.ISystemUtility.getNumberOfCpuSockets()I+0
    j com.informatica.isp.domainservice.nodeconfiguration.NodePredefinedResourceLoader.loadPredefinedResources(Ljava/lang/String;)Ljava/util/List;+308
    j com.informatica.isp.corecommon.core.NodeResources.listPredefinedResources(Ljava/lang/String;)Ljava/util/List;+26
    j com.informatica.isp.domainservice.nodeconfiguration.NodeConfigurationImpl.init(Lcom/informatica/isp/domainrepositoryservice/DomainRepositoryService;)V+99
    j com.informatica.isp.domainservice.DomainServiceImpl.init()V+133
    j com.informatica.isp.domainservice.DomainServiceLifeCycleHandler.initService()V+26
    j com.informatica.pcsf.servicesframework.service.impl.Service.init(Lcom/informatica/pcsf/servicesframework/service/impl/PortHandler;)V+55
    j com.informatica.pcsf.servicesframework.service.impl.ServicesFrameworkImpl.startService(Lcom/informatica/pcsf/servicesframework/service/ServiceMetadata;)V+65
    j com.informatica.isp.tools.ispstarter.JSFStarter.init()V+515
    j com.informatica.isp.tools.ispwebstarter.ISPWebStarterServlet.init()V+3
    j javax.servlet.GenericServlet.init(Ljavax/servlet/ServletConfig;)V+6
    j org.apache.catalina.core.StandardWrapper.loadServlet()Ljavax/servlet/Servlet;+717
    j org.apache.catalina.core.StandardWrapper.load()V+2
    j org.apache.catalina.core.StandardContext.loadOnStartup([Lorg/apache/catalina/Container;)V+172
    j org.apache.catalina.core.StandardContext.start()V+1219
    j org.apache.catalina.core.ContainerBase.addChildInternal(Lorg/apache/catalina/Container;)V+149
    j org.apache.catalina.core.ContainerBase.addChild(Lorg/apache/catalina/Container;)V+26
    j org.apache.catalina.core.StandardHost.addChild(Lorg/apache/catalina/Container;)V+25
    j org.apache.catalina.startup.HostConfig.deployWAR(Ljava/lang/String;Ljava/io/File;Ljava/lang/String;)V+482
    j org.apache.catalina.startup.HostConfig.deployWARs(Ljava/io/File;[Ljava/lang/String;)V+223
    j org.apache.catalina.startup.HostConfig.deployApps()V+25
    j org.apache.catalina.startup.HostConfig.start()V+147
    j org.apache.catalina.startup.HostConfig.lifecycleEvent(Lorg/apache/catalina/LifecycleEvent;)V+132
    j org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(Ljava/lang/String;Ljava/lang/Object;)V+68
    j org.apache.catalina.core.ContainerBase.start()V+306
    j org.apache.catalina.core.StandardHost.start()V+303
    j org.apache.catalina.core.ContainerBase.start()V+266
    j org.apache.catalina.core.StandardEngine.start()V+221
    j org.apache.catalina.core.StandardService.start()V+132
    j org.apache.catalina.core.StandardServer.start()V+88
    j org.apache.catalina.startup.Catalina.start()V+32
    v ~StubRoutines::call_stub
    j sun.reflect.NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+0
    j sun.reflect.NativeMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+87
    j sun.reflect.DelegatingMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+6
    j java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+161
    j org.apache.catalina.startup.Bootstrap.start()V+37
    j org.apache.catalina.startup.Bootstrap.main([Ljava/lang/String;)V+158
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x28e20400 JavaThread "Timer-2" daemon [_thread_blocked, id=7472, stack(0x2b6c0000,0x2b7c0000)]
    0x28e1fc00 JavaThread "pool-1-thread-1" [_thread_in_native, id=812, stack(0x2b580000,0x2b680000)]
    0x28e1f800 JavaThread "com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2" daemon [_thread_blocked, id=4944, stack(0x2b440000,0x2b540000)]
    0x28e1f400 JavaThread "com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1" daemon [_thread_blocked, id=7584, stack(0x2b300000,0x2b400000)]
    0x28e1ec00 JavaThread "com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0" daemon [_thread_blocked, id=1492, stack(0x2b1c0000,0x2b2c0000)]
    0x28e1e800 JavaThread "Timer-1" daemon [_thread_blocked, id=7896, stack(0x2b080000,0x2b180000)]
    0x28e1e000 JavaThread "com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2" daemon [_thread_blocked, id=324, stack(0x2af40000,0x2b040000)]
    0x00b00c00 JavaThread "com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1" daemon [_thread_blocked, id=6196, stack(0x2ae00000,0x2af00000)]
    0x00b00800 JavaThread "com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0" daemon [_thread_blocked, id=6460, stack(0x2acc0000,0x2adc0000)]
    0x28b4c400 JavaThread "Timer-0" daemon [_thread_blocked, id=7064, stack(0x2ab80000,0x2ac80000)]
    0x28ce0400 JavaThread "UserManagementServiceBroadcaster" daemon [_thread_blocked, id=1644, stack(0x29a70000,0x29b70000)]
    0x28ce1400 JavaThread "DomainConfigurationServiceBroadcaster" daemon [_thread_blocked, id=7712, stack(0x29930000,0x29a30000)]
    0x28dc8400 JavaThread "Thread-1" daemon [_thread_blocked, id=7032, stack(0x297f0000,0x298f0000)]
    0x28dc8000 JavaThread "Thread 6 of 6 in DomainServiceThreadPool" daemon [_thread_blocked, id=4344, stack(0x296b0000,0x297b0000)]
    0x28c4fc00 JavaThread "Thread 5 of 6 in DomainServiceThreadPool" daemon [_thread_blocked, id=2208, stack(0x29570000,0x29670000)]
    0x28c4f400 JavaThread "Thread 4 of 6 in DomainServiceThreadPool" daemon [_thread_blocked, id=7764, stack(0x29430000,0x29530000)]
    0x28c4f000 JavaThread "Thread 3 of 6 in DomainServiceThreadPool" daemon [_thread_blocked, id=528, stack(0x29330000,0x29430000)]
    0x28ce3400 JavaThread "Thread 2 of 6 in DomainServiceThreadPool" daemon [_thread_blocked, id=7532, stack(0x29230000,0x29330000)]
    0x28c3dc00 JavaThread "Thread 1 of 6 in DomainServiceThreadPool" daemon [_thread_blocked, id=6804, stack(0x29130000,0x29230000)]
    0x00af3000 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=7476, stack(0x27af0000,0x27bf0000)]
    0x00aed000 JavaThread "CompilerThread0" daemon [_thread_blocked, id=7292, stack(0x279b0000,0x27ab0000)]
    0x00ae1c00 JavaThread "Attach Listener" daemon [_thread_blocked, id=1180, stack(0x27870000,0x27970000)]
    0x00ace800 JavaThread "Finalizer" daemon [_thread_blocked, id=7360, stack(0x27730000,0x27830000)]
    0x00aca000 JavaThread "Reference Handler" daemon [_thread_blocked, id=5392, stack(0x275f0000,0x276f0000)]
    =>0x00b79c00 JavaThread "main" [_thread_in_native, id=7980, stack(0x00090000,0x00190000)]
    Other Threads:
    0x00ac6c00 VMThread [stack: 0x274b0000,0x275b0000] [id=2060]
    0x00af3800 WatcherThread [stack: 0x27c30000,0x27d30000] [id=4612]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 18240K, used 3293K [0x03250000, 0x04610000, 0x059b0000)
    eden space 16256K, 20% used [0x03250000, 0x03587618, 0x04230000)
    from space 1984K, 0% used [0x04420000, 0x04420000, 0x04610000)
    to space 1984K, 0% used [0x04230000, 0x04230000, 0x04420000)
    tenured generation total 241984K, used 22696K [0x059b0000, 0x14600000, 0x23250000)
    the space 241984K, 9% used [0x059b0000, 0x06fda0a0, 0x06fda200, 0x14600000)
    compacting perm gen total 37376K, used 37232K [0x23250000, 0x256d0000, 0x27250000)
    the space 37376K, 99% used [0x23250000, 0x256ac290, 0x256ac400, 0x256d0000)
    No shared spaces configured.
    Dynamic libraries:
    0x00400000 - 0x00433000      C:\Informatica\9.0.1\tomcat\bin\infasvcs.exe
    0x77a80000 - 0x77c00000      C:\windows\SysWOW64\ntdll.dll
    0x77150000 - 0x77260000      C:\windows\syswow64\kernel32.dll
    0x75980000 - 0x759c7000      C:\windows\syswow64\KERNELBASE.dll
    0x758e0000 - 0x75980000      C:\windows\syswow64\ADVAPI32.dll
    0x769d0000 - 0x76a7c000      C:\windows\syswow64\msvcrt.dll
    0x77490000 - 0x774a9000      C:\windows\SysWOW64\sechost.dll
    0x76cb0000 - 0x76da0000      C:\windows\syswow64\RPCRT4.dll
    0x755e0000 - 0x75640000      C:\windows\syswow64\SspiCli.dll
    0x755d0000 - 0x755dc000      C:\windows\syswow64\CRYPTBASE.dll
    0x6d8b0000 - 0x6db06000      C:\Informatica\9.0.1\java\jre\bin\client\jvm.dll
    0x76780000 - 0x76880000      C:\windows\syswow64\USER32.dll
    0x768b0000 - 0x76940000      C:\windows\syswow64\GDI32.dll
    0x76bc0000 - 0x76bca000      C:\windows\syswow64\LPK.dll
    0x76c10000 - 0x76cad000      C:\windows\syswow64\USP10.dll
    0x73b60000 - 0x73b92000      C:\windows\system32\WINMM.dll
    0x7c340000 - 0x7c396000      C:\windows\system32\MSVCR71.dll
    0x76ef0000 - 0x76f50000      C:\windows\system32\IMM32.DLL
    0x76dc0000 - 0x76e8c000      C:\windows\syswow64\MSCTF.dll
    0x74590000 - 0x745dc000      C:\windows\system32\apphelp.dll
    0x6d340000 - 0x6d348000      C:\Informatica\9.0.1\java\jre\bin\hpi.dll
    0x77a50000 - 0x77a55000      C:\windows\syswow64\PSAPI.DLL
    0x6d860000 - 0x6d86c000      C:\Informatica\9.0.1\java\jre\bin\verify.dll
    0x6d3e0000 - 0x6d3ff000      C:\Informatica\9.0.1\java\jre\bin\java.dll
    0x6d8a0000 - 0x6d8af000      C:\Informatica\9.0.1\java\jre\bin\zip.dll
    0x75af0000 - 0x7673a000      C:\windows\syswow64\SHELL32.DLL
    0x76e90000 - 0x76ee7000      C:\windows\syswow64\SHLWAPI.dll
    0x77260000 - 0x773bc000      C:\windows\syswow64\ole32.dll
    0x6d6c0000 - 0x6d6d3000      C:\Informatica\9.0.1\java\jre\bin\net.dll
    0x76bd0000 - 0x76c05000      C:\windows\syswow64\WS2_32.dll
    0x758d0000 - 0x758d6000      C:\windows\syswow64\NSI.dll
    0x74ee0000 - 0x74f1c000      C:\windows\system32\mswsock.dll
    0x74970000 - 0x74976000      C:\windows\System32\wship6.dll
    0x74ed0000 - 0x74ed5000      C:\windows\System32\wshtcpip.dll
    0x74870000 - 0x74886000      C:\windows\system32\CRYPTSP.dll
    0x74830000 - 0x7486b000      C:\windows\system32\rsaenh.dll
    0x74ec0000 - 0x74ecb000      C:\windows\system32\profapi.dll
    0x739f0000 - 0x73a00000      C:\windows\system32\NLAapi.dll
    0x739e0000 - 0x739f0000      C:\windows\system32\napinsp.dll
    0x739c0000 - 0x739d2000      C:\windows\system32\pnrpnsp.dll
    0x739b0000 - 0x739bd000      C:\windows\system32\wshbth.dll
    0x749f0000 - 0x74a34000      C:\windows\system32\DNSAPI.dll
    0x739a0000 - 0x739a8000      C:\windows\System32\winrnr.dll
    0x749d0000 - 0x749ec000      C:\windows\system32\IPHLPAPI.DLL
    0x749c0000 - 0x749c7000      C:\windows\system32\WINNSI.DLL
    0x73b50000 - 0x73b56000      C:\windows\system32\rasadhlp.dll
    0x74930000 - 0x74968000      C:\windows\System32\fwpuclnt.dll
    0x6d610000 - 0x6d619000      C:\Informatica\9.0.1\java\jre\bin\management.dll
    0x6d6e0000 - 0x6d6e9000      C:\Informatica\9.0.1\java\jre\bin\nio.dll
    0x2b7c0000 - 0x2b810000      C:\Informatica\9.0.1\server\bin\pmjrepn.dll
    0x00870000 - 0x00890000      C:\Informatica\9.0.1\server\bin\pmsdkcmn.dll
    0x2b810000 - 0x2b88a000      C:\Informatica\9.0.1\server\bin\pmdec.dll
    0x28690000 - 0x2869c000      C:\Informatica\9.0.1\server\bin\pmassert.dll
    0x6b850000 - 0x6bbf1000      C:\windows\WinSxS\x86_microsoft.vc90.mfc_1fc8b3b9a1e18e3b_9.0.30729.1_none_dcc7eae99ad0d9cf\mfc90u.dll
    0x74770000 - 0x74813000      C:\windows\WinSxS\x86_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.4940_none_50916076bcb9a742\MSVCR90.dll
    0x745e0000 - 0x74664000      C:\windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_5.82.7601.17514_none_ec83dffa859149af\COMCTL32.dll
    0x721c0000 - 0x721c5000      C:\windows\system32\MSIMG32.dll
    0x76940000 - 0x769cf000      C:\windows\syswow64\OLEAUT32.dll
    0x286b0000 - 0x286bd000      C:\Informatica\9.0.1\server\bin\pmcutils.dll
    0x74b20000 - 0x74b71000      C:\windows\system32\WINSPOOL.DRV
    0x74280000 - 0x742bc000      C:\windows\system32\OLEACC.dll
    0x2b890000 - 0x2b8bd000      C:\Informatica\9.0.1\server\bin\pmi18n.dll
    0x4a800000 - 0x4a89c000      C:\Informatica\9.0.1\server\bin\pmicuuc32.dll
    0x4ad00000 - 0x4b81d000      C:\Informatica\9.0.1\server\bin\pmicudt32.dll
    0x4a900000 - 0x4a9b0000      C:\Informatica\9.0.1\server\bin\pmicuin32.dll
    0x2b8e0000 - 0x2bb38000      C:\Informatica\9.0.1\server\bin\PMUTILS.dll
    0x75300000 - 0x75307000      C:\windows\system32\WSOCK32.dll
    0x2bb50000 - 0x2bb6b000      C:\Informatica\9.0.1\server\bin\pmserial.dll
    0x71af0000 - 0x71b2c000      C:\windows\system32\pdh.dll
    0x2bb80000 - 0x2bc80000      C:\Informatica\9.0.1\server\bin\PMLIBEAY32.dll
    0x73280000 - 0x7330e000      C:\windows\WinSxS\x86_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.4940_none_50916076bcb9a742\MSVCP90.dll
    0x2bc90000 - 0x2bcce000      C:\Informatica\9.0.1\server\bin\ice.dll
    0x2bce0000 - 0x2bdeb000      C:\Informatica\9.0.1\server\bin\ACE.dll
    0x74b00000 - 0x74b11000      C:\windows\system32\NETAPI32.dll
    0x74af0000 - 0x74af9000      C:\windows\system32\netutils.dll
    0x74ad0000 - 0x74ae9000      C:\windows\system32\srvcli.dll
    0x74ac0000 - 0x74acf000      C:\windows\system32\wkscli.dll
    0x2be00000 - 0x2bebd000      C:\Informatica\9.0.1\server\bin\pmrepsdk.dll
    0x2bed0000 - 0x2d572000      C:\Informatica\9.0.1\server\bin\pmrepcmn.dll
    0x2d590000 - 0x2d709000      C:\Informatica\9.0.1\server\bin\pmxml.dll
    0x2d720000 - 0x2d909000      C:\Informatica\9.0.1\server\bin\pmxerces-c_2_7.dll
    0x774e0000 - 0x775d5000      C:\windows\syswow64\WININET.dll
    0x76a80000 - 0x76bb7000      C:\windows\syswow64\urlmon.dll
    0x759d0000 - 0x75aee000      C:\windows\syswow64\CRYPT32.dll
    0x77670000 - 0x7767c000      C:\windows\syswow64\MSASN1.dll
    0x76f50000 - 0x7714f000      C:\windows\syswow64\iertutil.dll
    0x2d920000 - 0x2d938000      C:\Informatica\9.0.1\server\bin\PmCmnVari.dll
    0x2d950000 - 0x2d95f000      C:\Informatica\9.0.1\server\bin\pmproctasklib.dll
    0x70e30000 - 0x711cc000      C:\windows\WinSxS\x86_microsoft.vc90.mfc_1fc8b3b9a1e18e3b_9.0.30729.1_none_dcc7eae99ad0d9cf\mfc90.dll
    0x2d970000 - 0x2d9b3000      C:\Informatica\9.0.1\server\bin\PmCmnExpr.dll
    0x2d9d0000 - 0x2da62000      C:\Informatica\9.0.1\server\bin\pmexpr.dll
    0x2da80000 - 0x2da90000      C:\Informatica\9.0.1\server\bin\pmlicense.dll
    0x2daa0000 - 0x2dd23000      C:\Informatica\9.0.1\server\bin\pmpcsfcmn.dll
    0x2dd40000 - 0x2dd54000      C:\Informatica\9.0.1\server\bin\pmpcsfprtcl.dll
    0x2dd70000 - 0x2dda0000      C:\Informatica\9.0.1\server\bin\libcurl.dll
    0x2ddb0000 - 0x2dde0000      C:\Informatica\9.0.1\server\bin\SSLEAY32.dll
    0x2ddf0000 - 0x2de29000      C:\Informatica\9.0.1\server\bin\PMODLNT.dll
    0x2de40000 - 0x2de88000      C:\Informatica\9.0.1\server\bin\pmesapi.dll
    0x2dea0000 - 0x2dee3000      C:\Informatica\9.0.1\server\bin\pminfa.dll
    0x2df00000 - 0x2e08e000      C:\Informatica\9.0.1\server\bin\pmreplib.dll
    0x2e0a0000 - 0x2e0b0000      C:\Informatica\9.0.1\server\bin\pmsso.dll
    0x742c0000 - 0x74340000      C:\windows\system32\UxTheme.dll
    0x721a0000 - 0x721b3000      C:\windows\system32\dwmapi.dll
    0x72c40000 - 0x72c4d000      C:\windows\WinSxS\x86_microsoft.vc90.mfcloc_1fc8b3b9a1e18e3b_9.0.30729.1_none_da4695fc507e16e1\MFC90ENU.DLL
    0x2e290000 - 0x2e2c3000      C:\Informatica\9.0.1\server\bin\pmjsysutiln.dll
    0x757e0000 - 0x75863000      C:\windows\syswow64\CLBCatQ.DLL
    0x748f0000 - 0x748fa000      C:\windows\system32\wbem\wbemprox.dll
    0x74890000 - 0x748ec000      C:\windows\system32\wbemcomn.dll
    0x74820000 - 0x7482e000      C:\windows\system32\RpcRtRemote.dll
    0x71e00000 - 0x71e0f000      C:\windows\system32\wbem\wbemsvc.dll
    0x71d60000 - 0x71df6000      C:\windows\system32\wbem\fastprox.dll
    0x71ce0000 - 0x71cf8000      C:\windows\system32\NTDSAPI.dll
    VM Arguments:
    jvm_args: -Dcatalina.base=C:\Informatica\9.0.1\tomcat -Dcatalina.home=C:\Informatica\9.0.1\tomcat -Djava.endorsed.dirs=C:\Informatica\9.0.1\tomcat\common\endorsed -Duser.dir=C:\Informatica\9.0.1\tomcat\bin -DINFA_HOME=C:\Informatica\9.0.1 -DINFA_DEV_LOG_DIR= -DINFA_DOMAINS_FILE=C:\Informatica\9.0.1\domains.infa -Djava.io.tmpdir=C:\Informatica\9.0.1\tomcat\temp -Xrs -Xms256m -Xmx512m -Djava.library.path=C:\Informatica\9.0.1\server\bin
    java_command: <unknown>
    Launcher Type: generic
    Environment Variables:
    CLASSPATH=.;C:\Program Files (x86)\Java\jre7\lib\ext\QTJava.zip
    PATH=C:\Informatica\9.0.1\server\bin;C:\Program Files (x86)\Java\jre7\bin;C:\Informatica\9.0.1\clients\tools\datadirect;C:\app\Tomar\product\11.2.0\dbhome_1\bin;C:\Informatica\9.0.1\server\bin;C:\Informatica\9.0.1\clients\tools\datadirect;C:\Informatica\9.0.1\tools\datadirect;C:\app\Tomar\product\11.2.0\client_2;C:\Informatica\9.0.1\clients\tools\datadirect;C:\Informatica\9.0.1\clients\DeveloperClient\bin;D:\app\product\11.2.0\dbhome_2\bin;C:\Program Files (x86)\RSA SecurID Token Common;C:\app\Tomar\product\11.2.0\dbhome_3\bin;C:\app\Tomar\product\11.2.0\dbhome_2\bin;C:\windows\system32;C:\windows;C:\windows\System32\Wbem;C:\windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\ThinkPad\Bluetooth Software\;C:\Program Files\ThinkPad\Bluetooth Software\syswow64;C:\Program Files (x86)\QuickTime\QTSystem\;
    USERNAME=R8X8W8B$
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 37 Stepping 5, GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows NT 6.1 Build 7601 Service Pack 1
    CPU:total 4 (8 cores per cpu, 2 threads per core) family 6 model 5 stepping 5, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, ht
    Memory: 4k page, physical 3985044k(1819076k free), swap 4194303k(4194303k free)
    vm_info: Java HotSpot(TM) Client VM (11.2-b01) for windows-x86 JRE (1.6.0_12-b04), built on Jan 17 2009 09:57:14 by "java_re" with MS VC++ 7.1
    time: Mon Apr 01 19:43:59 2013
    elapsed time: 24 seconds

    879625 wrote:
    Due to that Informatica administrator page is not logging in and also I couldn’t connect to any of the Informatica clients.
    I checked the catalina.out file and find the below error message:
    Cannot start node due to the error: [[RSVCSHARED_00014] The Repository Capability ['Persistence'] failed to initialize due to: '[DBPERSISTER_0009] Failed to connect to database with connection string 'jdbc:informatica:oracle://localhost:1521;ServiceName=ora.idc.oracle.com;MaxPooledStatements=20;CatalogOptions=0;BatchPerformanceWorkaround=true' as user 'hdm'']
    Starting Tomcat on HTTP port 6005.
    Domain service init method is called.
    # An unexpected error has been detected by Java Runtime Environment:
    are you able to connect with the userid and pwd which you have used during the install (eg: inf_repo and password) in the jdbc connection string "jdbc:informatica:oracle://localhost:1521;ServiceName=ora.idc.oracle.com"
    and also which java version are using. Looks like the Java is having issues as the jdbc is using this java.
    Thanks,
    RM

  • Error while starting the managed server using nodemanager

    HI ,
    I am getting the below error while starting the managed server from the Admin console. All the serverstart and the node manager proeprties looks fine.
    Below is the error in the managed server log,
    startWebLogic.sh: grep: not found
    startWebLogic.sh: uname: not found
    startWebLogic.sh: test: argument expected
    can you help me to solve the problem please. i am using weblogic 10.3.3
    thanks
    Arun

    I think you've changed and added some lines into your startWebLogic.sh script. Can you put your script here?

  • Getting error while starting Managed server in clustered environment

    Hi All,
    I created a cluster in weblogic 9.2 and two manged servers under that cluster through WLST scripts.
    I started Node manager through connecting WLST and now when i am starting the managed servers its giving the following error :
    wls:/Dist_3/serverConfig> start('managed1','Server')
    Starting server managed1 ....NMProcess: <Jan 30, 2009 2:57:27 PM> <Warning> <I/O
    error while reading domain directory: java.io.FileNotFoundException: Domain dir
    ectory 'C:\bea\weblogic92\common\bin' invalid (domain salt file not found)>
    NMProcess: java.io.FileNotFoundException: Domain directory 'C:\bea\weblogic92\co
    mmon\bin' invalid (domain salt file not found)
    NMProcess: at weblogic.nodemanager.server.DomainManager.initialize(DomainMa
    nager.java:80)
    NMProcess: at weblogic.nodemanager.server.DomainManager.<init>(DomainManage
    r.java:52)
    NMProcess: at weblogic.nodemanager.server.NMServer.getDomainManager(NMServe
    r.java:242)
    NMProcess: at weblogic.nodemanager.server.Handler.handleDomain(Handler.java
    :212)
    NMProcess: at weblogic.nodemanager.server.Handler.handleCommand(Handler.jav
    a:105)
    NMProcess: at weblogic.nodemanager.server.Handler.run(Handler.java:66)
    NMProcess: at java.lang.Thread.run(Thread.java:595)
    NMProcess:
    I/O error while reading domain directory: java.io.FileNotFoundException: Domain
    directory 'C:\bea\weblogic92\common\bin' invalid (domain salt file not found)
    Traceback (innermost last):
    File "<console>", line 1, in ?
    File "<iostream>", line 1250, in start
    WLSTException: 'Error occured while performing start : Error starting the server
    Error occured while performing start : Server with name managed1 failed to be st
    arted Use dumpStack() to view the full stacktrace'
    wls:/Dist_3/serverConfig> start('managed2','Server')
    Starting server managed2 ....NMProcess: <Jan 30, 2009 3:05:51 PM> <Warning> <I/O
    error while reading domain directory: java.io.FileNotFoundException: Domain dir
    ectory 'C:\bea\weblogic92\common\bin' invalid (domain salt file not found)>
    NMProcess: java.io.FileNotFoundException: Domain directory 'C:\bea\weblogic92\co
    mmon\bin' invalid (domain salt file not found)
    NMProcess: at weblogic.nodemanager.server.DomainManager.initialize(DomainMa
    nager.java:80)
    NMProcess: at weblogic.nodemanager.server.DomainManager.<init>(DomainManage
    r.java:52)
    NMProcess: at weblogic.nodemanager.server.NMServer.getDomainManager(NMServe
    r.java:242)
    NMProcess: at weblogic.nodemanager.server.Handler.handleDomain(Handler.java
    :212)
    NMProcess: at weblogic.nodemanager.server.Handler.handleCommand(Handler.jav
    a:105)
    NMProcess: at weblogic.nodemanager.server.Handler.run(Handler.java:66)
    NMProcess: at java.lang.Thread.run(Thread.java:595)
    NMProcess:
    I/O error while reading domain directory: java.io.FileNotFoundException: Domain
    directory 'C:\bea\weblogic92\common\bin' invalid (domain salt file not found)
    Traceback (innermost last):
    File "<console>", line 1, in ?
    File "<iostream>", line 1250, in start
    WLSTException: 'Error occured while performing start : Error starting the server
    Error occured while performing start : Server with name managed2 failed to be st
    arted Use dumpStack() to view the full stacktrace'
    wls:/Dist_3/serverConfig>

    hi kartheek,
    i think u just missed some of steps while starting managed server using nodemanager in WLST.
    If u dont mind i'm sending some of steps just check it out. Once u try the same steps.
    1.start the ADMIN SERVER
    2.start the WLST
    java weblogic.WLST
    3.Connect to AdminServer
    connect('username',password','t3://adminhost:listenport')
    example: connect('weblogic','weblogic','t3://localhost:7001')
    4.start the nodemanager in WLST
    startNodeManager()
    5.connect to nodemanager
    nmConnect('username','password','nodemanagerhost',
    'nodemanagerlistenport','domainname','path to domain')
    example: nmConnect('weblogic','weblogic','localhost','5556','base_domain'
    'C:/bea/user_projects/domains/base_domain')
    6.start the managed server in WLST
    start('managedservername','Type','t3://managedhost:listenport')
    example:start('man1','Server','t3://localhost:7003')
    7.If u want to start cluster in WLST
    start('clustername','Type')
    example: start('cluster1','Cluster')
    If u want to start managed in Cluster u follow STEP-6 only
    regards
    abhi

  • Error while starting discoverer 10g

    Dear All,
    Currently we are facing issue while starting the WLS_DISCO discoverer service through node manager as:
    java.io.IOException: Server failed to start up. See server output log for more details.
    at weblogic.nodemanager.server.ServerManager.start(ServerManager.java:331)
    at weblogic.nodemanager.server.Handler.handleStart(Handler.java:541)
    at weblogic.nodemanager.server.Handler.handleCommand(Handler.java:118)
    at weblogic.nodemanager.server.Handler.run(Handler.java:70)
    at java.lang.Thread.run(Thread.java:619)
    Kindly suggest us ASAP to resolve the issue because it is an PROD server.
    Thanks & Regards,
    Kamalakannan Rajendran

    Pl do not post duplicates - Error while starting discoverer 10g

  • Error while starting CE7.2 instance from SAPMMC

    Get an error while "Synchronizing Binaries". Installed CE7.2 trial on Windows7 Laptop with 3GB RAM.
    Swap space is 6GB. MAXDB is running fine now.Volume and Log files are not full..
    dev_start trace below: Has this pbm been sorted out before?
    trc file: "dev_jstart.5916", trc level: 1, release: "720"
    trc file: "dev_jstart.new", trc level: 1, release: "720"
    sysno      00
    sid        CE1
    systemid   560 (PC with Windows NT)
    relno      7200
    patchlevel 0
    patchno    22
    intno      20020600
    make       multithreaded, Unicode, optimized
    profile    C:\usr\sap\CE1\SYS\profile\CE1_J00_Sriram-PC
    pid        5916
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      All, egi
    Wed Mar 30 01:09:14 2011
    trace logging activated, max size = 52428800 bytes, 2 versions
    arguments :
      arg[ 0] : C:\usr\sap\CE1\SYS\exe\uc\NTI386\jstart.EXE
      arg[ 1] : pf=C:\usr\sap\CE1\SYS\profile\CE1_J00_Sriram-PC

    F [Thr 4972] Wed Mar 30 01:09:14 2011
    F  [Thr 4972] *** WARNING => SfCheckJeeVersion: Cannot find JEE application directory C:\usr\sap\CE1\J00\j2ee\cluster\apps. [sfxxmain.cpp 861]

    F Wed Mar 30 01:09:15 2011
    F  ********************************************************************************
    F  Java environment properties (C:\usr\sap\CE1\J00\work\jstart.jvm)
    F    root directory    : C:\usr\sap\CE1\SYS\exe\jvm\NTI386\sapjvm_6.1.007/sapjvm_6
    F    vendor            : SAP AG
    F    version           : 1.6.0_07
    F    cpu               : x86
    F    java vm type      : server
    F    java vm version   : 6.1.007
    F    jvm library name  : jvm.dll
    F    library path      : C:\usr\sap\CE1\SYS\exe\jvm\NTI386\sapjvm_6.1.007\sapjvm_6\jre\bin\server;C:\usr\sap\CE1\SYS\exe\jvm\NTI386\sapjvm_6.1.007\sapjvm_6\jre\bin
    F    executable path   : C:\usr\sap\CE1\SYS\exe\jvm\NTI386\sapjvm_6.1.007\sapjvm_6\bin
    F  ********************************************************************************
    F    SAP extensions    : available
    F  ********************************************************************************
    I  [Thr 4972] MtxInit: 30002 0 2
    trc file: "dev_jstart", trc level: 1, release: "720"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      All, egi
    F  [Thr 4972] *** LOG => connected to Enqueue Server.

    F [Thr 4972] Wed Mar 30 01:09:19 2011
    F  [Thr 4972] *** LOG => connected to Message Server.
    F  [Thr 4972] *** LOG => Starting run level 1.
    F  ********************************************************************************
    F  Java process [deployment] properties:
    F    section name     : deployment
    F    config file      : C:\usr\sap\CE1\SYS\exe\uc\NTI386\startup.properties
    F    node name        : Deploy_offline
    F    home directory   : C:\usr\sap\CE1\J00\j2ee\cluster
    F    shutdown timeout : 136000 ms
    F    exit timeout     : 7000 ms
    F    debuggable       : false
    F    debugger active  : false
    F  ********************************************************************************
    F  [Thr 4972] *** LOG => Instance state is "Deploying offline components" (STARTING @ 0, INACTIVE).
    F  [Thr 4972] *** LOG => Starting nodes: runlevel 1.
    F  ********************************************************************************
    F  Starting process: C:\usr\sap\CE1\SYS\exe\uc\NTI386\jstart.EXE
    F    arg[ 1] = -nodeId=0
    F    arg[ 2] = pf=C:\usr\sap\CE1\SYS\profile\CE1_J00_Sriram-PC
    F    arg[ 3] = -hostvm
    F    arg[ 4] = -nodeName=deployment
    F    arg[ 5] = -file=C:\usr\sap\CE1\SYS\exe\uc\NTI386\startup.properties
    F    arg[ 6] = -jvmFile=C:\usr\sap\CE1\J00\work\jstart.jvm
    F    arg[ 7] = -traceFile=C:\usr\sap\CE1\J00\work\dev_deployment
    F    arg[ 8] = -javaOutFile=C:\usr\sap\CE1\J00\work\jvm_deployment.out
    F    env   : JStart/ReserveSize=0x60000000
    F    env   : NODNSSAPTRANSHOST=1
    F  exePath : PATH=C:\usr\sap\CE1\SYS\exe\jvm\NTI386\sapjvm_6.1.007\sapjvm_6\bin;C:\usr\sap\CE1\SYS\exe\uc\NTI386;C:\windows\system32;C:\windows;C:\windows\System32\Wbem;C:\windows\System32\WindowsPowerShell\v1.0;C:\Program Files\Lenovo\Bluetooth Software
    F  libPath : PATH=C:\usr\sap\CE1\SYS\exe\jvm\NTI386\sapjvm_6.1.007\sapjvm_6\jre\bin\server;C:\usr\sap\CE1\SYS\exe\jvm\NTI386\sapjvm_6.1.007\sapjvm_6\jre\bin;C:\usr\sap\CE1\J00\j2ee\os_libs;C:\usr\sap\CE1\SYS\exe\jvm\NTI386\sapjvm_6.1.007\sapjvm_6\bin;C:\usr\sap\CE1\SYS\exe\uc\NTI386;C:\windows\system32;C:\windows;C:\windows\System32\Wbem;C:\windows\System32\WindowsPowerShell\v1.0;C:\Program Files\Lenovo\Bluetooth Software
    F  stdout  : C:\usr\sap\CE1\J00\work\std_deployment.out
    F  stderr  : C:\usr\sap\CE1\J00\work\std_deployment.out
    F  console : no
    F  debugger: no
    F  nice    : yes
    F  ********************************************************************************
    F  Process Deploy_offline started with pid 5220
    F  ********************************************************************************
    F  [Thr 4972] *** LOG => Process deployment started (pid 5220).

    F [Thr 4972] Wed Mar 30 01:09:27 2011
    F  [Thr 4972] *** LOG => Process deployment stopping (pid 5220).

    F [Thr 4236] Wed Mar 30 01:09:27 2011
    F  [Thr 4236] *** LOG => Signal 13 SIGCHLD.
    F  [Thr 4972] *** LOG => Process deployment stopped (pid 5220).
    F  [Thr 4972] *** LOG => Instance state is "Deploying offline components" (STOPPING @ 0, INACTIVE).
    F  [Thr 4972] *** LOG => Run level 1 completed.
    F  [Thr 4972] *** LOG => Starting run level 2.
    F  ********************************************************************************
    F  Java process [bootstrap] properties:
    F    section name     : bootstrap
    F    config file      : C:\usr\sap\CE1\SYS\exe\uc\NTI386\startup.properties
    F    node name        : Instance_bootstrap
    F    home directory   : C:\usr\sap\CE1\J00\j2ee\cluster
    F    shutdown timeout : 136000 ms
    F    exit timeout     : 7000 ms
    F    debuggable       : false
    F    debugger active  : false
    F  ********************************************************************************
    F  [Thr 4972] *** LOG => Instance state is "Synchronizing binaries" (STARTING @ 0, INACTIVE).
    F  [Thr 4972] *** LOG => Starting nodes: runlevel 2.
    F  ********************************************************************************
    F  Starting process: C:\usr\sap\CE1\SYS\exe\uc\NTI386\jstart.EXE
    F    arg[ 1] = -nodeId=0
    F    arg[ 2] = pf=C:\usr\sap\CE1\SYS\profile\CE1_J00_Sriram-PC
    F    arg[ 3] = -hostvm
    F    arg[ 4] = -nodeName=bootstrap
    F    arg[ 5] = -file=C:\usr\sap\CE1\SYS\exe\uc\NTI386\startup.properties
    F    arg[ 6] = -jvmFile=C:\usr\sap\CE1\J00\work\jstart.jvm
    F    arg[ 7] = -traceFile=C:\usr\sap\CE1\J00\work\dev_bootstrap
    F    arg[ 8] = -javaOutFile=C:\usr\sap\CE1\J00\work\jvm_bootstrap.out
    F    env   : JStart/ReserveSize=0x60000000
    F    env   : NODNSSAPTRANSHOST=1
    F  exePath : PATH=C:\usr\sap\CE1\SYS\exe\jvm\NTI386\sapjvm_6.1.007\sapjvm_6\bin;C:\usr\sap\CE1\SYS\exe\uc\NTI386;C:\windows\system32;C:\windows;C:\windows\System32\Wbem;C:\windows\System32\WindowsPowerShell\v1.0;C:\Program Files\Lenovo\Bluetooth Software
    F  libPath : PATH=C:\usr\sap\CE1\SYS\exe\jvm\NTI386\sapjvm_6.1.007\sapjvm_6\jre\bin\server;C:\usr\sap\CE1\SYS\exe\jvm\NTI386\sapjvm_6.1.007\sapjvm_6\jre\bin;C:\usr\sap\CE1\J00\j2ee\os_libs;C:\usr\sap\CE1\SYS\exe\jvm\NTI386\sapjvm_6.1.007\sapjvm_6\bin;C:\usr\sap\CE1\SYS\exe\uc\NTI386;C:\windows\system32;C:\windows;C:\windows\System32\Wbem;C:\windows\System32\WindowsPowerShell\v1.0;C:\Program Files\Lenovo\Bluetooth Software
    F  stdout  : C:\usr\sap\CE1\J00\work\std_bootstrap.out
    F  stderr  : C:\usr\sap\CE1\J00\work\std_bootstrap.out
    F  console : no
    F  debugger: no
    F  nice    : yes
    F  ********************************************************************************
    F  Process Instance_bootstrap started with pid 5024
    F  ********************************************************************************
    F  [Thr 4972] *** LOG => Process bootstrap started (pid 5024).

    F [Thr 4972] Wed Mar 30 01:09:33 2011
    F  [Thr 4972] *** LOG => Process bootstrap stopping (pid 5024).

    F [Thr 5560] Wed Mar 30 01:09:33 2011
    F  [Thr 5560] *** LOG => Signal 13 SIGCHLD.
    F  [Thr 4972] *** LOG => Process bootstrap stopped (pid 5024).
    F  [Thr 4972] *** WARNING => Node bootstrap failed: result 1, exit code 503. [sfxxnode.hpp 1011]
    F  ********************************************************************************
    F  Native process [snapshot] properties:
    F    section name     : snapshot
    F    config file      : C:\usr\sap\CE1\SYS\exe\uc\NTI386\startup.properties
    F    node name        : snapshot
    F    home directory   : C:\usr\sap\CE1\J00\work
    F    shutdown timeout : 122000 ms
    F    sf support       : false
    F  ********************************************************************************
    F  ********************************************************************************
    F  Starting process: C:\usr\sap\CE1\SYS\exe\uc\NTI386\sapcontrol.EXE
    F    arg[ 1] = -prot
    F    arg[ 2] = PIPE
    F    arg[ 3] = -nr
    F    arg[ 4] = 00
    F    arg[ 5] = -function
    F    arg[ 6] = CreateSnapshot
    F    arg[ 7] = Servercrash
    F    arg[ 8] = postmortem?node=bootstrap&exitcode=503
    F    arg[ 9] = 1
    F    arg[10] = 10000
    F    arg[11] = ""
    F    arg[12] = ""
    F    arg[13] = DEFAULT
    F    env   : NODNSSAPTRANSHOST=1
    F  exePath : PATH=C:\usr\sap\CE1\SYS\exe\uc\NTI386;C:\windows\system32;C:\windows;C:\windows\System32\Wbem;C:\windows\System32\WindowsPowerShell\v1.0;C:\Program Files\Lenovo\Bluetooth Software
    F  libPath : PATH=C:\usr\sap\CE1\SYS\exe\uc\NTI386;C:\windows\system32;C:\windows;C:\windows\System32\Wbem;C:\windows\System32\WindowsPowerShell\v1.0;C:\Program Files\Lenovo\Bluetooth Software
    F  stdout  : C:\usr\sap\CE1\J00\work\std_snapshot.out
    F  stderr  : C:\usr\sap\CE1\J00\work\std_snapshot.out
    F  console : no
    F  debugger: no
    F  nice    : yes
    F  ********************************************************************************
    F  Process snapshot started with pid 5272
    F  ********************************************************************************
    F  [Thr 4972] *** LOG => Process snapshot started (pid 5272).
    F  [Thr 4972] *** LOG => Process snapshot running (pid 5272).

    F [Thr 4972] Wed Mar 30 01:09:34 2011
    F  [Thr 4972] *** LOG => SAP Start Service (pid 3376) connected.
    F  [Thr 4972] *** LOG => SAP Start Service (pid 3376) disconnected.

    F [Thr 6136] Wed Mar 30 01:09:40 2011
    F  [Thr 6136] *** LOG => Signal 13 SIGCHLD.

    F [Thr 4972] Wed Mar 30 01:09:40 2011
    F  [Thr 4972] *** LOG => Process snapshot stopped (pid 5272).
    F  [Thr 4972] *** LOG => Instance state is "Synchronizing binaries" (STOPPING @ 0, INACTIVE).
    F  [Thr 4972] *** LOG => Run level 2 completed.
    F  [Thr 4972] *** LOG => Instance state is "Some processes failed" (STOPPED @ 0, INACTIVE).
    I  [Thr 4972] MPI: dynamic quotas disabled.
    I  [Thr 4972] MPI init: pipes=4000 buffers=1279 reserved=383 quota=10%

    F  ********************************************************************************
    F  *** ERROR => Node 'bootstrap' failed with exit code 503.
    F  ***
    F  *** Please see section 'Failures in the 'synchronizing binaries' phase'
    F  *** in SAP Note 1316652 for additional information and trouble shooting advice.
    F  ********************************************************************************

    F  [Thr 4972] *** LOG => exiting (exitcode 22002, retcode 1).

    Hello Sriram 
    You should find the cause of the problem in
    /usr/sap/<SID>/<instance>/work/dev_bootstrap*
    Thanks
    Kenny

  • Error while starting nodemanager in wlst, but start wit startNodeManager.sh

    Hi,
    I cannot start node manager using wlst, but can start with startNodeManager.sh ( present in webogic_home/server/bin )
    My wlst looks like this :
    bea_home=..
    weblogic_home=...
    nmhome = weblogic_home + '\\common\\nodemanager'
    domaindir = bea_home + '\\user_projects\\domains\\' + sys.argv[2]
    startNodeManager(verbose='true', NodeManagerHome=nmhome)
    #Connect to the node manager
    nmConnect(domainName='myclusterdomain',domainDir=domaindir)
    ==============================================
    I get the following errror:
    [java] Launching NodeManager ...
    [java] Properties: {NodeManagerHome=/home/hkarthig/wl11g/middleware/wlserver_10.3/common/nodemanager,}
    [java] Command: /usr/java/jdk1.6.0_07/jre/bin/java -classpath /usr/java/jdk1.6.0_07/jre/lib/rt.jar:/usr/java/jdk1.6.0_07/jre/lib/i18n.jar:/home/hkarthig/wl11g/middleware/wlserver_10.3/server/lib/weblogic.jar weblogic.NodeManager -v
    [java] NMProcess: <Aug 1, 2009 10:17:17 AM> <INFO> <Loading domains file: /home/hkarthig/wl11g/middleware/wlserver_10.3/common/nodemanager/nodemanager.domains>
    [java] NMProcess: <Aug 1, 2009 10:17:17 AM> <SEVERE> <Fatal error in node manager server>
    [java] NMProcess: weblogic.nodemanager.common.ConfigException: Native version is enabled but node manager native library could not be loaded
    [java] NMProcess: at weblogic.nodemanager.server.NMServerConfig.initProcessControl(NMServerConfig.java:243)
    [java] NMProcess: at weblogic.nodemanager.server.NMServerConfig.<init>(NMServerConfig.java:182)
    [java] NMProcess: at weblogic.nodemanager.server.NMServer.init(NMServer.java:177)
    [java] NMProcess: at weblogic.nodemanager.server.NMServer.<init>(NMServer.java:142)
    [java] NMProcess: at weblogic.nodemanager.server.NMServer.main(NMServer.java:357)
    [java] NMProcess: at weblogic.NodeManager.main(NodeManager.java:31)
    [java] NMProcess: Caused by: java.lang.UnsatisfiedLinkError: no nodemanager in java.library.path
    [java] NMProcess: at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1682)
    [java] NMProcess: at java.lang.Runtime.loadLibrary0(Runtime.java:823)
    [java] NMProcess: at java.lang.System.loadLibrary(System.java:1030)
    [java] NMProcess: at weblogic.nodemanager.util.UnixProcessControl.<init>(UnixProcessControl.java:24)
    [java] NMProcess: at weblogic.nodemanager.util.Platform.getProcessControl(Platform.java:114)
    [java] NMProcess: at weblogic.nodemanager.server.NMServerConfig.initProcessControl(NMServerConfig.java:241)
    [java] NMProcess: ... 5 more
    [java] NMProcess:
    [java] NMProcess: Stopped draining NMProcess
    [java] NMProcess: Stopped draining NMProcess
    [java] Successfully launched the Node Manager.

    What you should do is note the exact java.library.path setting you end up with when you run startNodeManager.sh and set that value manually in the WLST script.

  • DAC message while running execution plan - "Error while loading nodes"

    I have just installed and setup Informatica 8.6.1, DAC, BI apps 7.9.6 for a Oracle Ebs R12.1.1 source instance
    In informatica I have defined 2 relational sources "DataWarehouse" and "ORA_R1211" - the same names as in physical data sources of DAC
    I have mentioned the flatfile parameter as "ORA_R1211_Flatfile" in DAC
    after successfully build, when I run the ETL the error "Error while loading nodes" occurs.
    the log file shows the following details:
    START OF ETL
    20 SEVERE Sat Apr 23 21:57:58 GST 2011
    ANOMALY INFO::: Error while loading nodes.
    EXCEPTION CLASS::: java.lang.NullPointerException
    com.siebel.etl.engine.core.SessionHandler.getNodes(SessionHandler.java:2842)
    com.siebel.etl.engine.core.SessionHandler.loadNodes(SessionHandler.java:473)
    com.siebel.etl.engine.core.ETL.thisETLProcess(ETL.java:372)
    com.siebel.etl.engine.core.ETL.run(ETL.java:658)
    com.siebel.etl.engine.core.ETL.execute(ETL.java:910)
    com.siebel.etl.etlmanager.EtlExecutionManager$1.executeEtlProcess(EtlExecutionManager.java:210)
    com.siebel.etl.etlmanager.EtlExecutionManager$1.run(EtlExecutionManager.java:165)
    java.lang.Thread.run(Thread.java:619)
    21 SEVERE Sat Apr 23 21:57:58 GST 2011
    *     CLOSING THE CONNECTION POOL DataWarehouse
    22 SEVERE Sat Apr 23 21:57:58 GST 2011
    *     CLOSING THE CONNECTION POOL ORA_R1211
    23 SEVERE Sat Apr 23 21:57:58 GST 2011
    END OF ETL
    *****************

    Hi,
    Mark the current EP as completed and re-assemble the subject area, generate parameters and build the EP and run the load.
    Thanks,
    Navin KumarBolla

  • OBIEE 11g (11.1.1.5.0) - Issue with starting Node Manager

    Hi,
    Have anyone faced an issue with starting Node Manager in OBIEE 11g (11.1.1.5.0)? OS is 64 bit Linux, WebLogic is 10.3.5. I used the software-install method and followed by running config.sh. Everything completed successfully. I updated the catalog and rpd location in the FMW control screen.
    To get it activated I bounced services and when I try to start Node Manager it gives below error --
    <Aug 30, 2011 2:02:42 PM CDT> <Info> <Security> <BEA-090906> <Changing the default Random Number Generator in RSA CryptoJ from ECDRBG to FIPS186PRNG. To disable this change, specify -Dweblogic.security.allowCryptoJDefaultPRNG=true>
    <Aug 30, 2011 2:02:42 PM> <SEVERE> <Fatal error in node manager server>
    java.io.IOException: Unsupported cypher suite: TLS_RSA_EXPORT_WITH_RC4_40_MD5
    at weblogic.nodemanager.server.SSLListener.init(SSLListener.java:82)
    at weblogic.nodemanager.server.NMServer.start(NMServer.java:206)
    at weblogic.nodemanager.server.NMServer.main(NMServer.java:377)
    at weblogic.NodeManager.main(NodeManager.java:31)
    Aug 30, 2011 2:02:42 PM weblogic.nodemanager.server.NMServer main
    SEVERE: Fatal error in node manager server
    java.io.IOException: Unsupported cypher suite: TLS_RSA_EXPORT_WITH_RC4_40_MD5
    at weblogic.nodemanager.server.SSLListener.init(SSLListener.java:82)
    at weblogic.nodemanager.server.NMServer.start(NMServer.java:206)
    at weblogic.nodemanager.server.NMServer.main(NMServer.java:377)
    at weblogic.NodeManager.main(NodeManager.java:31)
    + set +x
    I see the same issue reported in ML OBIEE 11g - Node manager fails to start upon upgrade [ID 1329442.1] and WebLogic Server: Node Manager Startup is Failing with java.io.IOException: Unsupported cypher suite [ID 1329260.1] I tried to modify commEnv.sh. But it didnt help me.
    Please let me know if anyone have faced similar issue and what exactly did you do to resolve it.
    Cherrish Vaidiyan
    Edited by: Cherrish on Aug 30, 2011 3:14 PM

    Hi,
    There are Two types of Cipher suites --- Certicom Cipher Suite and SunJSSE Equivalent Cipher Suite. And with Weblogic 10.3.5, you are using Sun JSSE Cipher Suite, and by default Node Manager uses the Certicom Cipher Suite.
    In the nodemanager.properties, Add CipherSuite=SSL_RSA_EXPORT_WITH_RC4_40_MD5, save and restart Node Manager.
    Reference Metalink Note: WebLogic Server 10.3.x: Getting "Unsupported Cipher" Exceptions When Starting Node Manager [ID 1307325.1]
    Cherrish Vaidiyan

  • JMX error when starting managed server

    One of our production managed servers has suddenly encountered an error when try to start it via the Admin console.
    No changes have been made recently that I am aware of. The port number for the node manager is available and the log files states that it has started successfully.
    Message: The requested operation is not exposed through JMX in this context: start
    Stack Trace: java.lang.RuntimeException: The requested operation is not exposed through JMX in this context: start at weblogic.management.jmx.ExceptionMapper.matchJMXException(ExceptionMapper.java:87) at weblogic.management.jmx.MBeanServerInvocationHandler.doInvoke(MBeanServerInvocationHandler.java:547) at weblogic.management.jmx.MBeanServerInvocationHandler.invoke(MBeanServerInvocationHandler.java:380) at $Proxy105.start(Unknown Source) at com.bea.console.actions.core.server.lifecycle.Lifecycle.finish(Lifecycle.java:719) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.apache.beehive.netui.pageflow.FlowController.invokeActionMethod(FlowController.java:870) at org.apache.beehive.netui.pageflow.FlowController.getActionMethodForward(FlowController.java:809) at org.apache.beehive.netui.pageflow.FlowController.internalExecute(FlowController.java:478) at org.apache.beehive.netui.pageflow.PageFlowController.internalExecute(PageFlowController.java:306) at org.apache.beehive.netui.pageflow.FlowController.execute(FlowController.java:336) at org.apache.beehive.netui.pageflow.internal.FlowControllerAction.execute(FlowControllerAction.java:52) at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431) at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.access$201(PageFlowRequestProcessor.java:97) at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor$ActionRunner.execute(PageFlowRequestProcessor.java:2044) at org.apache.beehive.netui.pageflow.interceptor.action.internal.ActionInterceptors$WrapActionInterceptorChain.continueChain(ActionInterceptors.java:64) at org.apache.beehive.netui.pageflow.interceptor.action.ActionInterceptor.wrapAction(ActionInterceptor.java:184) at org.apache.beehive.netui.pageflow.interceptor.action.internal.ActionInterceptors$WrapActionInterceptorChain.invoke(ActionInterceptors.java:50) at org.apache.beehive.netui.pageflow.interceptor.action.internal.ActionInterceptors$WrapActionInterceptorChain.continueChain(ActionInterceptors.java:58) at org.apache.beehive.netui.pageflow.interceptor.action.internal.ActionInterceptors.wrapAction(ActionInterceptors.java:87) at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.processActionPerform(PageFlowRequestProcessor.java:2116) at com.bea.console.internal.ConsolePageFlowRequestProcessor.processActionPerform(ConsolePageFlowRequestProcessor.java:261) at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236) at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.processInternal(PageFlowRequestProcessor.java:556) at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.process(PageFlowRequestProcessor.java:853) at org.apache.beehive.netui.pageflow.AutoRegisterActionServlet.process(AutoRegisterActionServlet.java:631) at org.apache.beehive.netui.pageflow.PageFlowActionServlet.process(PageFlowActionServlet.java:158) at com.bea.console.internal.ConsoleActionServlet.process(ConsoleActionServlet.java:256) at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414) at com.bea.console.internal.ConsoleActionServlet.doGet(ConsoleActionServlet.java:133) at org.apache.beehive.netui.pageflow.PageFlowUtils.strutsLookup(PageFlowUtils.java:1199) at com.bea.portlet.adapter.scopedcontent.ScopedContentCommonSupport.executeAction(ScopedContentCommonSupport.java:686) at com.bea.portlet.adapter.scopedcontent.ScopedContentCommonSupport.processActionInternal(ScopedContentCommonSupport.java:142) at com.bea.portlet.adapter.scopedcontent.PageFlowStubImpl.processAction(PageFlowStubImpl.java:106) at com.bea.portlet.adapter.NetuiActionHandler.raiseScopedAction(NetuiActionHandler.java:111) at com.bea.netuix.servlets.controls.content.NetuiContent.raiseScopedAction(NetuiContent.java:181) at com.bea.netuix.servlets.controls.content.NetuiContent.raiseScopedAction(NetuiContent.java:167) at com.bea.netuix.servlets.controls.content.NetuiContent.handlePostbackData(NetuiContent.java:225) at com.bea.netuix.nf.ControlLifecycle$2.visit(ControlLifecycle.java:180) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:324) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walk(ControlTreeWalker.java:130) at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:395) at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:361) at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:352) at com.bea.netuix.nf.Lifecycle.runInbound(Lifecycle.java:184) at com.bea.netuix.nf.Lifecycle.run(Lifecycle.java:159) at com.bea.netuix.servlets.manager.UIServlet.runLifecycle(UIServlet.java:388) at com.bea.netuix.servlets.manager.UIServlet.doPost(UIServlet.java:258) at com.bea.netuix.servlets.manager.UIServlet.service(UIServlet.java:199) at com.bea.netuix.servlets.manager.SingleFileServlet.service(SingleFileServlet.java:251) at javax.servlet.http.HttpServlet.service(HttpServlet.java:820) at com.bea.console.utils.MBeanUtilsInitSingleFileServlet.service(MBeanUtilsInitSingleFileServlet.java:47) at weblogic.servlet.AsyncInitServlet.service(AsyncInitServlet.java:130) at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227) at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300) at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.doIt(WebAppServletContext.java:3684) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3650) at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321) at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121) at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2268) at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2174) at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1446) at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201) at weblogic.work.ExecuteThread.run(ExecuteThread.java:173) Caused by: javax.management.ReflectionException at weblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:205) at weblogic.rmi.internal.BasicRemoteRef.invoke(BasicRemoteRef.java:222) at javax.management.remote.rmi.RMIConnectionImpl_1033_WLStub.invoke(Unknown Source) at javax.management.remote.rmi.RMIConnector$RemoteMBeanServerConnection.invoke(RMIConnector.java:993) at weblogic.management.jmx.MBeanServerInvocationHandler.doInvoke(MBeanServerInvocationHandler.java:544) ... 92 more Caused by: java.lang.NoSuchMethodException: start() for com.bea:Name=cieaeq03-z1,Type=ServerLifeCycleRuntime at weblogic.management.jmx.modelmbean.WLSModelMBean.invoke(WLSModelMBean.java:395) at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerInterceptor.java:836) at com.sun.jmx.mbeanserver.JmxMBeanServer.invoke(JmxMBeanServer.java:761) at weblogic.management.mbeanservers.domainruntime.internal.FederatedMBeanServerInterceptor.invoke(FederatedMBeanServerInterceptor.java:349) at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase$16.run(WLSMBeanServerInterceptorBase.java:449) at java.security.AccessController.doPrivileged(Native Method) at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase.invoke(WLSMBeanServerInterceptorBase.java:447) at weblogic.management.mbeanservers.internal.JMXContextInterceptor.invoke(JMXContextInterceptor.java:268) at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase$16.run(WLSMBeanServerInterceptorBase.java:449) at java.security.AccessController.doPrivileged(Native Method) at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase.invoke(WLSMBeanServerInterceptorBase.java:447) at weblogic.management.mbeanservers.internal.SecurityMBeanMgmtOpsInterceptor.invoke(SecurityMBeanMgmtOpsInterceptor.java:65) at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase$16.run(WLSMBeanServerInterceptorBase.java:449) at java.security.AccessController.doPrivileged(Native Method) at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase.invoke(WLSMBeanServerInterceptorBase.java:447) at weblogic.management.mbeanservers.internal.SecurityInterceptor.invoke(SecurityInterceptor.java:444) at weblogic.management.jmx.mbeanserver.WLSMBeanServer.invoke(WLSMBeanServer.java:323) at weblogic.management.mbeanservers.internal.JMXConnectorSubjectForwarder$11$1.run(JMXConnectorSubjectForwarder.java:663) at java.security.AccessController.doPrivileged(Native Method) at weblogic.management.mbeanservers.internal.JMXConnectorSubjectForwarder$11.run(JMXConnectorSubjectForwarder.java:661) at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363) at weblogic.management.mbeanservers.internal.JMXConnectorSubjectForwarder.invoke(JMXConnectorSubjectForwarder.java:654) at javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1427) at javax.management.remote.rmi.RMIConnectionImpl.access$200(RMIConnectionImpl.java:72) at javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1265) at java.security.AccessController.doPrivileged(Native Method) at javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1367) at javax.management.remote.rmi.RMIConnectionImpl.invoke(RMIConnectionImpl.java:788) at javax.management.remote.rmi.RMIConnectionImpl_WLSkel.invoke(Unknown Source) at weblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:174) ... 96 more

    Hi,
    Am getting the error while starting the manage servers.The weblogic server is 10g.If anyone has any details please share, Appreciate any help.
    Error Details :
    The requested operation is not exposed through JMX in this context: start
    Stack Trace: java.lang.RuntimeException: The requested operation is not exposed through JMX in this context: start at weblogic.management.jmx.ExceptionMapper.matchJMXException(ExceptionMapper.java:87) at weblogic.management.jmx.MBeanServerInvocationHandler.doInvoke(MBeanServerInvocationHandler.java:547) at weblogic.management.jmx.MBeanServerInvocationHandler.invoke(MBeanServerInvocationHandler.java:380) at $Proxy104.start(Unknown Source) at com.bea.console.actions.core.server.lifecycle.Lifecycle.finish(Lifecycle.java:719) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.apache.beehive.netui.pageflow.FlowController.invokeActionMethod(FlowController.java:870) at org.apache.beehive.netui.pageflow.FlowController.getActionMethodForward(FlowController.java:809) at org.apache.beehive.netui.pageflow.FlowController.internalExecute(FlowController.java:478) at org.apache.beehive.netui.pageflow.PageFlowController.internalExecute(PageFlowController.java:306) at org.apache.beehive.netui.pageflow.FlowController.execute(FlowController.java:336) at org.apache.beehive.netui.pageflow.internal.FlowControllerAction.execute(FlowControllerAction.java:52) at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431) at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.access$201(PageFlowRequestProcessor.java:97) at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor$ActionRunner.execute(PageFlowRequestProcessor.java:2044) at org.apache.beehive.netui.pageflow.interceptor.action.internal.ActionInterceptors$WrapActionInterceptorChain.continueChain(ActionInterceptors.java:64) at org.apache.beehive.netui.pageflow.interceptor.action.ActionInterceptor.wrapAction(ActionInterceptor.java:184) at org.apache.beehive.netui.pageflow.interceptor.action.internal.ActionInterceptors$WrapActionInterceptorChain.invoke(ActionInterceptors.java:50) at org.apache.beehive.netui.pageflow.interceptor.action.internal.ActionInterceptors$WrapActionInterceptorChain.continueChain(ActionInterceptors.java:58) at org.apache.beehive.netui.pageflow.interceptor.action.internal.ActionInterceptors.wrapAction(ActionInterceptors.java:87) at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.processActionPerform(PageFlowRequestProcessor.java:2116) at com.bea.console.internal.ConsolePageFlowRequestProcessor.processActionPerform(ConsolePageFlowRequestProcessor.java:261) at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236) at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.processInternal(PageFlowRequestProcessor.java:556) at org.apache.beehive.netui.pageflow.PageFlowRequestProcessor.process(PageFlowRequestProcessor.java:853) at org.apache.beehive.netui.pageflow.AutoRegisterActionServlet.process(AutoRegisterActionServlet.java:631) at org.apache.beehive.netui.pageflow.PageFlowActionServlet.process(PageFlowActionServlet.java:158) at com.bea.console.internal.ConsoleActionServlet.process(ConsoleActionServlet.java:256) at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414) at com.bea.console.internal.ConsoleActionServlet.doGet(ConsoleActionServlet.java:133) at org.apache.beehive.netui.pageflow.PageFlowUtils.strutsLookup(PageFlowUtils.java:1199) at com.bea.portlet.adapter.scopedcontent.ScopedContentCommonSupport.executeAction(ScopedContentCommonSupport.java:686) at com.bea.portlet.adapter.scopedcontent.ScopedContentCommonSupport.processActionInternal(ScopedContentCommonSupport.java:142) at com.bea.portlet.adapter.scopedcontent.PageFlowStubImpl.processAction(PageFlowStubImpl.java:106) at com.bea.portlet.adapter.NetuiActionHandler.raiseScopedAction(NetuiActionHandler.java:111) at com.bea.netuix.servlets.controls.content.NetuiContent.raiseScopedAction(NetuiContent.java:181) at com.bea.netuix.servlets.controls.content.NetuiContent.raiseScopedAction(NetuiContent.java:167) at com.bea.netuix.servlets.controls.content.NetuiContent.handlePostbackData(NetuiContent.java:225) at com.bea.netuix.nf.ControlLifecycle$2.visit(ControlLifecycle.java:180) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:324) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:334) at com.bea.netuix.nf.ControlTreeWalker.walk(ControlTreeWalker.java:130) at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:395) at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:361) at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:352) at com.bea.netuix.nf.Lifecycle.runInbound(Lifecycle.java:184) at com.bea.netuix.nf.Lifecycle.run(Lifecycle.java:159) at com.bea.netuix.servlets.manager.UIServlet.runLifecycle(UIServlet.java:388) at com.bea.netuix.servlets.manager.UIServlet.doPost(UIServlet.java:258) at com.bea.netuix.servlets.manager.UIServlet.service(UIServlet.java:199) at com.bea.netuix.servlets.manager.SingleFileServlet.service(SingleFileServlet.java:251) at javax.servlet.http.HttpServlet.service(HttpServlet.java:820) at com.bea.console.utils.MBeanUtilsInitSingleFileServlet.service(MBeanUtilsInitSingleFileServlet.java:47) at weblogic.servlet.AsyncInitServlet.service(AsyncInitServlet.java:130) at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227) at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300) at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.doIt(WebAppServletContext.java:3684) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3650) at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321) at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121) at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2268) at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2174) at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1446) at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201) at weblogic.work.ExecuteThread.run(ExecuteThread.java:173) Caused by: javax.management.ReflectionException at weblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:205) at weblogic.rmi.internal.BasicRemoteRef.invoke(BasicRemoteRef.java:222) at javax.management.remote.rmi.RMIConnectionImpl_1033_WLStub.invoke(Unknown Source) at javax.management.remote.rmi.RMIConnector$RemoteMBeanServerConnection.invoke(RMIConnector.java:993) at weblogic.management.jmx.MBeanServerInvocationHandler.doInvoke(MBeanServerInvocationHandler.java:544) ... 92 more Caused by: java.lang.NoSuchMethodException: start() for com.bea:Name=GOLF_Server1,Type=ServerLifeCycleRuntime at weblogic.management.jmx.modelmbean.WLSModelMBean.invoke(WLSModelMBean.java:395) at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerInterceptor.java:836) at com.sun.jmx.mbeanserver.JmxMBeanServer.invoke(JmxMBeanServer.java:761) at weblogic.management.mbeanservers.domainruntime.internal.FederatedMBeanServerInterceptor.invoke(FederatedMBeanServerInterceptor.java:349) at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase$16.run(WLSMBeanServerInterceptorBase.java:449) at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase.invoke(WLSMBeanServerInterceptorBase.java:447) at weblogic.management.mbeanservers.internal.JMXContextInterceptor.invoke(JMXContextInterceptor.java:268) at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase$16.run(WLSMBeanServerInterceptorBase.java:449) at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase.invoke(WLSMBeanServerInterceptorBase.java:447) at weblogic.management.mbeanservers.internal.SecurityMBeanMgmtOpsInterceptor.invoke(SecurityMBeanMgmtOpsInterceptor.java:65) at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase$16.run(WLSMBeanServerInterceptorBase.java:449) at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase.invoke(WLSMBeanServerInterceptorBase.java:447) at weblogic.management.mbeanservers.internal.SecurityInterceptor.invoke(SecurityInterceptor.java:444) at weblogic.management.jmx.mbeanserver.WLSMBeanServer.invoke(WLSMBeanServer.java:323) at weblogic.management.mbeanservers.internal.JMXConnectorSubjectForwarder$11$1.run(JMXConnectorSubjectForwarder.java:663) at weblogic.management.mbeanservers.internal.JMXConnectorSubjectForwarder$11.run(JMXConnectorSubjectForwarder.java:661) at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363) at weblogic.management.mbeanservers.internal.JMXConnectorSubjectForwarder.invoke(JMXConnectorSubjectForwarder.java:654) at javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1426) at javax.management.remote.rmi.RMIConnectionImpl.access$200(RMIConnectionImpl.java:72) at javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1264) at javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1366) at javax.management.remote.rmi.RMIConnectionImpl.invoke(RMIConnectionImpl.java:788) at javax.management.remote.rmi.RMIConnectionImpl_WLSkel.invoke(Unknown Source) at weblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:174) ... 96 more
    帖子经 user8858768编辑过
    Thanks,
    Smita
    帖子经 user8858768编辑过

  • Error when starting NodeManager .. pls help

    When attempting to start node manager i recieve the following error:
    <Sep 30, 2004 1:30:47 PM EDT> <Error> <NodeManager> <Node manager could not find the required library, libNodeManager.so, in path - /usr/j2se/jre/lib/i386/client:/usr/j2se/jre/lib/i386:/usr/j2se/jre/../lib/i386:/export/home/bea/weblogic81/server/lib/solaris:/export/home/bea/weblogic81/server/lib/solaris/oci920_8:/usr/lib>
    i have copied the file, libnodemanager.so to every directory in the path above, spelling and case are correct, permissions set to rwxrwxrwx but still get error.
    wl 8.1 sp2 solaris 9.1.
    please help if you can.
    thanks.
    vb

    Windows 2000 is also technically NT 5.0 right? So in your case, upgrading from NT4.0 to NT5.0 solved the problem? Okay, i'll try that as a last alternative, but I'm still hoping that it can be solved by just doing some tinkering on the configuration. Anybody? :)

Maybe you are looking for

  • WBS element not populating at item level

    Hi Gurus, <br>I am trying to create a new sales order using the function module SD_SALESDOCUMENT_CREATE but when i pass a <br>value for the WBS element at item level it is not getting populated in the back end system. <br> <br>  data :LT_RETURN      

  • Switch statement trouble in an Applet

    Hello everyone. I am attempting to get a Button to work in an applet. This applet tells and stores jokes. There are two String arrays being used to store the jokes. There are also two buttons being used. (One to tell the jokes - the second to tell th

  • Joint Venture Accounting documents

    Hi Experts, I need Joint Venture Accounting documents for a fresh implimentation. Any help will be well rewarded.. Please send the documents to my id which is visible in my profile Pratiksha

  • A process named "discoveryd" takes up to 97% of my CPU after the last Yosemite update in April 2015

    Hello, "Discoveryd" process takes up to 97% of my CPU and when I force it to quit, it appears again after a while. I attached the screenshot of my activity monitor. Appreciate your help. Tugberk Hasanoglu

  • Strange lines appear in tables?

    Whenever I delete a row or column at the end of a table a strange black line appears, I have to keep going back to strokes and fills to adjust the table to have I want it. Is there something I am doing wrong?