Heapdump during WSDK 1.6 install on AIX (JRE 1.4.2 SR7)

Hello all,
I'm experiencing a problem with the Java Web Services Development Kit v1.6 installation on AIX 5.2. I'm installing via the console (using the -console switch), specifying /usr/java14 (java 1.4.2 SR7), and no web container. At about 80%, the install fails due to an Out of Memory error.
The server has 1GB of physical RAM, and I have tried running the install with every other non-essential process shutdown - with the same result.
I'm at a loss as to why the install process keeps crashing. Surely this doesn't need more than 1GB of RAM, does it?
Any ideas would be appreciated.
-T

Oh here's my env listing minus some irrevelent stuff like PS and LS_COLORS...if it helps...BTW I've tried installing just about every jre out there from Sun's to IBM's to Blackdown's....nothing worked...
+++++++++++++
[oracle@homer cdrom]$ env
ORACLE_SID=oralin
XAUTHORITY=/usr/oracle/.Xauthority
LC_MESSAGES=en_US
HOSTNAME=homer
LESSKEY=/etc/.less
LESSOPEN=|/usr/bin/lesspipe.sh %s
LANGUAGE=en_US:en
HISTIGNORE=[ ]*:&:bg:fg
KDEDIR=/usr
LESS=-MM
USER=oracle
LC_TIME=en_US
MACHTYPE=i586-mandrake-linux-gnu
OLDPWD=/mnt/cdrom
MAIL=/var/spool/mail/oracle
INPUTRC=/etc/inputrc
BASH_ENV=/usr/oracle/.bashrc
LANG=en
ORACLE_BASE=/usr/oraInventory
LC_NUMERIC=en_US
ORACLE_HOME=/usr/oracle
DISPLAY=localhost:0.0
LOGNAME=oracle
SHLVL=1
LC_CTYPE=en_US
SHELL=/bin/bash
USERNAME=
HOSTTYPE=i586
OSTYPE=linux-gnu
HISTSIZE=1000
TERM=xterm
HOME=/usr/oracle
PGDATA=/var/lib/pgsql/data
JRE_PATH=/usr/java/jre118
PATH=/bin:/usr/bin:/usr/local/bin:/usr/bin/X11:/usr/X11R6/bin:/usr/games:/usr/oracle/bin:/usr/local/jre/bin:/usr/oracle/bin
SECURE_LEVEL=4
LC_MONETARY=en_US
RPM_INSTALL_LANG=en
LC_COLLATE=en_US
_=/usr/bin/env

