Error "couldnt find matching filesystem: label/: on linux redhat startup

hello
i just restart the database server , after that i got an error message "couldnt find matching filesystem: label/"
while starting up the server .
Redhat 3 linux 2.4.21-40.EL installed on the server .
note:
we not change any device or change the fstab file .
any solution ?
thanks
amjad

Hello
i have two Disks .
for fstab file :
LABEL=/ / ext3 defaults 1 1
LABEL=/boot /boot ext3 defaults 1 2
none /dev/pts devpts gid=5,mode=620 0 0
none /proc proc defaults 0 0
none /dev/shm tmpfs defaults 0 0
/dev/sda2 swap swap defaults 0 0
/dev/cdrom /mnt/cdrom udf,iso9660 noauto,owner,kudzu,ro 0 0
/dev/fd0 /mnt/floppy auto noauto,owner,kudzu 0 0
/dev/sdb /home1 ext2 defaults 1 1
/opt/swapfile          swap               swap     defaults     0 0
for cat /boot/grub/grub.conf
the /boot is not mounted
for fdisk -l output :
Disk /dev/sda : 36.76GB
255 heads , 63 sectors /track , 4462 cylinders
Device Boot Start End Blocks ID System
/dev/sda1 * 1 13 104391 83 Linux
/dev/sda2 14 274 2096482+ 82 Linux Swap
/dev/sda3 275 4462 33640110 83 Linux
Disk /dev/sdb : 36.76GB
255 heads , 63 sectors /track , 4462 cylinders
Disk /dev/sdb doesn't contain a valid partition table.
for df -h output
/dev/sda3 mounted on /
regards