Similar Messages

  • RAC 10.2.0.1 install on AIX 5.3 fails on root.sh

    I am getting the following message when running root.sh during CRS 10.2.0.1 install on AIX 5.3 ML04:
    ./root.sh
    WARNING: directory '/oracle/product/10.2.0' is not owned by root
    WARNING: directory '/oracle/product' is not owned by root
    WARNING: directory '/oracle' is not owned by root
    Checking to see if Oracle CRS stack is already configured
    Setting the permissions on OCR backup directory
    Setting up NS directories
    exec(): 0509-036 Cannot load program /oracle/product/10.2.0/crs/bin/ocrconfig.bin because of the following errors:
    0509-150 Dependent module /oracle/product/10.2.0/crs/lib/libttsh10.a(shr_ttsh10.o) could not be loaded.
    0509-152 Member shr_ttsh10.o is not found in archive
    Failed to upgrade Oracle Cluster Registry configuration
    Does anyone have any ideas? Your help is greatly appreciated.

    Check the README and Metalink
    also does the file actually exist libttsh10
    Also check the gen in Inventry/logs to see if it genned OK

  • Oracle 10.2.0.1 client install during SLES10 AutoYast post-install

    Hello all,
    I'm stumped and could use a little help. I'm attempting to use the silent install method for the 10.2.0.1 Oracle client on a SLES10 SP2 via autoyast post install scripts. The script runs just fine if I use it to install after SLES10 has been completely installed. At first I suspected and environment issue, but I've doubled checked against the env during autoyast and post install completion env. Not sure what to check next, I've tried searching for minimum environment requirements for OUI, but found nothing.
    silentInstall2010-05-01_10-00-43AM.log reports:
    ** Error Dialog: OUI-10151:There was an error while loading library: areasQueries ***
    User Selected: S&top installation of this component only.
    java.io.IOException: No such file or directory
    This silent installation was unsuccessful.
    It was "generalQueries" until I added an ldconfig command in the script thinking something was wrong with the gcc env.
    Here is the script I'm using...
    #!/bin/bash
    BASEDIR=/installsvr/repos
    TMPDIR=/tmp/oracle_install
    HASORACLE=`grep $1 /etc/passwd`
    HASOINSTALL=`grep $2 /etc/group`
    if [ -z $HASORACLE ]
    then
    echo "Could not find an $1 account!"
    exit 1
    fi
    if [ -z $HASOINSTALL ]
    then
    echo "Could not find an $2 group!"
    exit 1
    fi
    if [ ! -f $BASEDIR/$3 ]
    then
    echo "Could not find file: $BASEDIR/$3"
    exit 1
    fi
    if [ ! -f $BASEDIR/$4 ]
    then
    echo "Could not find file: $BASEDIR/$4"
    exit 1
    fi
    FILENAME=`basename $3`
    # Setup install directories
    if [ ! -d /u01/app/oracle ]
    then
    mkdir -p /u01/app/oracle
    chown -R $1.$2 /u01
    chmod -R 775 /u01
    fi
    # Copy the install source
    # to a temp dir.
    su - $1 -c "mkdir $TMPDIR;cp $BASEDIR/$3 $TMPDIR/.;cd $TMPDIR;unzip $FILENAME >/dev/null 2>&1;rm -f $FILENAME"
    # Find the location of the "runInstaller"
    # and kickoff the command
    RUNINSTALLER=`find $TMPDIR -name runInstaller | head -1`
    RUNINSTALLERDIR=`dirname $RUNINSTALLER`
    if [ ! -d $RUNINSTALLERDIR ]
    then
    echo "Could not find directory: $RUNINSTALLERDIR"
    exit 1
    fi
    # Setup ldconfig prior to install run
    ldconfig
    su - $1 -c "TERM=xterm;cd $RUNINSTALLERDIR;./runInstaller -ignoreSysPrereqs -silent -responseFile $BASEDIR/$4"
    # Run a loop and wait for the
    # installer process to finish
    PROC=`ps -ef | grep "\-ignoreSysPrereqs \-silent \-responseFile" | awk '{print $2}'`
    while [ ! -z $PROC ]
    do
    echo "...waiting for oracle installer to finish..."
    sleep 5
    PROC=`ps -ef | grep "\-ignoreSysPrereqs \-silent \-responseFile" | awk '{print $2}'`
    done
    # Grace Period
    sleep 5
    # Cleanup
    rm -rf $TMPDIR
    # Finish
    echo "...running orainstRoot.sh"
    /u01/app/oracle/oraInventory/orainstRoot.sh
    echo "...running root.sh"
    echo "" | /u01/app/oracle/product/10.2.0/client/root.sh
    Thanks in advance,
    Chris

    Found the issue...it was in the script. Evidently, the process checker only worked after the OS install had completed and the script was run manually. I changed that section to...
    PROC=`ps -ef | grep ^$1 | tail -1 | awk '{print $2}'`
    while [ ! -z "$PROC" ]
    do
    echo "-- installOracle.sh: waiting for oracle installer to finish --"
    sleep 5
    PROC=`ps -ef | grep ^$1 | tail -1 | awk '{print $2}'`
    done
    ...and all is well.
    - Chris

  • ETL and DAC clustering for high availaibility in OBIAPPS installed in AIX

    Hello Gurus
    Could you let me know how to configure teh clustering and failover for Informatica and DAC for obiapps 7963 installed in AIX 6.1 . We have license for HACMP cluster.
    Any guide to help me out. I coudn't find it in obiapps deplyment guide.

    Unlike BI the Informatica and DAC services are based on database. Assuming your database is up and running all the time can you tell me the scenario(s) to bring down these Informatica and DAC services?
    If my assumptions are correct you wont have any?
    I would suggest to make sure your database is up and running all the time so that Informatica and DAC are up and running.
    More over you have to fix manually for any load issues and you wont get benefit from cluster.
    Just in case you are going with Cluster then you need to take care of DAC refresh dates.. do you have any plan for the same?
    Appreciate if you share about how you end up with this.
    If I'm wring correct me, infact I too was waiting for responses for this post :)
    Edited by: Srini VEERAVALLI on Dec 26, 2012 9:49 PM

  • Can ME be installed on AIX?

    Hi,
    I am new to ME. The installation guide is suggesting that ME cannot be installed on AIX. We don't have windows or HP or Linux in our environment. Please help me.
    Thanks,

    Hi Sharif,
    I doubt anyone tried that, and me neither. So saying just in theory, it may be possible to deploy ME on AIX. But on your on risk, of course. What is the purpose of this? You know, there will be no support from SAP for such installation... You can try it just to play, I think
    Anyway, to deploy SAP ME you need an SCA being prepared. It is done by installers which are supported only on mentioned platforms. So you may try to go through supported installation (anywhere on Windows/Linux/HP-UX) until you have the SCA, and try to deploy it. Again, this is all in theory. It may work, but what are you going to do further with that unsupported installation?
    Regards
    Anton

  • Lenovo Yoga 11 failed during the factory re-install of windows...now doesn't boot at all

    Hi guys,  thanks for providing this forum !!
    Whilst preparing my Yoga 11 for a clean and for sale, I decided that it was a good idea to clean the PC by doing a complete 'factory settings' re-install of the Windows 8 RT software.   I started this process just before bed, and the message that said this would take several hours, so I figured it would be finished by morning.
    I was met this morning with the PC in a crashed state.  It was non-respondant and just sat on the Lenovo boot screen, with no activity to the progress.
    I pressed the on off button for 10 seconds and hard booted the machine.   This now attempts to boot, although has obviously crashed part way during the windows re-install process.   The message I get on screen now states
    'The computer restarted unexpectedly or encountered an unexpected error.  WIndows installation cannot proceed.  To install windows click 'OK' to restart the computer, and then restart the installation'
    I can no longer boot to windows, and I just receive the message above. 
    I do not have an install disc...I assume the files are on a recovery partition.   Is there a boot / recovery / safe mode menu for the Yoga, that will allow me to recover this Yoga to it's factory state ??
    Kind Regards
    smiley.
    Solved!
    Go to Solution.

    I think he just left the thread without sharing his information. How rude.
    Until I discovered the green section with a link:
    Solved! Go to Solution.
    Easy to miss for a newcomer.

  • Should I install a private JRE with my application.

    I confused on the need for the java_home environment variable. Is this used just for java applications or by the JVM too. The latter would seem a problem.
    For example, I want to install an application that uses JRE 1.5 or greater. If an older application is later installs an older JRE and modifies the java_home variable to match (on a users machine), my application will not run. Therefore, should I just install my own JRE in a private folder and use that instead or will that be affected by the changed java_home variable?
    This seems worse than MS's "DLL Hell"?
    Thanks in advance

    AFAIK, Java itself (java.exe, etc) does not reference any "javahome" type environment variable. I ran Java programs without that environment variable for quite a while.
    Realize that effective with Java version 5u6 (1.5.0_06) there are restrictions imposed on applets concerning which Java version will run them. See this document:
    http://java.sun.com/javase/6/webnotes/family-clsid.html
    For Java applications, you can completely control what version Java is used for execution by specifying a full path to the java.exe program of the version you want used. If you want to use a Java version other than whatever one the user has installed as the default version (on Windows and Solaris), you should provide a private JRE for the application.

  • Request to provide me the link to install java (jdk&jre) vista32 bit

    Hi All,
    Request to provide me the link where I can find software to install jdk and jre for my windows vista-32 bit machine.
    Appreciate your help.
    Regards,
    Madhu K.

    Maddy wrote:
    ... link where I can find software to install jdk and jre for my windows vista-32 bit machine.as always the latest Java SE jre is available from http://java.com
    Java SE JDK 6 and 7 are available from http://www.oracle.com/technetwork/java/javase/downloads/index.html
    but the fact that you could not find that yourself does not bode well for your programming career...

  • JDK during Oracle 9.2.0.1 install on AIX

    Does anyone know why the Oracle installer for 9.2.0.1 AIX 5L requires specification of a '1.3.1' JDK.
    Doesn't Oracle installer use and install its own JDK?
    Does this field need to be entered with something legitimate? I have JDK 1.3.0 installed and I do not want to have another JDK installed if I can help it.
    I do not plan on running any other Java apps on this AIX machine.
    Any help would be appreciated.
    Thanks!
    -m

    最后看到一个中文帖子中的回复,心就凉了。一比较文件大小,发现是以前下载oracle 9i时下载错了 。1、Oracle9i Database Release 2 Enterprise/Standard Edition for AIX 对应4.3.3
    2、Oracle9i Database Release 2 Enterprise/Standard Edition for AIX-Based 5L systems 对应5.X以上版本
    比较一下文件名和文件的大小,我查了一下OTN上面的你看看,
    Oracle9i Database Release 2 Enterprise/Standard Edition for AIX - Based 4.3.3 Systems (64-bit)
    server_9201_AIX64_Disk1.cpio.gz (523,877,469 bytes)
    server_9201_AIX64_Disk2.cpio.gz (629,437,482 bytes)
    server_9201_AIX64_Disk3.cpio.gz (620,877,880 bytes)
    server_9201_AIX64_Disk4.cpio.gz (221,321,393 bytes)
    Oracle9i Database Release 2 Enterprise/Standard Edition for AIX- Based 5L Systems
    server_9201_AIX5L_Disk1.cpio.gz (516,923,899 bytes)
    server_9201_AIX5L_Disk2.cpio.gz (644,157,620 bytes)
    server_9201_AIX5L_Disk3.cpio.gz (618,906,723 bytes)
    server_9201_AIX5L_Disk4.cpio.gz (176,610,584 bytes)
    应该下载第二个,结果下载了第一个,(两种安装文件的文件名都相同,只能从文件大小上分别,真黑!)
    现在我先重新下载,再解压安装再看看。
    唉~~这真是血的教训,希望后面的鸟儿们引以为戒,下载时千万得看仔细了。
    I found it on a chinese forum.but it dosn't solve this prob.
    i uninstall vsd,then pass the rootpre.sh check.
    but still cannot make and link.what shall i do then?
    Edited by: user10759297 on 2009-12-2 上午3:10

  • TNS Listener Error During CE 7.2 Install Phase "Import Java Dump"

    Hi All,
    We are installing a new CE 7.2 system on AIX 6.1 with Oracle 10.2.0.4
    (system name JDQ). We are receiving the following error during
    installation phase "Import Java Dump:"
    Oct 11, 2010 12:44:50 PM com.sap.inst.dbtools
    [Thread[main,5,main]] Fatal:
    com.sap.inst.common.exception.DBConnectionException:
    java.sql.SQLException: Listener refused the connection with the
    following error:
    ORA-12505, TNS:listener does not currently know of SID given in connect
    descriptor
    at com.sap.inst.common.db.DBConnection.connect
    (DBConnection.java:157)
    at com.sap.inst.jload.Jload.main(Jload.java:226)
    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 com.sap.engine.offline.OfflineToolStart.main
    (OfflineToolStart.java:161)
    We chose "Typical" for the installation type and sapisnt chose port
    1527 for the Oracle listener port by default. We are installing JDQ on
    a server where other SAP instances are already installed.
    Unfortunately, port 1527 is already in use by one of the other SAP
    systems for its Oracle listener. We have tried the following to
    resolve the error:
    1) Changed listener port for JDQ
    a. Changed the following files for JDQ to use port 1530 instead of
    1527:
    $ORACLE_HOME/network/admin/listener.ora
    $ORACLE_HOME/network/admin/tnsnames.ora
    /sapmnt/JDQ/profile/oracle/tnsnames.ora
    b. Restarted the JDQ database and listener, then clicked Retry
    c. Did not work. Exited and restarted the install, but this did
    not work, either.
    2) Changed listener name for JDQ
    a. Changed the following files for JDQ to use listener
    name "LISTENER_JDQ" instead of the default name of "LISTENER":
    $ORACLE_HOME/network/admin/listener.ora
    b. Restarted the JDQ database and listener, then clicked Retry
    c. Did not work. Exited and restarted the install, but this did
    not work, either.
    d. Changed the listener name back to "LISTENER" and restarted the
    DB and listener
    3) Changed installation files containing port 1527
    It looks like the installation saves the input parameters in files in
    the instllation directory. After we changed the JDQ environment to use
    the 1530 port, we thought maybe the install was getting 1527 from one
    of the installation files. Therefore we tried the following:
    a. Used command "find . -xdev -type f -exec grep -l -w 1527 {} \;"
    to obtain a list of files containing port 1527.
    b. Backed up these files
    c. Edited these files, changing 1527 to 1530. Files modified
    include the following:
    control.xml
    inifile.2.xml
    inifile.3.xml
    inifile.xml
    keydb.2.xml
    keydb.xml
    summary.html
    d. Clicked Retry, but still got the error
    e. Exited the installlation and restarted it. We are still
    getting the error.
    4) I know that for Java systems, the listener port is stored in the
    Secure Store. The SecStore.key and SecStore.properties files have been
    installed in directory /usr/sap/JDQ/SYS/global/security/data; however,
    configtool does not yet exist under /usr/sap/JDQ/J01; therefore I
    cannot see whether port 1527 has been placed in the Secure Store.
    Therefore, we did not take any action here.
    What do we need to do to resolve the error?
    Thanks in advance for any help you can provide.
    Tommye

    HI ,
    Could you please let us know how did you edit the secstore file without configtool ? How did you resolve the issue? I am facing the exact issue now..Please advice .
    Regards,
    Nibu Antony

  • Error during J2EE installation on oracle and AIX 5.1

    I am getting the following error during "Load JAVA database Content" Phase. We are running on AIX 5.1 oracle 9.205 and JDK 1.4.2 :-
    Mar 10, 2005 1:16:26 PM com.sap.inst.jload.Jload main
    SEVERE: couldn't connect to DB
    java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
    ERROR      2005-03-10 13:16:26
               CJSlibModule::writeError_impl()
    CJS-20065  Execution of JLoad tool '/usr/java14_64/bin/java '-classpath' './sharedlib/antlr.jar:./sharedlib/exception.jar:./sharedlib/jddi.jar:./sharedlib/jload.jar:./sharedlib/logging.jar:./sharedlib/offlineconfiguration.jar:./sharedlib/opensqlsta.jar:./sharedlib/tc_sec_secstorefs.jar:/oracle/POX/920_64/jdbc/lib/classes12.jar:/sapmnt/POX/global/security/lib/tools/iaik_jce_export.jar:/sapmnt/POX/global/security/lib/tools/iaik_jsse.jar:/sapmnt/POX/global/security/lib/tools/iaik_smime.jar:/sapmnt/POX/global/security/lib/tools/iaik_ssl.jar:/sapmnt/POX/global/security/lib/tools/w3c_http.jar' '-showversion' '-Xmx512m' 'com.sap.inst.jload.Jload' '-sec' 'POX,jdbc/pool/POX,/sapmnt/POX/global/security/data/SecStore.properties,/sapmnt/POX/global/security/data/SecStore.key' '-dataDir' '/install/sap/v6.4/sap_web_as_java/J2EE_OSINDEP/J2EE-ENG/JDMP' '-job' '/tmp/sapinst_instdir/sapinst_instdir/NW04SR1/WEBAS_JAVA/CENTRAL/DEFAULT/IMPORT.XML' '-log' '/tmp/sapinst_instdir/sapinst_instdir/NW04SR1/WEBAS_JAVA/CENTRAL/DEFAULT/jload.log'' aborts with returncode 1. Check '/tmp/sapinst_instdir/sapinst_instdir/NW04SR1/WEBAS_JAVA/CENTRAL/DEFAULT/jload.log' and '/tmp/sapinst_instdir/sapinst_instdir/NW04SR1/WEBAS_JAVA/CENTRAL/DEFAULT/jload.java.log' for more information.
    Any help will be great,
    Regards,
    Mike

    Hi Mike
    please make sure that the connection to the database is working(R3trans -d -> trans.log). Additionally check if the Oracle listener is running (lsnrctl status) and the configuration files (listener.ora and tnsnames.ora) contain the correct hostname.
    Hope it helps, I had a similar problem & it was due to the Oracle listener not started up, problem solved after I started the listener & re-run the installation.
    Thanks & Rgds,
    Abhishek

  • Cannot install Office 2013 during task seqeunce after installing R2

    Hi,
    Since we installed SCCM 2012 R2, I have not been able to install Office in my baseline captures using a task sequence (64-bit OS). Ronni Pederson suggested using an Application rather than a Package but in his example, the application is being pushed rather
    than deployed during OSD. Either way, his solution doesn't work for me. Office 2013 does install on my Windows 7 SP1 32-bit capture without any errors (same package).
    I saw another suggestion that recommended using a wrapper script in a package. When I tried this, I used Task Manager to verify that application was installing and I could see msiexec running. After about 10 minutes, SCCM seems to be waiting for feedback
    from the application which never happens. The task sequence fails and I can see log messages stating that it's Waiting for job status. It repeats this message for about 20 minutes and then fails. The wrapper script seems to have the best results but still
    doesn't install Office without errors. When I logged in as administrator, I could see that Office looks to be installed. I tried launching a few of the apps and they are working so I don't really understand why this installation doesn't work properly.
    Prior to installing R2 on SCCM 2012, this was not a problem. I installed Office 2013 via my capture task sequences many times without any problems. The only thing I can find through research is to use an Application object or use a Package object with a
    wrapper script. I couldn't find any other suggestions.
    Does anybody have any other ideas?
    Thanks,
    Rob

    Before I can name any ideas, I need to know what's going wrong. Did you follow all the log files? I would start by looking at the installation log files of Office (%windir%\Temp) and see if it's indeed ending successful. If it does then continue to the
    ConfigMgr log files (App*.log for application, or exempt.log for package).
    My Blog: http://www.petervanderwoude.nl/
    Follow me on twitter: pvanderwoude

  • Error during configuration process while installing obiee 11.1.1.7.0 in windows server 2012

    HI..
    I'm having an issue while installing obiee 11g(11.1.1.7.0) in windows server 2012 and using the database as ms sql server 2008. During configuration process after the installation process is completed , here the process is stopped at "Step:executing opmnctl start configuration_obisch1" status "failed"
    Here is the error:
    Error
        opmnctl task failed
        Step Executing: opmnctl start coreapplication_obisch1 failed
        Configuration Action "Executing opmnctl start coreapplication_obisch1 " has failed. please check log files...
    any help would be great
    thanks..

    Friend,
    Installer file size is:
    Size: *1.23 GB (1,323,085,837 bytes).*
    Size on disk: *1.23 GB (1,323,089,920 bytes).*
    I tested also disabling antivirus on my PC and disconnect the power cord before starting the installation of JDeveloper. In both tests the result was the same.
    Some additional recommendations to solve this case.
    Thank you for supporting.
    Edited by: Luis_vkacito on Nov 15, 2012 6:48 AM

  • How do I overcome the error 7 during Premier Elements 13 install? "cannot install on 64-bit system"

    I purchased and downloaded Adobe Premier Elements 13 and when I try to install the program I get error code 7 that it cannot install on 64-bit system. However the system requirements for the program says it is supported on windows 8; 64-bit.

    mardawn2
    Premiere Elements 13 on Windows 8 64 bit.
    Please download and install Premiere Elements 13 tryout files from the following web site and insert your purchased serial number in them during installation. Often this route is preferred if there are problems with alternative routes to obtain installation files for the program.
    Adobe Photoshop Elements 13 Direct Download Links, Premiere too | ProDesignTools
    In order to avoid Access Denied message, please follow carefully the "Note: Very Important Instructions" on the web page.
    The source will allow you to select carefully the installation files that should be used for the 32 bit or 64 bit computer environment.
    We will be watching for your progress.
    Any questions or need clarification, please do not hesitate to ask.
    Thank you.
    ATR

  • Install on AIX 6.1 SP3: Exception thrown while loading wl_management_internal1

    Hello,
    I have the following exception when running WLS 6.1 SP 3 on AIX 4.3.3, any idea?
    <Exception thrown while loading wl_management_internal1:
    java.lang.NullPointerException
    java.lang.NullPointerException
    at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:158)
    at $Proxy64.getJ2EEApplicationDescriptor(Unknown Source)
    at weblogic.j2ee.Application.getAppDescriptor(Application.java(Compiled
    Code))
    at weblogic.j2ee.Component.getModuleMBean(Component.java(Compiled
    Code))
    at weblogic.j2ee.Component.getAltDDFile(Component.java(Compiled Code))
    at
    weblogic.servlet.internal.WebAppServletContext.<init>(WebAppServletContext.java(Compiled
    Code))
    at
    weblogic.servlet.internal.HttpServer.loadWebApp(HttpServer.java(Compiled Code))
    at weblogic.j2ee.WebAppComponent.deploy(WebAppComponent.java(Compiled
    Code))
    at weblogic.j2ee.Application.addComponent(Application.java:170)
    at weblogic.j2ee.J2EEService.addDeployment(J2EEService.java:117)
    at
    weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(DeploymentTarget.java:360)
    at
    weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(DeploymentTarget.java:150)
    at
    weblogic.management.mbeans.custom.WebServer.addWebDeployment(WebServer.java:76)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java(Compiled
    Code))
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java(Compiled
    Code))
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:360)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1557)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1525)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java(Compiled Code))
    at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:209)
    at $Proxy24.addWebDeployment(Unknown Source)
    at
    weblogic.management.configuration.WebServerMBean_CachingStub.addWebDeployment(WebServerMBean_CachingStub.java:1202)
    at
    weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(DeploymentTarget.java:346)
    at
    weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(DeploymentTarget.java:150)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java(Compiled
    Code))
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java(Compiled
    Code))
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:360)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1557)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1525)
    at
    weblogic.management.internal.RemoteMBeanServerImpl_WLSkel.invoke(Unknown Source)
    at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:305)
    at
    weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:274)
    at
    weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:22)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)

    Were you installing SP3 or starting WLS after the install?
    What do you see when you run:
    $ which java
    $ java -version
    Does the OS have patch 9 -- I believe it's PTF 9 in AIX lingo.
    AIX 4.3.3.9
    Wayne Scott
    Thierry wrote:
    Hello,
    I have the following exception when running WLS 6.1 SP 3 on AIX 4.3.3, any idea?
    <Exception thrown while loading wl_management_internal1:
    java.lang.NullPointerException
    java.lang.NullPointerException
    at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:158)
    at $Proxy64.getJ2EEApplicationDescriptor(Unknown Source)
    at weblogic.j2ee.Application.getAppDescriptor(Application.java(Compiled
    Code))
    at weblogic.j2ee.Component.getModuleMBean(Component.java(Compiled
    Code))
    at weblogic.j2ee.Component.getAltDDFile(Component.java(Compiled Code))
    at
    weblogic.servlet.internal.WebAppServletContext.<init>(WebAppServletContext.java(Compiled
    Code))
    at
    weblogic.servlet.internal.HttpServer.loadWebApp(HttpServer.java(Compiled Code))
    at weblogic.j2ee.WebAppComponent.deploy(WebAppComponent.java(Compiled
    Code))
    at weblogic.j2ee.Application.addComponent(Application.java:170)
    at weblogic.j2ee.J2EEService.addDeployment(J2EEService.java:117)
    at
    weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(DeploymentTarget.java:360)
    at
    weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(DeploymentTarget.java:150)
    at
    weblogic.management.mbeans.custom.WebServer.addWebDeployment(WebServer.java:76)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java(Compiled
    Code))
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java(Compiled
    Code))
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:360)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1557)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1525)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java(Compiled Code))
    at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:209)
    at $Proxy24.addWebDeployment(Unknown Source)
    at
    weblogic.management.configuration.WebServerMBean_CachingStub.addWebDeployment(WebServerMBean_CachingStub.java:1202)
    at
    weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(DeploymentTarget.java:346)
    at
    weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(DeploymentTarget.java:150)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java(Compiled
    Code))
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java(Compiled
    Code))
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:360)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1557)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1525)
    at
    weblogic.management.internal.RemoteMBeanServerImpl_WLSkel.invoke(Unknown Source)
    at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:305)
    at
    weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:274)
    at
    weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:22)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)

Maybe you are looking for

  • Transient bool VO attribute not displaying correctly in table on data fetch

    Hello Forum, I have a 'select all' button that programmatically sets a boolean transient attribute on a view object to 'true'. The code to iterate through all the rows in the VO is in a ViewObjectImpl subclass and looks like this:     public int setA

  • Install instructions for CS6 upgrade for WIndows missing - in what order should files be run?

    After over 14 days of dealing with the idiots at Adobe Support, opening and closing of 2 cases multiple times, promised emails not being sent (and being blamed for having my email set up to filter out Adobe emails), attempts to charge me for the alre

  • Help with contacts - I'm new and stupid

    Looking at the desription for the Blackberry Desktop Software gets me confused.  I downloaded the latest version 4.6 and I don't see anywhere to "Synchronize your email and organizer information (calendar, contacts, memos and tasks) between your Blac

  • Oracle Installation with out GUI?

    we got new Solaris box and we don't have Sun Monitor. So, we are using telnet sessions to connect. Now we need install Oracle 9i/10g on the box. Is Universal installer require X-Windows ?? Is it possible to install from Command line prompt? If Yes --

  • Firefox locks my computer error message " could not load XPCOM. "

    window7 starts like normal . when I go to my browser I get the can't load XPCOM. message it will not let me on the net // it will not let me use IE for browser says same message . google maybe in this puzzle as well