Similar Messages

  • Error with finding the correct LABEL.ASC file during install

    I am installing the SAPNW2004sJavaSP9_Trial and at the stage where SAPIns perform the "software package check" i am asked to browse to the package location and I have tried all locations on the extracted downloads and I keep getting the error "........ ( look for label SAP:JMIG:700:::*)
    I have browsed to all the locations where there is a "label.asc" file and there are quite a few of them. I am not able to go past this point.
    Please help
    Thanks
    Chuks

    Lydia,
    i discovered that I probably didn't get a full download of the install files. Someone sent me the ftp links to the download site and i got a full download and then installed properly. I didn't see that issue again. Here's the link below:
    ftp://ftp.sap.com/pub/sdn/devkits/netweaver/java/SAPNW2004sJavaSP9_Trial.part1.rar
    ftp://ftp.sap.com/pub/sdn/devkits/netweaver/java/SAPNW2004sJavaSP9_Trial.part2.rar
    ftp://ftp.sap.com/pub/sdn/devkits/netweaver/java/SAPNW2004sJavaSP9_IDE.rar

  • Unable to find matching navigation case from view ID.  Error 404

    Hi All,
    I basically wanted to jumpstart my ADF exploration so I am following the tutorial at this link. [http://www.oracle.com/technetwork/developer-tools/jdev/ccset22-all-099343.html]
    Everything looks good but when I click the Edit Button, I am encountering an error. What I did was I change the logging mechanism into a FINER in my WLS and from the logs,
    it prints below messages.
    <NavigationHandlerImpl> <getViewId> "JSF1013: Unable to find matching navigation case from view ID '/orders-flow/editOrders' for outcome 'save' and action 'save'
    <ViewHandlerImpl> <executePageToBuildView> About to execute view /orders-flow/editOrders
    <ViewHandlerImpl> <executePageToBuildView> Before dispacthMessage to viewId /orders-flow/editOrders
    <ViewHandlerImpl> <executePageToBuildView> After dispacthMessage to viewId /orders-flow/editOrdersI checked out the taskflow and it is basically calling a task-flow-return component.
    I followed everything but I cant make this example work... Any idea why? I checked out the DB and I notice that it has commited my Edit Transaction but I am getting a 404 on my page. Please help. Thanks.

    Hi Frank,
    I think I got the save control flow case.
    Can you help me check please if I miss something? I uploaded my project at this link. [http://www.4shared.com/file/QFcofTfj/BrowseEditApp.html]
    I am quite not sure if I miss something but I have done this project twice already but got the same result.
    Thanks
    Edited by: Marky on 13.4.2011 5:59

  • Error: Unable to find matching navigation case

    Hi all, after I wrote this thread:
    ui:include if I pass a variable, some one can tell me some tips?
    I do some step forward and now the application returns this error:
    Unable to find matching navigation case with from-view-id '/include.xhtml' for action '#{stiliPortaleController.prepareEdit}' with outcome 'logic.action(WEB-INF/jspf/stiliPortale/Edit.xhtml)'
    Can some one help me?
    The include.xhtml is on "web root" and the second page "Edit.xhtml" is on WEB-INF/jspf/stiliPortale/Edit.xhtml... the strange thing (for me that I'm newbie) is that I have these two method:
         public String include_page(){
    String value="WEB-INF/jspf/stiliPortale/List.xhtml";
         setPageIncluded(value);
         return "include";
    public String action(String value)
    setPageIncluded(value);
    return "include";
    and the first method works properly the second nope!
    The difference is that the first method is called in a JSF page, the second in a managed bean!
    What shoud I do?
    Thank you for your help!

    As usual I continued to search the solution of my problem and I find something about the Fluent navigation.
    Now I add in my faces-config.xml this code:
    <navigation-rule>
    <from-view-id>/include.xhtml</from-view-id>
    <navigation-case>
    <from-action>#{stiliPortaleController.prepareEdit}</from-action>
    <from-outcome>logic.action('WEB-INF/jspf/stiliPortale/Edit.xhtml')</from-outcome>
    <to-view-id>/include.xhtml</to-view-id>
    </navigation-case>
    </navigation-rule>
    ...and now the error disappeared but... the page doesn't change!
    The code is this, index.xhtml I have:
                        <h:commandLink action="#{ logic.action('WEB-INF/jspf/stiliPortale/List.xhtml') }" value="Show All StiliPortale Items"/>
    ...and it's work recalling this method in logic.class:
    public  void setPageIncluded(String pageIncluded)
    this.pageIncluded=pageIncluded;
    public  String action(String value)
            setPageIncluded(value);
        return "include";
    ...and in include.xhtml I have this code:
    <ui:include src="#{logic.pageIncluded}"/>
    ...and, as I said, It works properly because the application open the page include.xhtml included the List.xhtml.
    Now the problem is the in the List.xhtml I have this link:
                                <h:commandLink action="#{stiliPortaleController.prepareEdit}" value="#{bundle.ListStiliPortaleEditLink}"/>
    ...and in StiliPortaleController.java I have this method:
        public String prepareEdit() {
            current = (StiliPortale) getItems().getRowData();
            selectedItemIndex = pagination.getPageFirstItem() + getItems().getRowIndex();
    return "logic.action('WEB-INF/jspf/stiliPortale/Edit.xhtml')";
    ...I think the problem is that when I recall the method action the second time it initialize a new logic object and the include.xhtml take the variable from the first object! Could it be correct?
    If it is correct, how can I resolve this new problem?
    Thank you for your help!

  • Installation error:  Cannot find a J2SE SDK installed at path C:\Program Fi

    I am installing latest version of SQL Developer, Release 1.2. I have Sun Java 2 Standard Edition Version 1.5.0 (build 1.5.0_10-b03). When I browse and select the java.exe found it comes up with error: Cannot find a J2SE SDK installed at patch
    C:\Program Files\Java\jre1.5.0_10
    I am installing the version I downloaded for Windows systems with JDK1.5.
    I have tried on two different machines.
    Any ideas?

    This is going to seem loooong, but comprehensive.
    I'd initially always suggest using the bundled
    package, since that's supposed to be a tested and
    proven combination.You know what, I'm gonna be mighty surprised if you're implying that Oracle hasn't 'tested and proven' the releases at http://www.oracle.com./technology/software/products/sql/index.html other than the first 77 MB download labeled Oracle SQL Developer for Windows... :)
    After having problems with a graphics card for
    example, installing the latest JDK might be
    indicated.Huh?!? Not a clue what you're talkin' 'bout! :S
    It's also easy for users who don't know which Java
    version to download, or even where to find it! You
    guys have proven that: although it's stated you need
    .First of all, it says right there on the download page (http://www.oracle.com./technology/software/products/sql/index.html) that:
    "JDK 1.5 (JDK 5.0) is required. This is the minimum JDK version required"
    And we've "proven that [..] although it's stated you need the JDK, [we]'ve tried running with the JRE" and have NOT been able to run the application. It just presents the user a dialog box to locate the 'SDK' manually and exits gracefully if you try to dismiss it. So, conclusively proven, the JDK (or as SQL Developer puts it, Java SDK) is required- QED.
    And given users might have several versions running
    on the same machine (I have half a dozen), sqldev
    could easily pick up a wrong version.And every JRE installation (atleast all of Sun's) make sure they update the default (via PATH and other required system variables) JRE point to the latest one installed. So if you have anything 1.5+ you're good to go; if not, you've got an incompatile JRE. Doesn't sound that hard to me!
    As for being bulky, even without the bundled JDK, it
    still is.Ya missed the point. Developers are making Java applications bulkier by including the JRE/JDK with their distributions. A SQL Developer release sans JDK is about 46 MB; with JDK that climbs to 77 MB (sizes quoted from download page linked above).
    Imagine what happens when you have, besides SQL Developer (JDK 1.5 included), some-cool-java-app that also includes the JRE/JDK it was built on; and then another-java-app that also includes a JRE/JDK... I bet JDeveloper also comes with a JDK bundled in. So, now you have FOUR copies of JRE/JDK (aside from the "have half a dozen" that probably installed themselves via Java Update Checker)!
    Here's the big picture, the savings in disk space would only be the beginning of your benefits. Here's a few others:
    - Class Data Sharing (http://java.sun.com/javase/6/docs/technotes/guides/vm/class-data-sharing.html) introduced in Java SE 5.0 provides for storing definitions of commonly used classes in a representation closer to machine code, even closer than bytecode, this reducing load and startup time. Plus all VM's launced using that particular distribution get to share the cache- Performace+ !!
    Running each app offa' it's own VM just causes multiple caches to be loaded. You just multiplied your losses! :(
    - Sun is currently working on a way to have applications simply inject into a running JVM. That way, there is no load and startup time for the JVM, just the time to load you app classes. Using different distros would completely defeat this!
    (The reason why this feature isn't out yet is because they're still trying to make it possible to specify hitherto VM configurations like security and logging as application configurations. Then there's also the issue of setting up class loading boundaries between applications.
    You say you don't have to bring over the VB runtime
    for each app? I remember in the 90's doing it all the
    time. Of course, being MS, now that's not necessary
    anymore, since it's "magical" Windows. I don't have
    any machine from Sun, but for sure they've got Java
    bundled with it, right?I don't believe you had to do that since VB 5; and that's because MS realized that they messed up on this very point upto then! Sun worked the simple solution to that into their deployment strategy- install only ONE runtime and run all apps off that. As for you're half-a-dozen, I think you can safely uninstall the five older versions; because, even today, people are running apps developed using JDK1.1 on Java SE 6.0!
    Again, I find the most logical difference between JRE
    and JDK being the debugger. As you say it yourself:
    JRE for end-users, who don't need to do any
    debugging.
    Now, sqldev is not just a table browser, but also for
    debugging PL/SQL. 1 + 1 = 2.I think it's a little naive to differentiate between the JRE and JDK on just the debugger! Aside from the obvious inclusion of a compiler, the JDK has several other tools for monitoring/managing the heap, threads and logging on the fly. There's also the Doclet API and Sun's javadoc implementation, dev interfaces for instrumenting the VM, native interfaces, ...
    And I reiterate, we're talkin' PL/SQL developers here. Why would I want to give a PL/SQL developer a Java Development Kit?!? ;|
    Nevertheless, as said in the other thread, if the
    team discloses how to circumvent the SDK check at
    startup, you can go ahead and use the JRE. In any
    case, you'd have to agree that won't work as
    out-of-the-box solution...You're right, it won't work like a standard Windows OOTB app. But, it WILL work as a Java OOTB that only mandates that there be a JRE available; just like the scores of Java apps out there- from tiny little Pong clones to large IDE's like NetBeans.
    BTW, don't even think about quoting Websphere/Rational/Eclipse as counter-arguments. They are the biggest offenders as far as this issue goes. And jikes is an abomination, a curse Sun must carry as a result to opening the VM Spec. But, I digress...

  • Configure: error: Cannot find php-config

    After security update 2008-002 for Leopard, the PHP module builder stops, because the PHP version running on the machine doesn't match the header files from the PHP-developer part. More info see: http://www.naquah.net/blog/dennis/2008/03/20/how-to-get-eaccelerator-working-aga in-after-installing-security-update-2008-0#comment-50
    After editing /usr/bin/php-config
    Change
    version="5.2.4" to version="5.2.5" and
    vernum="50204" to vernum="50205"
    and /usr/include/php/main/php_version.h
    Change
    #define PHPRELEASEVERSION 4 to #define PHPRELEASEVERSION 5
    #define PHP_VERSION "5.2.4" to #define PHP_VERSION "5.2.5" and
    #define PHPVERSIONID 50204 to #define PHPVERSIONID 50205
    the ./configure command stops with a:
    configure: error: Cannot find php-config. Please use --with-php-config=PATH
    even when explicitly specifying the php-config location, the ./configure --with-php-config=/usr/bin/php-config command still throws an identical error.
    The file is there, accessible and not empty:
    $ ls -l /usr/bin/php-config
    -r-xr-xr-x 1 root wheel 3031 22 mrt 21:44 /usr/bin/php-config
    $ head /usr/bin/php-config
    #! /bin/sh
    SED="/usr/bin/sed"
    prefix="/usr"
    exec_prefix="${prefix}"
    version="5.2.5"
    vernum="50205"
    include_dir="${prefix}/include/php"
    includes="-I$include_dir -I$include_dir/main -I$include_dir/TSRM -I$include_dir/Zend -I$include_dir/ext -I$include_dir/ext/date/lib"
    ldflags=" -L/usr/lib/mysql"
    Re installing Xcode 3.0 didn't solve the problem.
    What could be done to repair the (php) configure command, to allow me to build php modules again?

    On my installation I have both NVidia and mesa drivers installed, thus two sets of GL headers/libraries.
    For Mesa: SUNWxorg-mesa
    Nvidia: NVDAgraphics
    If you want to develop on your system you may want to install much more than just GL headers.
    Its a pity that Solaris packaging is not really flexible, so you better do a full install indeed...
    regards,
    __Fedor.

  • Rapidwiz - libXtst.so.6 error when installing EBS R12 on Oracle Linux 6.3

    Hello All,
    I am getting libXtst.so.6 error when installing EBS R12 on Oracle Linux 6.3
    I could not find the exact file to download. Can anyone of you help me to the proper location.
    Thanks in advance.

    987696 wrote:
    Hello All,
    I am getting libXtst.so.6 error when installing EBS R12 on Oracle Linux 6.3
    I could not find the exact file to download. Can anyone of you help me to the proper location.
    Thanks in advance.Please see these docs -- Search for "libXtst.so.6".
    Oracle E-Business Suite Installation and Upgrade Notes Release 12 (12.1.1) for Linux x86 [ID 761564.1]
    Oracle E-Business Suite Installation and Upgrade Notes Release 12 (12.1.1) for Linux x86-64 [ID 761566.1]
    Oracle Forms Upgrade to 10.1.2.3 fails with error /usr/lib/libXtst.so.6: undefined reference [ID 1120527.1]
    Thanks,
    Hussein

  • 4L (LaCie's LightScribe Labeler for Linux) : advice wished!

    As K3b Founder Sebastian Trueg said, "We're happy to see that LaCie is developing tools for Linux users, and are pleased to work with them to make it happen. With the LaCie LightScribe Labeler for Linux, [Linux] users now have access to the latest disc-labeling technology from LightScribe."
    http://www.k3b.org/
    I'm making the PKGBUILDs but some advice on the process would be helpfull
    So far, installed with those PKGBUILDs, 4L-gui launches on my Arch (but seems to lack some functionnality) and 4L-cli segfaults even if it prints the options.
    _Be aware that those PKGBUILD are not finished yet_
    LightScribe Host Software v1.4.113.1 for Linux
    # Contributor: kozaki <kozaki>
    pkgname=lightscribe
    pkgver=1.4.113.1
    pkgrel=1
    pkgdesc="LightScribe Host Software v1.4.113.1 for Linux"
    url="http://www.lacie.com/company/news/news.htm?id=10293"
    license=('custom')
    depends=('libstdc++5')
    makedepends=('rpmextract')
    depends=(rpmextract)
    source=(http://www.lacie.com/download/drivers/lightscribe-1.4.113.1-linux-2.6-intel.rpm)
    md5sums=('9a692c0fa12501598d5c495f028e2a3e')
    build() {
    # Extract RPM
    rpmextract.sh $pkgname-$pkgver-linux-2.6-intel.rpm
    # Copy binaries and data files
    install -d $startdir/pkg/etc
    install -d $startdir/pkg/usr/lib/lightscribe/{res,updates}
    # or : install -d $startdir/pkg/opt/lightscribe/{res,updates} but needs to modify etc/lightscribe.rc
    install -d $startdir/pkg/usr/share/doc
    cp etc/lightscribe.rc $startdir/pkg/etc
    cp usr/lib/liblightscribe.so $startdir/pkg/usr/lib
    cp usr/lib/liblightscribe.so.1 $startdir/pkg/usr/lib
    cp -R usr/lib/lightscribe/res $startdir/pkg/usr/lib/lightscribe
    cp usr/lib/lightscribe/updates/fallback.sh $startdir/pkg/usr/lib/lightscribe/updates
    find $startdir/pkg/usr/lib -type f -exec chmod 644 {} ;
    find $startdir/pkg/usr/lib -type d -exec chmod 755 {} ;
    chmod 755 $startdir/pkg/usr/lib/lightscribe/res/*
    chmod 755 $startdir/pkg/usr/lib/lightscribe/updates/fallback.sh
    cp usr/share/doc/lightscribeLicense.rtf $startdir/pkg/usr/share/doc
    LaCie's LightScribe Labeler for Linux
    # Contributor: kozaki <kozaki>
    pkgname=4l
    pkgver=1.0r6
    pkgrel=1
    pkgdesc="LaCie's LightScribe Labeler for Linux"
    url="http://www.lacie.com/company/news/news.htm?id=10293"
    license=('custom')
    depends=('fontconfig' 'lightscribe')
    makedepends=('rpmextract')
    source=(http://www.lacie.com/download/drivers/4L-1.0-r6.i586.rpm)
    md5sums=('11fc8b2daeaed2b61a567056413bdefd')
    build() {
    # Extract RPM
    rpmextract.sh 4L-1.0-r6.i586.rpm
    # Copy binaries and data files
    install -d $startdir/pkg/opt/4L/{doc,templates,translations}
    install -d $startdir/pkg/usr/bin
    cp usr/4L/4L-cli $startdir/pkg/opt/4L
    cp usr/4L/4L-gui $startdir/pkg/opt/4L
    cp usr/4L/lacie_website.sh $startdir/pkg/opt/4L
    cp usr/4L/doc/4L_User_Manual.pdf $startdir/pkg/opt/4L/doc
    cp -R usr/4L/templates $startdir/pkg/opt/4L
    cp -R usr/4L/translations $startdir/pkg/opt/4L
    find $startdir/pkg/opt/4L -type f -exec chmod 644 {} ;
    find $startdir/pkg/opt/4L -type d -exec chmod 755 {} ; # what about the bit SUID on 4L-cli ?
    chmod +x $startdir/pkg/opt/4L/4L-cli
    chmod +x $startdir/pkg/opt/4L/4L-gui
    ln -s /opt/4L/4L-cli $startdir/pkg/usr/bin/4L-cli
    ln -s /opt/4L/4L-gui $startdir/pkg/usr/bin/4L-gui
    etc/lightscribe.rc :
    ResourceDir=/usr/lib/lightscribe/res;
    UpdateScriptDir=/usr/lib/lightscribe/updates;
    4L-1.0-r6.i586.rpm has 4L-cli with a bit SUID :
    -rwsr-xr-x 1 kozaki users 60540 aoû 10 15:20 4L-cli

    www.k3b.org wrote:Although [LaCie] wanted to support the development of an Open-Source software, licensing issues always stood in the way of that. Now they released the Closed-Source but free LightScribe Labeling application 4L for Linux and it is about time Linux users get to use LightScribe
    Remember lightscribe is HP patented.
    Romashka > Hi
    Yeap, it seems using LightScribe on Arch may be a little more complicated than just to put the .rpm's files into AL...
    I think I missed some dependencies; may someone confirm this ?
    $ ldd /usr/bin/4L-cli
    linux-gate.so.1 =>  (0xffffe000)    liblightscribe.so.1 => /usr/lib/liblightscribe.so.1 (0xb7e5d000)
        libpthread.so.0 => /lib/libpthread.so.0 (0xb7e4a000)
        libstdc++.so.6 => /usr/lib/libstdc++.so.6 (0xb7d69000)
        libm.so.6 => /lib/libm.so.6 (0xb7d44000)
        libgcc_s.so.1 => /usr/lib/libgcc_s.so.1 (0xb7d38000)
        libc.so.6 => /lib/libc.so.6 (0xb7c17000)
        libstdc++.so.5 => /usr/lib/libstdc++.so.5 (0xb7b5f000)
        /lib/ld-linux.so.2 (0xb7fd7000)
    $ ldd /usr/bin/4L-gui
    linux-gate.so.1 =>  (0xffffe000)
        libXi.so.6 => /usr/lib/libXi.so.6 (0xb7ede000)
        libXrender.so.1 => /usr/lib/libXrender.so.1 (0xb7ed5000)
        libXrandr.so.2 => /usr/lib/libXrandr.so.2 (0xb7ed1000)
        libXcursor.so.1 => /usr/lib/libXcursor.so.1 (0xb7ec8000)
        libXinerama.so.1 => /usr/lib/libXinerama.so.1 (0xb7ec4000)
        libfreetype.so.6 => /usr/lib/libfreetype.so.6 (0xb7e4c000)
        libfontconfig.so.1 => /usr/lib/libfontconfig.so.1 (0xb7e22000)
        libXext.so.6 => /usr/lib/libXext.so.6 (0xb7e14000)
        libX11.so.6 => /usr/lib/libX11.so.6 (0xb7d28000)
        libdl.so.2 => /lib/libdl.so.2 (0xb7d24000)
        libpthread.so.0 => /lib/libpthread.so.0 (0xb7d10000)
        libstdc++.so.6 => /usr/lib/libstdc++.so.6 (0xb7c2f000)
        libm.so.6 => /lib/libm.so.6 (0xb7c0a000)
        libgcc_s.so.1 => /usr/lib/libgcc_s.so.1 (0xb7bff000)
        libc.so.6 => /lib/libc.so.6 (0xb7ade000)
        libXfixes.so.3 => /usr/lib/libXfixes.so.3 (0xb7ad9000)
        libz.so.1 => /usr/lib/libz.so.1 (0xb7ac6000)
        libexpat.so.1 => /usr/lib/libexpat.so.1 (0xb7aa7000)
        libXau.so.6 => /usr/lib/libXau.so.6 (0xb7aa4000)
        libXdmcp.so.6 => /usr/lib/libXdmcp.so.6 (0xb7a9f000)
        /lib/ld-linux.so.2 (0xb7f03000)

  • I get an "Exeeded Limit" error from iTunes Match, but I only have 18000 sings in my library. What might cause that?

    I get an "Exeeded Limit" error from iTunes Match, but I only have 18000 sings in my library. What might cause that?

    Try posting in the iTunes Match forum, you'll probably find more knowledgeable folks there.
    https://discussions.apple.com/community/itunes/itunes_match

  • "error in finding weblogic.Home"

    Trying to run WebLogic 6.0 inside of the Karmira debugger (not remotely), I get the following exception on Linux. Works fine in Windows 2000. Is there a property or some configuration that needs to be set? I've set bea.home and weblogic.Home (just guessing that might have been the problem).
    Thanks,
    Rob
    java.lang.RuntimeException: error in finding weblogic.Home
    at weblogic.Home.<init>(Home.java:54)
    at weblogic.Home.getInstance(Home.java:82)
    at weblogic.Home.getPath(Home.java:90)
    at weblogic.xml.registry.XMLRegistry.<init>(XMLRegistry.java:97)
    at
    weblogic.xml.registry.XMLRegistry.getXMLRegistry(XMLRegistry.java:123)
    at weblogic.xml.jaxp.RegistryParser.<init>(RegistryParser.java:66)
    at
    weblogic.xml.jaxp.RegistrySAXParser.getParser(RegistrySAXParser.java:28)
    at
    weblogic.xml.process.ProcessorDriver.setupSAXParser(ProcessorDriver.java:250)
    at
    weblogic.xml.process.ProcessorDriver.<init>(ProcessorDriver.java:52)
    at
    weblogic.ejb20.dd.xml.EjbJarLoader_EJB20.<init>(EjbJarLoader_EJB20.java:883)
    at java.lang.Class.newInstance0(Native Method)
    at java.lang.Class.newInstance(Class.java:254)
    at
    weblogic.xml.process.ProcessorFactory.getProcessor(ProcessorFactory.java:186)
    at
    weblogic.xml.process.ProcessorFactory.getProcessor(ProcessorFactory.java:164)
    at
    weblogic.ejb20.dd.xml.DDUtils.loadDeploymentDescriptor(DDUtils.java:65)
    at
    weblogic.ejb20.dd.xml.DDUtils.loadDeploymentDescriptor(DDUtils.java:47)
    at
    weblogic.ejb20.internal.EJBMBeanFactory.parseEjbJar(EJBMBeanFactory.java:215)
    at
    weblogic.ejb20.internal.EJBMBeanFactory.getMBeans(EJBMBeanFactory.java:138)
    at
    weblogic.management.mbeans.custom.Application.initializeMBean(Application.java:529)
    at
    weblogic.management.mbeans.custom.Application.initializeMBeans(Application.java:452)
    at
    weblogic.management.mbeans.custom.Application.adminLoad(Application.java:252)
    at
    weblogic.management.mbeans.custom.Application.load(Application.java:205)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:559)
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:545)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:285)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:431)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:172)
    at $Proxy6.load(Unknown Source)
    at
    weblogic.management.mbeans.custom.ApplicationManager.loadApplications(ApplicationManager.java:274)
    at
    weblogic.management.mbeans.custom.ApplicationManager.startConfigManager(ApplicationManager.java:236)
    at
    weblogic.management.mbeans.custom.ApplicationManager.start(ApplicationManager.java:121)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:559)
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:545)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:285)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:431)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:172)
    at $Proxy34.start(Unknown Source)
    at
    weblogic.management.configuration.ApplicationManagerMBean_CachingStub.start(ApplicationManagerMBean_CachingStub.java:435)
    at weblogic.management.Admin.startApplicationManager(Admin.java:959)
    at weblogic.management.Admin.finish(Admin.java:460)
    at weblogic.t3.srvr.T3Srvr.start(T3Srvr.java:431)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:170)
    at weblogic.Server.main(Server.java:35)
    --------------- nested within: ------------------
    weblogic.utils.AssertionError: ***** ASSERTION FAILED ***** - with
    nested exception:
    [java.lang.RuntimeException: error in finding weblogic.Home]
    at
    weblogic.xml.process.ProcessorDriver.setupSAXParser(ProcessorDriver.java:252)
    at
    weblogic.xml.process.ProcessorDriver.<init>(ProcessorDriver.java:52)
    at
    weblogic.ejb20.dd.xml.EjbJarLoader_EJB20.<init>(EjbJarLoader_EJB20.java:883)
    at java.lang.Class.newInstance0(Native Method)
    at java.lang.Class.newInstance(Class.java:254)
    at
    weblogic.xml.process.ProcessorFactory.getProcessor(ProcessorFactory.java:186)
    at
    weblogic.xml.process.ProcessorFactory.getProcessor(ProcessorFactory.java:164)
    at
    weblogic.ejb20.dd.xml.DDUtils.loadDeploymentDescriptor(DDUtils.java:65)
    at
    weblogic.ejb20.dd.xml.DDUtils.loadDeploymentDescriptor(DDUtils.java:47)
    at
    weblogic.ejb20.internal.EJBMBeanFactory.parseEjbJar(EJBMBeanFactory.java:215)
    at
    weblogic.ejb20.internal.EJBMBeanFactory.getMBeans(EJBMBeanFactory.java:138)
    at
    weblogic.management.mbeans.custom.Application.initializeMBean(Application.java:529)
    at
    weblogic.management.mbeans.custom.Application.initializeMBeans(Application.java:452)
    at
    weblogic.management.mbeans.custom.Application.adminLoad(Application.java:252)
    at
    weblogic.management.mbeans.custom.Application.load(Application.java:205)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:559)
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:545)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:285)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:431)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:172)
    at $Proxy6.load(Unknown Source)
    at
    weblogic.management.mbeans.custom.ApplicationManager.loadApplications(ApplicationManager.java:274)
    at
    weblogic.management.mbeans.custom.ApplicationManager.startConfigManager(ApplicationManager.java:236)
    at
    weblogic.management.mbeans.custom.ApplicationManager.start(ApplicationManager.java:121)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:559)
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:545)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:285)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:431)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:172)
    at $Proxy34.start(Unknown Source)
    at
    weblogic.management.configuration.ApplicationManagerMBean_CachingStub.start(ApplicationManagerMBean_CachingStub.java:435)
    at weblogic.management.Admin.startApplicationManager(Admin.java:959)
    at weblogic.management.Admin.finish(Admin.java:460)
    at weblogic.t3.srvr.T3Srvr.start(T3Srvr.java:431)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:170)
    at weblogic.Server.main(Server.java:35)
    java.lang.RuntimeException: error in finding weblogic.Home
    at weblogic.Home.<init>(Home.java:54)
    at weblogic.Home.getInstance(Home.java:82)
    at weblogic.Home.getPath(Home.java:90)
    at weblogic.xml.registry.XMLRegistry.<init>(XMLRegistry.java:97)
    at
    weblogic.xml.registry.XMLRegistry.getXMLRegistry(XMLRegistry.java:123)
    at weblogic.xml.jaxp.RegistryParser.<init>(RegistryParser.java:66)
    at
    weblogic.xml.jaxp.RegistrySAXParser.getParser(RegistrySAXParser.java:28)
    at
    weblogic.xml.process.ProcessorDriver.setupSAXParser(ProcessorDriver.java:250)
    at
    weblogic.xml.process.ProcessorDriver.<init>(ProcessorDriver.java:52)
    at
    weblogic.ejb20.dd.xml.EjbJarLoader_EJB20.<init>(EjbJarLoader_EJB20.java:883)
    at java.lang.Class.newInstance0(Native Method)
    at java.lang.Class.newInstance(Class.java:254)
    at
    weblogic.xml.process.ProcessorFactory.getProcessor(ProcessorFactory.java:186)
    at
    weblogic.xml.process.ProcessorFactory.getProcessor(ProcessorFactory.java:164)
    at
    weblogic.ejb20.dd.xml.DDUtils.loadDeploymentDescriptor(DDUtils.java:65)
    at
    weblogic.ejb20.dd.xml.DDUtils.loadDeploymentDescriptor(DDUtils.java:47)
    at
    weblogic.ejb20.internal.EJBMBeanFactory.parseEjbJar(EJBMBeanFactory.java:215)
    at
    weblogic.ejb20.internal.EJBMBeanFactory.getMBeans(EJBMBeanFactory.java:138)
    at
    weblogic.management.mbeans.custom.Application.initializeMBean(Application.java:529)
    at
    weblogic.management.mbeans.custom.Application.initializeMBeans(Application.java:452)
    at
    weblogic.management.mbeans.custom.Application.adminLoad(Application.java:252)
    at
    weblogic.management.mbeans.custom.Application.load(Application.java:205)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:559)
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:545)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:285)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:431)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:172)
    at $Proxy6.load(Unknown Source)
    at
    weblogic.management.mbeans.custom.ApplicationManager.loadApplications(ApplicationManager.java:274)
    at
    weblogic.management.mbeans.custom.ApplicationManager.startConfigManager(ApplicationManager.java:236)
    at
    weblogic.management.mbeans.custom.ApplicationManager.start(ApplicationManager.java:121)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:559)
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:545)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:285)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:431)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:172)
    at $Proxy34.start(Unknown Source)
    at
    weblogic.management.configuration.ApplicationManagerMBean_CachingStub.start(ApplicationManagerMBean_CachingStub.java:435)
    at weblogic.management.Admin.startApplicationManager(Admin.java:959)
    at weblogic.management.Admin.finish(Admin.java:460)
    at weblogic.t3.srvr.T3Srvr.start(T3Srvr.java:431)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:170)
    at weblogic.Server.main(Server.java:35)
    --------------- nested within: ------------------
    weblogic.utils.AssertionError: ***** ASSERTION FAILED ***** - with
    nested exception:
    [java.lang.RuntimeException: error in finding weblogic.Home]
    at
    weblogic.xml.process.ProcessorDriver.setupSAXParser(ProcessorDriver.java:252)
    at
    weblogic.xml.process.ProcessorDriver.<init>(ProcessorDriver.java:52)
    at
    weblogic.ejb20.dd.xml.EjbJarLoader_EJB20.<init>(EjbJarLoader_EJB20.java:883)
    at java.lang.Class.newInstance0(Native Method)
    at java.lang.Class.newInstance(Class.java:254)
    at
    weblogic.xml.process.ProcessorFactory.getProcessor(ProcessorFactory.java:186)
    at
    weblogic.xml.process.ProcessorFactory.getProcessor(ProcessorFactory.java:164)
    at
    weblogic.ejb20.dd.xml.DDUtils.loadDeploymentDescriptor(DDUtils.java:65)
    at
    weblogic.ejb20.dd.xml.DDUtils.loadDeploymentDescriptor(DDUtils.java:47)
    at
    weblogic.ejb20.internal.EJBMBeanFactory.parseEjbJar(EJBMBeanFactory.java:215)
    at
    weblogic.ejb20.internal.EJBMBeanFactory.getMBeans(EJBMBeanFactory.java:138)
    at
    weblogic.management.mbeans.custom.Application.initializeMBean(Application.java:529)
    at
    weblogic.management.mbeans.custom.Application.initializeMBeans(Application.java:452)
    at
    weblogic.management.mbeans.custom.Application.adminLoad(Application.java:252)
    at
    weblogic.management.mbeans.custom.Application.load(Application.java:205)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:559)
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:545)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:285)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:431)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:172)
    at $Proxy6.load(Unknown Source)
    at
    weblogic.management.mbeans.custom.ApplicationManager.loadApplications(ApplicationManager.java:274)
    at
    weblogic.management.mbeans.custom.ApplicationManager.startConfigManager(ApplicationManager.java:236)
    at
    weblogic.management.mbeans.custom.ApplicationManager.start(ApplicationManager.java:121)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:559)
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:545)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:285)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:431)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:172)
    at $Proxy34.start(Unknown Source)
    at
    weblogic.management.configuration.ApplicationManagerMBean_CachingStub.start(ApplicationManagerMBean_CachingStub.java:435)
    at weblogic.management.Admin.startApplicationManager(Admin.java:959)
    at weblogic.management.Admin.finish(Admin.java:460)
    at weblogic.t3.srvr.T3Srvr.start(T3Srvr.java:431)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:170)
    at weblogic.Server.main(Server.java:35)
    java.lang.RuntimeException: error in finding weblogic.Home
    at weblogic.Home.<init>(Home.java:54)
    at weblogic.Home.getInstance(Home.java:82)
    at weblogic.Home.getPath(Home.java:90)
    at weblogic.xml.registry.XMLRegistry.<init>(XMLRegistry.java:97)
    at
    weblogic.xml.registry.XMLRegistry.getXMLRegistry(XMLRegistry.java:123)
    at weblogic.xml.jaxp.RegistryParser.<init>(RegistryParser.java:66)
    at
    weblogic.xml.jaxp.RegistrySAXParser.getParser(RegistrySAXParser.java:28)
    at
    weblogic.xml.process.ProcessorDriver.setupSAXParser(ProcessorDriver.java:250)
    at
    weblogic.xml.process.ProcessorDriver.<init>(ProcessorDriver.java:52)
    at
    weblogic.ejb20.dd.xml.EjbJarLoader_EJB11.<init>(EjbJarLoader_EJB11.java:491)
    at java.lang.Class.newInstance0(Native Method)
    at java.lang.Class.newInstance(Class.java:254)
    at
    weblogic.xml.process.ProcessorFactory.getProcessor(ProcessorFactory.java:186)
    at
    weblogic.xml.process.ProcessorFactory.getProcessor(ProcessorFactory.java:164)
    at
    weblogic.ejb20.dd.xml.DDUtils.loadDeploymentDescriptor(DDUtils.java:65)
    at
    weblogic.ejb20.dd.xml.DDUtils.loadDeploymentDescriptor(DDUtils.java:47)
    at
    weblogic.ejb20.internal.EJBMBeanFactory.parseEjbJar(EJBMBeanFactory.java:215)
    at
    weblogic.ejb20.internal.EJBMBeanFactory.getMBeans(EJBMBeanFactory.java:138)
    at
    weblogic.management.mbeans.custom.Application.initializeMBean(Application.java:529)
    at
    weblogic.management.mbeans.custom.Application.initializeMBeans(Application.java:452)
    at
    weblogic.management.mbeans.custom.Application.adminLoad(Application.java:252)
    at
    weblogic.management.mbeans.custom.Application.load(Application.java:205)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:559)
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:545)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:285)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:431)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:172)
    at $Proxy6.load(Unknown Source)
    at
    weblogic.management.mbeans.custom.ApplicationManager.addApplication(ApplicationManager.java:546)
    at
    weblogic.management.mbeans.custom.ApplicationManager.addApplication(ApplicationManager.java:503)
    at
    weblogic.management.mbeans.custom.ApplicationManager.poll(ApplicationManager.java:427)
    at
    weblogic.management.mbeans.custom.ApplicationManager.poll(ApplicationManager.java:379)
    at
    weblogic.management.mbeans.custom.ApplicationManager.update(ApplicationManager.java:151)
    at
    weblogic.management.mbeans.custom.ApplicationManager.startAdminManager(ApplicationManager.java:204)
    at
    weblogic.management.mbeans.custom.ApplicationManager.start(ApplicationManager.java:119)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:559)
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:545)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:285)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:431)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:172)
    at $Proxy5.start(Unknown Source)
    at weblogic.management.Admin.startApplicationManager(Admin.java:963)
    at weblogic.management.Admin.finish(Admin.java:460)
    at weblogic.t3.srvr.T3Srvr.start(T3Srvr.java:431)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:170)
    at weblogic.Server.main(Server.java:35)
    --------------- nested within: ------------------
    weblogic.utils.AssertionError: ***** ASSERTION FAILED ***** - with
    nested exception:
    [java.lang.RuntimeException: error in finding weblogic.Home]
    at
    weblogic.xml.process.ProcessorDriver.setupSAXParser(ProcessorDriver.java:252)
    at
    weblogic.xml.process.ProcessorDriver.<init>(ProcessorDriver.java:52)
    at
    weblogic.ejb20.dd.xml.EjbJarLoader_EJB11.<init>(EjbJarLoader_EJB11.java:491)
    at java.lang.Class.newInstance0(Native Method)
    at java.lang.Class.newInstance(Class.java:254)
    at
    weblogic.xml.process.ProcessorFactory.getProcessor(ProcessorFactory.java:186)
    at
    weblogic.xml.process.ProcessorFactory.getProcessor(ProcessorFactory.java:164)
    at
    weblogic.ejb20.dd.xml.DDUtils.loadDeploymentDescriptor(DDUtils.java:65)
    at
    weblogic.ejb20.dd.xml.DDUtils.loadDeploymentDescriptor(DDUtils.java:47)
    at
    weblogic.ejb20.internal.EJBMBeanFactory.parseEjbJar(EJBMBeanFactory.java:215)
    at
    weblogic.ejb20.internal.EJBMBeanFactory.getMBeans(EJBMBeanFactory.java:138)
    at
    weblogic.management.mbeans.custom.Application.initializeMBean(Application.java:529)
    at
    weblogic.management.mbeans.custom.Application.initializeMBeans(Application.java:452)
    at
    weblogic.management.mbeans.custom.Application.adminLoad(Application.java:252)
    at
    weblogic.management.mbeans.custom.Application.load(Application.java:205)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:559)
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:545)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:285)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:431)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:172)
    at $Proxy6.load(Unknown Source)
    at
    weblogic.management.mbeans.custom.ApplicationManager.addApplication(ApplicationManager.java:546)
    at
    weblogic.management.mbeans.custom.ApplicationManager.addApplication(ApplicationManager.java:503)
    at
    weblogic.management.mbeans.custom.ApplicationManager.poll(ApplicationManager.java:427)
    at
    weblogic.management.mbeans.custom.ApplicationManager.poll(ApplicationManager.java:379)
    at
    weblogic.management.mbeans.custom.ApplicationManager.update(ApplicationManager.java:151)
    at
    weblogic.management.mbeans.custom.ApplicationManager.startAdminManager(ApplicationManager.java:204)
    at
    weblogic.management.mbeans.custom.ApplicationManager.start(ApplicationManager.java:119)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:559)
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:545)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:285)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:431)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:172)
    at $Proxy5.start(Unknown Source)
    at weblogic.management.Admin.startApplicationManager(Admin.java:963)
    at weblogic.management.Admin.finish(Admin.java:460)
    at weblogic.t3.srvr.T3Srvr.start(T3Srvr.java:431)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:170)
    at weblogic.Server.main(Server.java:35)
    <Mar 28, 2001 5:47:43 PM PST> <Emergency> <Server> <Unable to initialize
    the server: 'Fatal initialization exception
    Throwable: weblogic.utils.AssertionError: ***** ASSERTION FAILED ***** -
    with nested exception:
    [java.lang.RuntimeException: error in finding weblogic.Home]
    weblogic.utils.AssertionError: ***** ASSERTION FAILED ***** - with
    nested exception:
    [java.lang.RuntimeException: error in finding weblogic.Home]
    at
    weblogic.xml.process.ProcessorDriver.setupSAXParser(ProcessorDriver.java:252)
    at
    weblogic.xml.process.ProcessorDriver.<init>(ProcessorDriver.java:52)
    at
    weblogic.ejb20.dd.xml.EjbJarLoader_EJB11.<init>(EjbJarLoader_EJB11.java:491)
    at java.lang.Class.newInstance0(Native Method)
    at java.lang.Class.newInstance(Class.java:254)
    at
    weblogic.xml.process.ProcessorFactory.getProcessor(ProcessorFactory.java:186)
    at
    weblogic.xml.process.ProcessorFactory.getProcessor(ProcessorFactory.java:164)
    at
    weblogic.ejb20.dd.xml.DDUtils.loadDeploymentDescriptor(DDUtils.java:65)
    at
    weblogic.ejb20.dd.xml.DDUtils.loadDeploymentDescriptor(DDUtils.java:47)
    at
    weblogic.ejb20.internal.EJBMBeanFactory.parseEjbJar(EJBMBeanFactory.java:215)
    at
    weblogic.ejb20.internal.EJBMBeanFactory.getMBeans(EJBMBeanFactory.java:138)
    at
    weblogic.management.mbeans.custom.Application.initializeMBean(Application.java:529)
    at
    weblogic.management.mbeans.custom.Application.initializeMBeans(Application.java:452)
    at
    weblogic.management.mbeans.custom.Application.adminLoad(Application.java:252)
    at
    weblogic.management.mbeans.custom.Application.load(Application.java:205)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:559)
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:545)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:285)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:431)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:172)
    at $Proxy6.load(Unknown Source)
    at
    weblogic.management.mbeans.custom.ApplicationManager.addApplication(ApplicationManager.java:546)
    at
    weblogic.management.mbeans.custom.ApplicationManager.addApplication(ApplicationManager.java:503)
    at
    weblogic.management.mbeans.custom.ApplicationManager.poll(ApplicationManager.java:427)
    at
    weblogic.management.mbeans.custom.ApplicationManager.poll(ApplicationManager.java:379)
    at
    weblogic.management.mbeans.custom.ApplicationManager.update(ApplicationManager.java:151)
    at
    weblogic.management.mbeans.custom.ApplicationManager.startAdminManager(ApplicationManager.java:204)
    at
    weblogic.management.mbeans.custom.ApplicationManager.start(ApplicationManager.java:119)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:559)
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:545)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:285)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:431)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:172)
    at $Proxy5.start(Unknown Source)
    at weblogic.management.Admin.startApplicationManager(Admin.java:963)
    at weblogic.management.Admin.finish(Admin.java:460)
    at weblogic.t3.srvr.T3Srvr.start(T3Srvr.java:431)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:170)
    at weblogic.Server.main(Server.java:35)
    '>
    The WebLogic Server did not start up properly.
    Exception raised: weblogic.utils.AssertionError: ***** ASSERTION FAILED
    ***** - with nested exception:
    [java.lang.RuntimeException: error in finding weblogic.Home]
    java.lang.RuntimeException: error in finding weblogic.Home
    at weblogic.Home.<init>(Home.java:54)
    at weblogic.Home.getInstance(Home.java:82)
    at weblogic.Home.getPath(Home.java:90)
    at weblogic.xml.registry.XMLRegistry.<init>(XMLRegistry.java:97)
    at
    weblogic.xml.registry.XMLRegistry.getXMLRegistry(XMLRegistry.java:123)
    at weblogic.xml.jaxp.RegistryParser.<init>(RegistryParser.java:66)
    at
    weblogic.xml.jaxp.RegistrySAXParser.getParser(RegistrySAXParser.java:28)
    at
    weblogic.xml.process.ProcessorDriver.setupSAXParser(ProcessorDriver.java:250)
    at
    weblogic.xml.process.ProcessorDriver.<init>(ProcessorDriver.java:52)
    at
    weblogic.ejb20.dd.xml.EjbJarLoader_EJB11.<init>(EjbJarLoader_EJB11.java:491)
    at java.lang.Class.newInstance0(Native Method)
    at java.lang.Class.newInstance(Class.java:254)
    at
    weblogic.xml.process.ProcessorFactory.getProcessor(ProcessorFactory.java:186)
    at
    weblogic.xml.process.ProcessorFactory.getProcessor(ProcessorFactory.java:164)
    at
    weblogic.ejb20.dd.xml.DDUtils.loadDeploymentDescriptor(DDUtils.java:65)
    at
    weblogic.ejb20.dd.xml.DDUtils.loadDeploymentDescriptor(DDUtils.java:47)
    at
    weblogic.ejb20.internal.EJBMBeanFactory.parseEjbJar(EJBMBeanFactory.java:215)
    at
    weblogic.ejb20.internal.EJBMBeanFactory.getMBeans(EJBMBeanFactory.java:138)
    at
    weblogic.management.mbeans.custom.Application.initializeMBean(Application.java:529)
    at
    weblogic.management.mbeans.custom.Application.initializeMBeans(Application.java:452)
    at
    weblogic.management.mbeans.custom.Application.adminLoad(Application.java:252)
    at
    weblogic.management.mbeans.custom.Application.load(Application.java:205)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    w

    if you are setting weblogic.Home then it's wrong. It should be weblogic.home
    Sushil
    "Rob Weltman" <[email protected]> wrote in message
    news:[email protected]...
    Trying to run WebLogic 6.0 inside of the Karmira debugger (notremotely), I get the following exception on Linux. Works fine in Windows
    2000. Is there a property or some configuration that needs to be set? I've
    set bea.home and weblogic.Home (just guessing that might have been the
    problem).
    >
    Thanks,
    Rob
    java.lang.RuntimeException: error in finding weblogic.Home
    at weblogic.Home.<init>(Home.java:54)
    at weblogic.Home.getInstance(Home.java:82)
    at weblogic.Home.getPath(Home.java:90)
    at weblogic.xml.registry.XMLRegistry.<init>(XMLRegistry.java:97)
    at
    weblogic.xml.registry.XMLRegistry.getXMLRegistry(XMLRegistry.java:123)
    at weblogic.xml.jaxp.RegistryParser.<init>(RegistryParser.java:66)
    at
    weblogic.xml.jaxp.RegistrySAXParser.getParser(RegistrySAXParser.java:28)
    at
    weblogic.xml.process.ProcessorDriver.setupSAXParser(ProcessorDriver.java:250
    at
    weblogic.xml.process.ProcessorDriver.<init>(ProcessorDriver.java:52)
    at
    weblogic.ejb20.dd.xml.EjbJarLoader_EJB20.<init>(EjbJarLoader_EJB20.java:883)
    at java.lang.Class.newInstance0(Native Method)
    at java.lang.Class.newInstance(Class.java:254)
    at
    weblogic.xml.process.ProcessorFactory.getProcessor(ProcessorFactory.java:186
    at
    weblogic.xml.process.ProcessorFactory.getProcessor(ProcessorFactory.java:164
    at
    weblogic.ejb20.dd.xml.DDUtils.loadDeploymentDescriptor(DDUtils.java:65)
    at
    weblogic.ejb20.dd.xml.DDUtils.loadDeploymentDescriptor(DDUtils.java:47)
    at
    weblogic.ejb20.internal.EJBMBeanFactory.parseEjbJar(EJBMBeanFactory.java:215
    at
    weblogic.ejb20.internal.EJBMBeanFactory.getMBeans(EJBMBeanFactory.java:138)
    at
    weblogic.management.mbeans.custom.Application.initializeMBean(Application.ja
    va:529)
    at
    weblogic.management.mbeans.custom.Application.initializeMBeans(Application.j
    ava:452)
    at
    weblogic.management.mbeans.custom.Application.adminLoad(Application.java:252
    at
    weblogic.management.mbeans.custom.Application.load(Application.java:205)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl
    .java:559)
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:5
    45)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBea
    nImpl.java:285)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:431)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:172)
    at $Proxy6.load(Unknown Source)
    at
    weblogic.management.mbeans.custom.ApplicationManager.loadApplications(Applic
    ationManager.java:274)
    at
    weblogic.management.mbeans.custom.ApplicationManager.startConfigManager(Appl
    icationManager.java:236)
    at
    weblogic.management.mbeans.custom.ApplicationManager.start(ApplicationManage
    r.java:121)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl
    .java:559)
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:5
    45)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBea
    nImpl.java:285)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:431)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:172)
    at $Proxy34.start(Unknown Source)
    at
    weblogic.management.configuration.ApplicationManagerMBean_CachingStub.start(
    ApplicationManagerMBean_CachingStub.java:435)
    atweblogic.management.Admin.startApplicationManager(Admin.java:959)
    at weblogic.management.Admin.finish(Admin.java:460)
    at weblogic.t3.srvr.T3Srvr.start(T3Srvr.java:431)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:170)
    at weblogic.Server.main(Server.java:35)
    --------------- nested within: ------------------
    weblogic.utils.AssertionError: ***** ASSERTION FAILED ***** - with
    nested exception:
    [java.lang.RuntimeException: error in finding weblogic.Home]
    at
    weblogic.xml.process.ProcessorDriver.setupSAXParser(ProcessorDriver.java:252
    at
    weblogic.xml.process.ProcessorDriver.<init>(ProcessorDriver.java:52)
    at
    weblogic.ejb20.dd.xml.EjbJarLoader_EJB20.<init>(EjbJarLoader_EJB20.java:883)
    at java.lang.Class.newInstance0(Native Method)
    at java.lang.Class.newInstance(Class.java:254)
    at
    weblogic.xml.process.ProcessorFactory.getProcessor(ProcessorFactory.java:186
    at
    weblogic.xml.process.ProcessorFactory.getProcessor(ProcessorFactory.java:164
    at
    weblogic.ejb20.dd.xml.DDUtils.loadDeploymentDescriptor(DDUtils.java:65)
    at
    weblogic.ejb20.dd.xml.DDUtils.loadDeploymentDescriptor(DDUtils.java:47)
    at
    weblogic.ejb20.internal.EJBMBeanFactory.parseEjbJar(EJBMBeanFactory.java:215
    at
    weblogic.ejb20.internal.EJBMBeanFactory.getMBeans(EJBMBeanFactory.java:138)
    at
    weblogic.management.mbeans.custom.Application.initializeMBean(Application.ja
    va:529)
    at
    weblogic.management.mbeans.custom.Application.initializeMBeans(Application.j
    ava:452)
    at
    weblogic.management.mbeans.custom.Application.adminLoad(Application.java:252
    at
    weblogic.management.mbeans.custom.Application.load(Application.java:205)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl
    .java:559)
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:5
    45)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBea
    nImpl.java:285)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:431)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:172)
    at $Proxy6.load(Unknown Source)
    at
    weblogic.management.mbeans.custom.ApplicationManager.loadApplications(Applic
    ationManager.java:274)
    at
    weblogic.management.mbeans.custom.ApplicationManager.startConfigManager(Appl
    icationManager.java:236)
    at
    weblogic.management.mbeans.custom.ApplicationManager.start(ApplicationManage
    r.java:121)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl
    .java:559)
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:5
    45)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBea
    nImpl.java:285)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:431)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:172)
    at $Proxy34.start(Unknown Source)
    at
    weblogic.management.configuration.ApplicationManagerMBean_CachingStub.start(
    ApplicationManagerMBean_CachingStub.java:435)
    atweblogic.management.Admin.startApplicationManager(Admin.java:959)
    at weblogic.management.Admin.finish(Admin.java:460)
    at weblogic.t3.srvr.T3Srvr.start(T3Srvr.java:431)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:170)
    at weblogic.Server.main(Server.java:35)
    java.lang.RuntimeException: error in finding weblogic.Home
    at weblogic.Home.<init>(Home.java:54)
    at weblogic.Home.getInstance(Home.java:82)
    at weblogic.Home.getPath(Home.java:90)
    at weblogic.xml.registry.XMLRegistry.<init>(XMLRegistry.java:97)
    at
    weblogic.xml.registry.XMLRegistry.getXMLRegistry(XMLRegistry.java:123)
    at weblogic.xml.jaxp.RegistryParser.<init>(RegistryParser.java:66)
    at
    weblogic.xml.jaxp.RegistrySAXParser.getParser(RegistrySAXParser.java:28)
    at
    weblogic.xml.process.ProcessorDriver.setupSAXParser(ProcessorDriver.java:250
    at
    weblogic.xml.process.ProcessorDriver.<init>(ProcessorDriver.java:52)
    at
    weblogic.ejb20.dd.xml.EjbJarLoader_EJB20.<init>(EjbJarLoader_EJB20.java:883)
    at java.lang.Class.newInstance0(Native Method)
    at java.lang.Class.newInstance(Class.java:254)
    at
    weblogic.xml.process.ProcessorFactory.getProcessor(ProcessorFactory.java:186
    at
    weblogic.xml.process.ProcessorFactory.getProcessor(ProcessorFactory.java:164
    at
    weblogic.ejb20.dd.xml.DDUtils.loadDeploymentDescriptor(DDUtils.java:65)
    at
    weblogic.ejb20.dd.xml.DDUtils.loadDeploymentDescriptor(DDUtils.java:47)
    at
    weblogic.ejb20.internal.EJBMBeanFactory.parseEjbJar(EJBMBeanFactory.java:215
    at
    weblogic.ejb20.internal.EJBMBeanFactory.getMBeans(EJBMBeanFactory.java:138)
    at
    weblogic.management.mbeans.custom.Application.initializeMBean(Application.ja
    va:529)
    at
    weblogic.management.mbeans.custom.Application.initializeMBeans(Application.j
    ava:452)
    at
    weblogic.management.mbeans.custom.Application.adminLoad(Application.java:252
    at
    weblogic.management.mbeans.custom.Application.load(Application.java:205)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl
    .java:559)
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:5
    45)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBea
    nImpl.java:285)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:431)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:172)
    at $Proxy6.load(Unknown Source)
    at
    weblogic.management.mbeans.custom.ApplicationManager.loadApplications(Applic
    ationManager.java:274)
    at
    weblogic.management.mbeans.custom.ApplicationManager.startConfigManager(Appl
    icationManager.java:236)
    at
    weblogic.management.mbeans.custom.ApplicationManager.start(ApplicationManage
    r.java:121)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl
    .java:559)
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:5
    45)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBea
    nImpl.java:285)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:431)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:172)
    at $Proxy34.start(Unknown Source)
    at
    weblogic.management.configuration.ApplicationManagerMBean_CachingStub.start(
    ApplicationManagerMBean_CachingStub.java:435)
    atweblogic.management.Admin.startApplicationManager(Admin.java:959)
    at weblogic.management.Admin.finish(Admin.java:460)
    at weblogic.t3.srvr.T3Srvr.start(T3Srvr.java:431)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:170)
    at weblogic.Server.main(Server.java:35)
    --------------- nested within: ------------------
    weblogic.utils.AssertionError: ***** ASSERTION FAILED ***** - with
    nested exception:
    [java.lang.RuntimeException: error in finding weblogic.Home]
    at
    weblogic.xml.process.ProcessorDriver.setupSAXParser(ProcessorDriver.java:252
    at
    weblogic.xml.process.ProcessorDriver.<init>(ProcessorDriver.java:52)
    at
    weblogic.ejb20.dd.xml.EjbJarLoader_EJB20.<init>(EjbJarLoader_EJB20.java:883)
    at java.lang.Class.newInstance0(Native Method)
    at java.lang.Class.newInstance(Class.java:254)
    at
    weblogic.xml.process.ProcessorFactory.getProcessor(ProcessorFactory.java:186
    at
    weblogic.xml.process.ProcessorFactory.getProcessor(ProcessorFactory.java:164
    at
    weblogic.ejb20.dd.xml.DDUtils.loadDeploymentDescriptor(DDUtils.java:65)
    at
    weblogic.ejb20.dd.xml.DDUtils.loadDeploymentDescriptor(DDUtils.java:47)
    at
    weblogic.ejb20.internal.EJBMBeanFactory.parseEjbJar(EJBMBeanFactory.java:215
    at
    weblogic.ejb20.internal.EJBMBeanFactory.getMBeans(EJBMBeanFactory.java:138)
    at
    weblogic.management.mbeans.custom.Application.initializeMBean(Application.ja
    va:529)
    at
    weblogic.management.mbeans.custom.Application.initializeMBeans(Application.j
    ava:452)
    at
    weblogic.management.mbeans.custom.Application.adminLoad(Application.java:252
    at
    weblogic.management.mbeans.custom.Application.load(Application.java:205)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl
    .java:559)
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:5
    45)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBea
    nImpl.java:285)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:431)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:172)
    at $Proxy6.load(Unknown Source)
    at
    weblogic.management.mbeans.custom.ApplicationManager.loadApplications(Applic
    ationManager.java:274)
    at
    weblogic.management.mbeans.custom.ApplicationManager.startConfigManager(Appl
    icationManager.java:236)
    at
    weblogic.management.mbeans.custom.ApplicationManager.start(ApplicationManage
    r.java:121)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl
    .java:559)
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:5
    45)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBea
    nImpl.java:285)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:431)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:172)
    at $Proxy34.start(Unknown Source)
    at
    weblogic.management.configuration.ApplicationManagerMBean_CachingStub.start(
    ApplicationManagerMBean_CachingStub.java:435)
    atweblogic.management.Admin.startApplicationManager(Admin.java:959)
    at weblogic.management.Admin.finish(Admin.java:460)
    at weblogic.t3.srvr.T3Srvr.start(T3Srvr.java:431)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:170)
    at weblogic.Server.main(Server.java:35)
    java.lang.RuntimeException: error in finding weblogic.Home
    at weblogic.Home.<init>(Home.java:54)
    at weblogic.Home.getInstance(Home.java:82)
    at weblogic.Home.getPath(Home.java:90)
    at weblogic.xml.registry.XMLRegistry.<init>(XMLRegistry.java:97)
    at
    weblogic.xml.registry.XMLRegistry.getXMLRegistry(XMLRegistry.java:123)
    at weblogic.xml.jaxp.RegistryParser.<init>(RegistryParser.java:66)
    at
    weblogic.xml.jaxp.RegistrySAXParser.getParser(RegistrySAXParser.java:28)
    at
    weblogic.xml.process.ProcessorDriver.setupSAXParser(ProcessorDriver.java:250
    at
    weblogic.xml.process.ProcessorDriver.<init>(ProcessorDriver.java:52)
    at
    weblogic.ejb20.dd.xml.EjbJarLoader_EJB11.<init>(EjbJarLoader_EJB11.java:491)
    at java.lang.Class.newInstance0(Native Method)
    at java.lang.Class.newInstance(Class.java:254)
    at
    weblogic.xml.process.ProcessorFactory.getProcessor(ProcessorFactory.java:186
    at
    weblogic.xml.process.ProcessorFactory.getProcessor(ProcessorFactory.java:164
    at
    weblogic.ejb20.dd.xml.DDUtils.loadDeploymentDescriptor(DDUtils.java:65)
    at
    weblogic.ejb20.dd.xml.DDUtils.loadDeploymentDescriptor(DDUtils.java:47)
    at
    weblogic.ejb20.internal.EJBMBeanFactory.parseEjbJar(EJBMBeanFactory.java:215
    at
    weblogic.ejb20.internal.EJBMBeanFactory.getMBeans(EJBMBeanFactory.java:138)
    at
    weblogic.management.mbeans.custom.Application.initializeMBean(Application.ja
    va:529)
    at
    weblogic.management.mbeans.custom.Application.initializeMBeans(Application.j
    ava:452)
    at
    weblogic.management.mbeans.custom.Application.adminLoad(Application.java:252
    at
    weblogic.management.mbeans.custom.Application.load(Application.java:205)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl
    .java:559)
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:5
    45)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBea
    nImpl.java:285)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:431)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:172)
    at $Proxy6.load(Unknown Source)
    at
    weblogic.management.mbeans.custom.ApplicationManager.addApplication(Applicat
    ionManager.java:546)
    at
    weblogic.management.mbeans.custom.ApplicationManager.addApplication(Applicat
    ionManager.java:503)
    at
    weblogic.management.mbeans.custom.ApplicationManager.poll(ApplicationManager
    .java:427)
    at
    weblogic.management.mbeans.custom.ApplicationManager.poll(ApplicationManager
    .java:379)
    at
    weblogic.management.mbeans.custom.ApplicationManager.update(ApplicationManag
    er.java:151)
    at
    weblogic.management.mbeans.custom.ApplicationManager.startAdminManager(Appli
    cationManager.java:204)
    at
    weblogic.management.mbeans.custom.ApplicationManager.start(ApplicationManage
    r.java:119)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl
    .java:559)
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:5
    45)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBea
    nImpl.java:285)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:431)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:172)
    at $Proxy5.start(Unknown Source)
    atweblogic.management.Admin.startApplicationManager(Admin.java:963)
    at weblogic.management.Admin.finish(Admin.java:460)
    at weblogic.t3.srvr.T3Srvr.start(T3Srvr.java:431)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:170)
    at weblogic.Server.main(Server.java:35)
    --------------- nested within: ------------------
    weblogic.utils.AssertionError: ***** ASSERTION FAILED ***** - with
    nested exception:
    [java.lang.RuntimeException: error in finding weblogic.Home]
    at
    weblogic.xml.process.ProcessorDriver.setupSAXParser(ProcessorDriver.java:252
    at
    weblogic.xml.process.ProcessorDriver.<init>(ProcessorDriver.java:52)
    at
    weblogic.ejb20.dd.xml.EjbJarLoader_EJB11.<init>(EjbJarLoader_EJB11.java:491)
    at java.lang.Class.newInstance0(Native Method)
    at java.lang.Class.newInstance(Class.java:254)
    at
    weblogic.xml.process.ProcessorFactory.getProcessor(ProcessorFactory.java:186
    at
    weblogic.xml.process.ProcessorFactory.getProcessor(ProcessorFactory.java:164
    at
    weblogic.ejb20.dd.xml.DDUtils.loadDeploymentDescriptor(DDUtils.java:65)
    at
    weblogic.ejb20.dd.xml.DDUtils.loadDeploymentDescriptor(DDUtils.java:47)
    at
    weblogic.ejb20.internal.EJBMBeanFactory.parseEjbJar(EJBMBeanFactory.java:215
    at
    weblogic.ejb20.internal.EJBMBeanFactory.getMBeans(EJBMBeanFactory.java:138)
    at
    weblogic.management.mbeans.custom.Application.initializeMBean(Application.ja
    va:529)
    at
    weblogic.management.mbeans.custom.Application.initializeMBeans(Application.j
    ava:452)
    at
    weblogic.management.mbeans.custom.Application.adminLoad(Application.java:252
    at
    weblogic.management.mbeans.custom.Application.load(Application.java:205)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl
    .java:559)
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:5
    45)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBea
    nImpl.java:285)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:431)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:172)
    at $Proxy6.load(Unknown Source)
    at
    weblogic.management.mbeans.custom.ApplicationManager.addApplication(Applicat
    ionManager.java:546)
    at
    weblogic.management.mbeans.custom.ApplicationManager.addApplication(Applicat
    ionManager.java:503)
    at
    weblogic.management.mbeans.custom.ApplicationManager.poll(ApplicationManager
    .java:427)
    at
    weblogic.management.mbeans.custom.ApplicationManager.poll(ApplicationManager
    .java:379)
    at
    weblogic.management.mbeans.custom.ApplicationManager.update(ApplicationManag
    er.java:151)
    at
    weblogic.management.mbeans.custom.ApplicationManager.startAdminManager(Appli
    cationManager.java:204)
    at
    weblogic.management.mbeans.custom.ApplicationManager.start(ApplicationManage
    r.java:119)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl
    .java:559)
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:5
    45)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBea
    nImpl.java:285)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:431)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:172)
    at $Proxy5.start(Unknown Source)
    atweblogic.management.Admin.startApplicationManager(Admin.java:963)
    at weblogic.management.Admin.finish(Admin.java:460)
    at weblogic.t3.srvr.T3Srvr.start(T3Srvr.java:431)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:170)
    at weblogic.Server.main(Server.java:35)
    <Mar 28, 2001 5:47:43 PM PST> <Emergency> <Server> <Unable to initialize
    the server: 'Fatal initialization exception
    Throwable: weblogic.utils.AssertionError: ***** ASSERTION FAILED ***** -
    with nested exception:
    [java.lang.RuntimeException: error in finding weblogic.Home]
    weblogic.utils.AssertionError: ***** ASSERTION FAILED ***** - with
    nested exception:
    [java.lang.RuntimeException: error in finding weblogic.Home]
    at
    weblogic.xml.process.ProcessorDriver.setupSAXParser(ProcessorDriver.java:252
    at
    weblogic.xml.process.ProcessorDriver.<init>(ProcessorDriver.java:52)
    at
    weblogic.ejb20.dd.xml.EjbJarLoader_EJB11.<init>(EjbJarLoader_EJB11.java:491)
    at java.lang.Class.newInstance0(Native Method)
    at java.lang.Class.newInstance(Class.java:254)
    at
    weblogic.xml.process.ProcessorFactory.getProcessor(ProcessorFactory.java:186
    at
    weblogic.xml.process.ProcessorFactory.getProcessor(ProcessorFactory.java:164
    at
    weblogic.ejb20.dd.xml.DDUtils.loadDeploymentDescriptor(DDUtils.java:65)
    at
    weblogic.ejb20.dd.xml.DDUtils.loadDeploymentDescriptor(DDUtils.java:47)
    at
    weblogic.ejb20.internal.EJBMBeanFactory.parseEjbJar(EJBMBeanFactory.java:215
    at
    weblogic.ejb20.internal.EJBMBeanFactory.getMBeans(EJBMBeanFactory.java:138)
    at
    weblogic.management.mbeans.custom.Application.initializeMBean(Application.ja
    va:529)
    at
    weblogic.management.mbeans.custom.Application.initializeMBeans(Application.j
    ava:452)
    at
    weblogic.management.mbeans.custom.Application.adminLoad(Application.java:252
    at
    weblogic.management.mbeans.custom.Application.load(Application.java:205)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl
    .java:559)
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:5
    45)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBea
    nImpl.java:285)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:431)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:172)
    at $Proxy6.load(Unknown Source)
    at
    weblogic.management.mbeans.custom.ApplicationManager.addApplication(Applicat
    ionManager.java:546)
    at
    weblogic.management.mbeans.custom.ApplicationManager.addApplication(Applicat
    ionManager.java:503)
    at
    weblogic.management.mbeans.custom.ApplicationManager.poll(ApplicationManager
    .java:427)
    at
    weblogic.management.mbeans.custom.ApplicationManager.poll(ApplicationManager
    .java:379)
    at
    weblogic.management.mbeans.custom.ApplicationManager.update(ApplicationManag
    er.java:151)
    at
    weblogic.management.mbeans.custom.ApplicationManager.startAdminManager(Appli
    cationManager.java:204)
    at
    weblogic.management.mbeans.custom.ApplicationManager.start(ApplicationManage
    r.java:119)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl
    .java:559)
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:5
    45)
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBea
    nImpl.java:285)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
    at
    com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:431)
    at
    weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:172)
    at $Proxy5.start(Unknown Source)
    atweblogic.management.Admin.startApplicationManager(Admin.java:963)
    at weblogic.management.Admin.finish(Admin.java:460)
    at weblogic.t3.srvr.T3Srvr.start(T3Srvr.java:431)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:170)
    at weblogic.Server.main(Server.java:35)
    '>
    The WebLogic Server did not start up properly.
    Exception raised: weblogic.utils.AssertionError: ***** ASSERTION FAILED
    ***** - with nested exception:
    [java.lang.RuntimeException: error in finding weblogic.Home]
    java.lang.RuntimeException: error in finding weblogic.Home
    at weblogic.Home.<init>(Home.java:54)
    at weblogic.Home.getInstance(Home.java:82)
    at weblogic.Home.getPath(Home.java:90)
    at weblogic.xml.

  • ERROR - 1023001 - No matching region defined for the specified server,app,

    Gurus,
    I was trying to sync two cubes, basically one has to go to the other.
    This is the script
    refresh replicated partition 'app2'.'db2' from 'app1'.'db1' at $COMPUTERNAME all data;
    However, when I check the logs, I get this error message
    ERROR - 1023001 - No matching region defined for the specified server,app,db:
    How do we fix this error. When I checked some of the essbase erro docs, I dont find it.
    Please help
    Thanks

    Do you get any additional information in your app log?If so, can you post the message.We run on UNIX (solaris) here and ran into an issue with host-name resolution that turned out to be hostname cache problem. I don't know if you have similar on AIX.

  • [SOLVED] internal error Cannot find suitable emulator for x86_64

    Hi,
    After a reboot due to unrelated issues, virt-manager is not showing any of the VMs I had configured via qemu:
    I checked connection properties, and everything else is showing up correctly, like the networks and storage. I tried to create new VMs out of existing storage and got this message:
    Googling it suggested this happens when KVM module is not loaded. I modprobed kvm, kvm_intel and still got same result.
    Systemd gave me the following:
    % systemctl status libvirtd
    libvirtd.service - Virtualization daemon
    Loaded: loaded (/usr/lib/systemd/system/libvirtd.service; enabled)
    Active: active (running) since Sat 2013-06-08 08:55:19 IST; 29min ago
    Main PID: 1499 (libvirtd)
    CGroup: name=systemd:/system/libvirtd.service
    ├─ 834 /sbin/dnsmasq --conf-file=/var/lib/libvirt/dnsmasq/default.conf
    ├─ 863 /sbin/dnsmasq --conf-file=/var/lib/libvirt/dnsmasq/nat_static.conf
    ├─ 881 /sbin/dnsmasq --conf-file=/var/lib/libvirt/dnsmasq/closed_dhcp.conf
    └─1499 /usr/bin/libvirtd -p /var/run/libvirtd.pid
    Jun 08 09:07:48 core libvirtd[1499]: internal error Cannot find suitable emulator for x86_64
    Jun 08 09:07:48 core libvirtd[1499]: internal error Cannot find suitable emulator for x86_64
    Jun 08 09:07:48 core libvirtd[1499]: internal error Cannot find suitable emulator for x86_64
    Jun 08 09:07:48 core libvirtd[1499]: internal error Cannot find suitable emulator for x86_64
    Jun 08 09:07:48 core libvirtd[1499]: internal error Cannot find suitable emulator for x86_64
    Jun 08 09:07:48 core libvirtd[1499]: internal error Cannot find suitable emulator for x86_64
    Jun 08 09:08:20 core libvirtd[1499]: internal error Cannot find suitable emulator for x86_64
    Jun 08 09:08:20 core libvirtd[1499]: internal error Cannot find suitable emulator for x86_64
    Jun 08 09:08:35 core libvirtd[1499]: internal error Cannot find suitable emulator for x86_64
    Jun 08 09:08:35 core libvirtd[1499]: internal error Cannot find suitable emulator for x86_64
    Googling that seems to indicate that this happens when virtualization is disabled by BIOS. But cpuinfo tells me that vm is supported:
    % grep vmx /proc/cpuinfo | uniq -c
    8 flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm ida arat epb xsaveopt pln pts dtherm tpr_shadow vnmi flexpriority ept vpid
    Can anyone help me? Has anyone else faced a similar problem?
    Here are some version info:
    local/libvirt 1.0.6-1
    API for controlling virtualization engines (openvz,kvm,qemu,virtualbox,xen,etc)
    local/qemu 1.4.2-1
    A generic and open source processor emulator which achieves a good emulation speed by using dynamic translation.
    Of which, qemu got updated just today. I will try rolling back to older version and post and update.
    Ninja edit: Looks to be qemu. Just running qemu gives me this error:
    % qemu-system-x86_64
    qemu-system-x86_64: error while loading shared libraries: libiscsi.so.1: cannot open shared object file: No such file or directory
    EDIT: The resolution was
    pacman -S libiscsi libaio
    systemctl restart libvirtd
    EDIT2: Made subject line better searchable
    Last edited by railmaniac (2013-06-08 04:19:24)

    HI,
    First of all thanks a lot for this post. I am facing the same issue since yest.
    After reboot, my VMs gone missing and even virt-manager was not working (as shown in the screenshots which you have pasted in your post).
    Now after trying out the workout which you had mentioned, I am able to get the virt-manager working.
    But I am not sure if I can get back my missing VMs .
    I am new to linux. Kindly guide me on how I can get back those VMs.
    [root@skoduri lib64]# ls /etc/libvirt/qemu/
    networks  rhel6-vm2.xml  rhel6.xml
    [root@skoduri lib64]#
    [root@skoduri lib64]# ls /etc/libvirt/storage/
    autostart  default.xml  storage_1.xml
    [root@skoduri lib64]#
    [root@skoduri lib64]#
    Thanks,
    Soumya

  • Aud cs6 couldnt find a file through pp cs6.

    aud cs6 couldnt find a file through pp cs6.
    from pp i tried to edit a file in aud through the link "edit clip in adobe audition".
    time after time with different files which were imported to pp i'm getting the error message:
    "error: could not find the file"
    what do i do wrong?
    thanks
    arikw

    I have discovered what the problem is.
    A name of a folder written not in latin letters will confuse aud.

  • Can't find matching glx visual

    OK, so I just got Archlinux all up and running (Yay!!) and I tried to install dxx-rebirth from the AUR.
    It installed fine, and I have all the needed files, but when I try to run d1x-rebirth, It comes out with this error:
    Error: Could not set 640x480x32 opengl video mode: Couldn't find matching GLX visual
    here is the output of glxinfo:
    name of display: :0.0
    display: :0 screen: 0
    direct rendering: Yes
    server glx vendor string: SGI
    server glx version string: 1.2
    server glx extensions:
    GLX_ARB_multisample, GLX_EXT_import_context, GLX_EXT_texture_from_pixmap,
    GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_OML_swap_method,
    GLX_SGIS_multisample, GLX_SGIX_fbconfig, GLX_SGIX_visual_select_group
    client glx vendor string: SGI
    client glx version string: 1.4
    client glx extensions:
    GLX_ARB_get_proc_address, GLX_ARB_multisample, GLX_EXT_import_context,
    GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_MESA_allocate_memory,
    GLX_MESA_copy_sub_buffer, GLX_MESA_swap_control,
    GLX_MESA_swap_frame_usage, GLX_OML_swap_method, GLX_OML_sync_control,
    GLX_SGI_make_current_read, GLX_SGI_swap_control, GLX_SGI_video_sync,
    GLX_SGIS_multisample, GLX_SGIX_fbconfig, GLX_SGIX_pbuffer,
    GLX_SGIX_visual_select_group, GLX_EXT_texture_from_pixmap
    GLX version: 1.2
    GLX extensions:
    GLX_ARB_get_proc_address, GLX_ARB_multisample, GLX_EXT_import_context,
    GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_OML_swap_method,
    GLX_SGIS_multisample, GLX_SGIX_fbconfig, GLX_SGIX_visual_select_group
    OpenGL vendor string: Keith Whitwell
    OpenGL renderer string: Mesa DRI i810 20050821 x86/MMX/SSE
    OpenGL version string: 1.2 Mesa 7.5
    OpenGL extensions:
    GL_ARB_draw_buffers, GL_ARB_imaging, GL_ARB_multisample,
    GL_ARB_multitexture, GL_ARB_texture_compression, GL_ARB_texture_env_add,
    GL_ARB_texture_env_combine, GL_ARB_texture_env_crossbar,
    GL_ARB_texture_mirrored_repeat, GL_ARB_texture_rectangle,
    GL_ARB_transpose_matrix, GL_ARB_vertex_buffer_object, GL_ARB_window_pos,
    GL_EXT_abgr, GL_EXT_bgra, GL_EXT_blend_color, GL_EXT_blend_logic_op,
    GL_EXT_blend_minmax, GL_EXT_blend_subtract, GL_EXT_compiled_vertex_array,
    GL_EXT_convolution, GL_EXT_copy_texture, GL_EXT_draw_range_elements,
    GL_EXT_histogram, GL_EXT_multi_draw_arrays, GL_EXT_packed_pixels,
    GL_EXT_polygon_offset, GL_EXT_rescale_normal,
    GL_EXT_separate_specular_color, GL_EXT_stencil_wrap, GL_EXT_subtexture,
    GL_EXT_texture, GL_EXT_texture3D, GL_EXT_texture_edge_clamp,
    GL_EXT_texture_env_add, GL_EXT_texture_env_combine,
    GL_EXT_texture_lod_bias, GL_EXT_texture_object, GL_EXT_texture_rectangle,
    GL_EXT_vertex_array, GL_APPLE_packed_pixels, GL_IBM_multimode_draw_arrays,
    GL_IBM_rasterpos_clip, GL_IBM_texture_mirrored_repeat,
    GL_MESA_ycbcr_texture, GL_MESA_window_pos, GL_NV_blend_square,
    GL_NV_light_max_exponent, GL_NV_texture_rectangle,
    GL_NV_texgen_reflection, GL_OES_read_format, GL_SGI_color_matrix,
    GL_SGI_color_table, GL_SGIS_generate_mipmap, GL_SGIS_texture_edge_clamp,
    GL_SGIS_texture_lod, GL_SUN_multi_draw_arrays
    16 GLX Visuals
    visual x bf lv rg d st colorbuffer ax dp st accumbuffer ms cav
    id dep cl sp sz l ci b ro r g b a bf th cl r g b a ns b eat
    0x21 16 tc 0 16 0 r y . 5 6 5 0 0 16 0 0 0 0 0 0 0 None
    0x22 16 dc 0 16 0 r y . 5 6 5 0 0 16 0 0 0 0 0 0 0 None
    0x4e 16 tc 0 16 0 r . . 5 6 5 0 0 16 0 0 0 0 0 0 0 None
    0x4f 16 tc 0 16 0 r . . 5 6 5 0 0 16 0 16 16 16 0 0 0 Slow
    0x50 16 tc 0 16 0 r y . 5 6 5 0 0 16 0 16 16 16 0 0 0 Slow
    0x51 16 tc 0 16 0 r . . 5 6 5 0 0 16 8 0 0 0 0 0 0 Slow
    0x52 16 tc 0 16 0 r . . 5 6 5 0 0 16 8 16 16 16 0 0 0 Slow
    0x53 16 tc 0 16 0 r y . 5 6 5 0 0 16 8 0 0 0 0 0 0 Slow
    0x54 16 tc 0 16 0 r y . 5 6 5 0 0 16 8 16 16 16 0 0 0 Slow
    0x55 16 dc 0 16 0 r . . 5 6 5 0 0 16 0 0 0 0 0 0 0 None
    0x56 16 dc 0 16 0 r . . 5 6 5 0 0 16 0 16 16 16 0 0 0 Slow
    0x57 16 dc 0 16 0 r y . 5 6 5 0 0 16 0 16 16 16 0 0 0 Slow
    0x58 16 dc 0 16 0 r . . 5 6 5 0 0 16 8 0 0 0 0 0 0 Slow
    0x59 16 dc 0 16 0 r . . 5 6 5 0 0 16 8 16 16 16 0 0 0 Slow
    0x5a 16 dc 0 16 0 r y . 5 6 5 0 0 16 8 0 0 0 0 0 0 Slow
    0x5b 16 dc 0 16 0 r y . 5 6 5 0 0 16 8 16 16 16 0 0 0 Slow
    16 GLXFBConfigs:
    visual x bf lv rg d st colorbuffer ax dp st accumbuffer ms cav
    id dep cl sp sz l ci b ro r g b a bf th cl r g b a ns b eat
    0x3e 0 tc 0 16 0 r . . 5 6 5 0 0 16 0 0 0 0 0 0 0 None
    0x3f 0 tc 0 16 0 r . . 5 6 5 0 0 16 0 16 16 16 0 0 0 Slow
    0x40 0 tc 0 16 0 r y . 5 6 5 0 0 16 0 0 0 0 0 0 0 None
    0x41 0 tc 0 16 0 r y . 5 6 5 0 0 16 0 16 16 16 0 0 0 Slow
    0x42 0 tc 0 16 0 r . . 5 6 5 0 0 16 8 0 0 0 0 0 0 Slow
    0x43 0 tc 0 16 0 r . . 5 6 5 0 0 16 8 16 16 16 0 0 0 Slow
    0x44 0 tc 0 16 0 r y . 5 6 5 0 0 16 8 0 0 0 0 0 0 Slow
    0x45 0 tc 0 16 0 r y . 5 6 5 0 0 16 8 16 16 16 0 0 0 Slow
    0x46 0 dc 0 16 0 r . . 5 6 5 0 0 16 0 0 0 0 0 0 0 None
    0x47 0 dc 0 16 0 r . . 5 6 5 0 0 16 0 16 16 16 0 0 0 Slow
    0x48 0 dc 0 16 0 r y . 5 6 5 0 0 16 0 0 0 0 0 0 0 None
    0x49 0 dc 0 16 0 r y . 5 6 5 0 0 16 0 16 16 16 0 0 0 Slow
    0x4a 0 dc 0 16 0 r . . 5 6 5 0 0 16 8 0 0 0 0 0 0 Slow
    0x4b 0 dc 0 16 0 r . . 5 6 5 0 0 16 8 16 16 16 0 0 0 Slow
    0x4c 0 dc 0 16 0 r y . 5 6 5 0 0 16 8 0 0 0 0 0 0 Slow
    0x4d 0 dc 0 16 0 r y . 5 6 5 0 0 16 8 16 16 16 0 0 0 Slow
    Here is my xorg.conf:
    Section "ServerLayout"
    Identifier "X.org Configured"
    Screen 0 "Screen0" 0 0
    InputDevice "Mouse0" "CorePointer"
    InputDevice "Keyboard0" "CoreKeyboard"
    EndSection
    Section "Files"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/100dpi:unscaled"
    FontPath "/usr/share/fonts/75dpi:unscaled"
    FontPath "/usr/share/fonts/TTF"
    FontPath "/usr/share/fonts/Type1"
    EndSection
    Section "Module"
    Load "dbe"
    Load "record"
    Load "dri"
    Load "dri2"
    Load "glx"
    Load "extmod"
    EndSection
    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "kbd"
    Option "XkbOptions" "terminate:ctrl_alt_bksp"
    EndSection
    Section "InputDevice"
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/input/mice"
    Option "ZAxisMapping" "4 5 6 7"
    EndSection
    Section "Monitor"
    #DisplaySize 260 200 # mm
    Identifier "Monitor0"
    VendorName "CPQ"
    ModelName "1504"
    Option "DPMS"
    EndSection
    Section "Device"
    ### Available Driver options are:-
    ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
    ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
    ### [arg]: arg optional
    #Option "NoAccel" # [<bool>]
    #Option "SWcursor" # [<bool>]
    #Option "ColorKey" # <i>
    #Option "CacheLines" # <i>
    #Option "Dac6Bit" # [<bool>]
    #Option "DRI" # [<bool>]
    #Option "NoDDC" # [<bool>]
    #Option "ShowCache" # [<bool>]
    #Option "XvMCSurfaces" # <i>
    #Option "PageFlip" # [<bool>]
    Identifier "Card0"
    Driver "intel"
    VendorName "Intel Corporation"
    BoardName "82810 (CGC) Chipset Graphics Controller"
    BusID "PCI:0:1:0"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Card0"
    Monitor "Monitor0"
    SubSection "Display"
    Viewport 0 0
    Depth 1
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 4
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 8
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 15
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 16
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 24
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 32
    EndSubSection
    EndSection
    If you need anything else, tell me.
    Thanks in advance!!

    Just a Bump, can someone help me please?

  • Error Loading Screens - No End Label

    In out Quality client, transactions XD01, XD02 and XD03 are all getting the following error:
    Error Loading Screens - No End Label.
    Yesterday our DEV and QAS systems crashed (I'm not particularily sure why they crashed as I was not involved with the crash/recovery; I believe it may have been power related).
    I'm simply wondering if any of you have stumbled on this error. There does not seem to be any extended error information in SAP. I tried breaking into the code; however, the first screen of the above transactions is a Modal Subscreen, so I cannot enter the /h command. I tried getting to the source by debugging from the menu, but quickly got lost in the German code/comments.
    Any tips on finding the source code would be appreciated; however, my main question is if anyone has run into this error, and if so, how was it resolved?
    We are going to try and rebuild the source. If that works, I will post to let others know.
    Thank you,
    Steven Coolbaugh

    Unfortunately, I can't see it.
    It appears as an Error Message (red bar at bottom of screen). Any attempt to F1 or click the message to recieve details on it simply kills the transaction. Therefore, I am only able to see the displayed text.
    Is there a table where I can use the text to find the msg no?
    Thank you,
    Steven Coolbaugh

Maybe you are looking for

  • Error while Deploying Opaque view

    Hi, I have created an opaque view by selecting the New Physical table...option by right clicking on the database schema. I have written a statement by selecting the Table type as SELECT in the Physical Table dialog box as follows, CREATE VIEW <view n

  • XML Gallery won't work remotely - Action Script issues

    I created an XML scrolling thumbnail gallery using a tutorial found here I then had to alter the action script to get my thumbnails to display properly -- they were spaced out or overlapping each other and not in the sequence specified in the XML fil

  • Stock list with dimension

    Dear Expert, How can i get the report for plant/storage stock (MMBE) with material dimensions (LxBxH) , Is their any standard report available in SAP or do we need to build new report? kindly advice me ASAP. regards prasad. Edited by: Shivaprasad M D

  • HP Officejet 4500G510g

    I always get a Solution center notice that parks itself on my screen that says Paper Jam, even though it is not. How do I get rid of this notice?

  • Invisible buttons still visible

    In our application when we press a button on our main screen( that is a frame), another frame is open.we have to disable the buttons on previous frame and we have achieved this but the problem is ,the disabled buttons of previous frame are visible on