Solaris Install - where's bin?

I installed WL6.0SP1 on Solaris and got a status=installed message in registry.xml.
Everything seems in order, but when I did an "ls bin" on the the wlserver6.0sp1/bin
directory, it shows as EMPTY (0 files)! What's going on? This can't be a correct
installation, can it? I cannot find the startAdminWebLogic.sh script, for example.
I re-examined all output from the Unix console install and everything looked
good. Please help. Thanks - mh.

There are no executeables, so to speak, for Unix (the ones for NT are simply convenience
programs are do not need to be used). WLS is a java program so everything is buried
under the lib directory (e.g., weblogic.jar). There are some optional pieces written in
native code -- you will find them under the lib/solaris sub-directory.
The start scripts are located under config/mydomain
Mike wrote:
I installed WL6.0SP1 on Solaris and got a status=installed message in registry.xml.
Everything seems in order, but when I did an "ls bin" on the the wlserver6.0sp1/bin
directory, it shows as EMPTY (0 files)! What's going on? This can't be a correct
installation, can it? I cannot find the startAdminWebLogic.sh script, for example.
I re-examined all output from the Unix console install and everything looked
good. Please help. Thanks - mh.

Similar Messages

  • Error on new Solaris install!

    Error: failed
    /tmp/install.dir.6427/Solaris/resource/jre/jre/lib/sparc/client/libjvm.so,
    because ld.so.1: /tmp/install.dir.6427/Solaris/resource/jre/jre/bin/
    ../bin/sparc/native_threads/java: fatal: libCrun.so.1: open failed: No such
    file or directory
    what now?
    Do I need to install the latest version of Java...1.3?

    I am having the same problem on Solaris 2.6 when I attempt to upgrade weblogic 5 to 6.0sp1. Does anyone has a resolution to this? I even installed jdk1.3 without any success../weblogic600sp1_sol.binPreparing to install...Error: failed /tmp/install.dir.7566/Solaris/resource/jre/jre/lib/sparc/client/libjvm.so, because ld.so.1: /tmp/install.dir.7566/Solaris/resource/jre/jre/bin/../bin/sparc/native_threads/java: fatal: libCrun.so.1: open failed: No such file or directoryExit 6

  • Where is bin direcotry in eval version of WLS 6.1 sp 4

    I just downloaded a copy of the eval version of WLS 6.1 sp 4 because I want
    to use it with the WebLogic Server 6.1 Workbook. However, when I install it,
    the bin directory is missing. I am also interested in looking into
    clustering with iis. Without the bin directory, I don't have the
    iisproxy.dll file. Can I use the one from version 6.0 instead? Thanks.

    I just downloaded a copy of the eval version of WLS 6.1 sp 4 because I want
    to use it with the WebLogic Server 6.1 Workbook. However, when I install it,
    the bin directory is missing. I am also interested in looking into
    clustering with iis. Without the bin directory, I don't have the
    iisproxy.dll file. Can I use the one from version 6.0 instead? Thanks.

  • Solaris Install (Sparc) cannot find disk

    When I do a 'boot cdrom' from the OK prompt, it goes through installation, but stops about 50% in saying 'no disk detected, check connection, etc..'
    There is a disk, and the installed hard drive was formatted using a command string in linux by the vendor, but the Solaris install doesn't see it.
    Any ideas?

    jkcwong, is that the message:
    <pre>
    SunOS Secondary Boot version 3.00
    prom_panic: Could not mount filesystem
    Entering boot debugger:
    [12ff05]:
    </pre>
    you get when you boot from the DCA floppy? According to some sun
    engineer that's a
    solaris bug (bug
    4344312), and the upcomming patches
    108822-02 / 110930-01 are expected to fix this problem.
    Since the problem is ACPI related, perhaps your bios has an option to
    disable ACPI support?

  • [SOLVED]PKGBUILD change to install to /usr/bin

    I have this package installed and it needs to be changed to install to /usr/bin, now it installs to usr/sbin. I really dont know much about this so if someone could point out what i need to change i would appreciate it.
    https://aur.archlinux.org/packages/?O=0 … fsarchiver
    # qt4-fsarchiver by Francois Dupoux, Hihin Ruslan and Dieter Baum
    # PKGBUILD by hasufell, updated by DaarkWel
    pkgname=qt4-fsarchiver
    pkgver=0.6.17_3
    pkgrel=1
    pkgdesc='GUI for fsarchiver'
    arch=('i686' 'x86_64')
    url='http://sourceforge.net/projects/qt4-fsarchiver/'
    license=('GPL')
    depends=('fsarchiver' 'gksu')
    makedepends=('qt4')
    source=("http://sourceforge.net/projects/${pkgname}/files/source/${pkgname}-${pkgver//_/-}.tar.gz")
    sha1sums=('8b474af6fd81d604f357348567608f450dbe83e7')
    build() {
    cd "${srcdir}/${pkgname}"
    qmake-qt4
    package() {
    cd "${srcdir}/${pkgname}"
    make
    make INSTALL_ROOT="${pkgdir}" install
    mkdir -p ${pkgdir}/usr/share/qt/translations
    rm -R ${pkgdir}/usr/share/qt4
    install -D -m644 ${srcdir}/${pkgname}/translations/*.qm ${pkgdir}/usr/share/qt/translations
    sed s/Terminal=true/Terminal=false/ -i ${pkgdir}/usr/share/applications/qt4-fsarchiver.desktop
    sed s/sudo/gksu/ -i ${pkgdir}/usr/share/applications/qt4-fsarchiver.desktop
    Last edited by cecar (2013-06-04 13:22:28)

    There is a problem in that PKGBUILD. The make shouldn't be in the package function. It should be in the build function, just after qmake-qt4.
    And the qmake project hard codes the destination to /usr/sbin. In that case, the correct PKGBUILD should be:
    # qt4-fsarchiver by Francois Dupoux, Hihin Ruslan and Dieter Baum
    # PKGBUILD by hasufell, updated by DaarkWel
    pkgname=qt4-fsarchiver
    pkgver=0.6.17_3
    pkgrel=1
    pkgdesc='GUI for fsarchiver'
    arch=('i686' 'x86_64')
    url='http://sourceforge.net/projects/qt4-fsarchiver/'
    license=('GPL')
    depends=('fsarchiver' 'gksu')
    makedepends=('qt4')
    source=("http://sourceforge.net/projects/${pkgname}/files/source/${pkgname}-${pkgver//_/-}.tar.gz")
    sha1sums=('8b474af6fd81d604f357348567608f450dbe83e7')
    build() {
    cd "${srcdir}/${pkgname}"
    qmake-qt4
    make
    package() {
    cd "${srcdir}/${pkgname}"
    make INSTALL_ROOT="${pkgdir}" install
    mkdir -p ${pkgdir}/usr/share/qt/translations
    rm -R ${pkgdir}/usr/share/qt4
    install -D -m644 ${srcdir}/${pkgname}/translations/*.qm ${pkgdir}/usr/share/qt/translations
    # workaround for fixed destination path in qmake project
    mkdir -p ${pkgdir}/usr/bin
    mv ${pkgdir}/usr/sbin/qt4-fsarchiver ${pkgdir}/usr/bin/
    rmdir ${pkgdir}/usr/sbin
    sed s/Terminal=true/Terminal=false/ -i ${pkgdir}/usr/share/applications/qt4-fsarchiver.desktop
    sed s/sudo/gksu/ -i ${pkgdir}/usr/share/applications/qt4-fsarchiver.desktop

  • I recieved error 1328, uninstalled Acrobat, need to download new Acrobat, have CS6 installed, where is the download?

    I received error 1328, uninstalled Acrobat, need to download new Acrobat, have CS6 installed, where is the download?
    I do not want a trial version, Windows 7 op system.

    Hi Mark ,
    What flavor of CS6 you want to download ?
    Please refer to the following link to select the desired flavor and you can license it by typing in your serial number.
    https://helpx.adobe.com/x-productkb/policy-pricing/cs6-product-downloads.html
    Regards
    Sukrit Dhingra

  • I purchased lion osx 10.7 and it has just said "installing" where you click to "buy now" for the last 2 hours.  There is no progress bar or anything. What is going on?

    I purchased lion osx 10.7 and it just says "installing" where you click to "buy it now" and it has been doing nothing for the past 2 hours.  There is no progress bar or anything that says its being downloaded.  I was sent an email by apple confirming I purchased it but nothing is happening.  I tried restarting the internet and clicking on download and the same thing happens.  What is going on?

    Mine says it's going to take 10 hiurs to download or something daft. I'm guessing the servers are being hit pretty hard right now. Like the poster above said, check in the 'purchased' part of the app store to make sure it's actually ticking along and then just...wait.

  • I have purchased Acrobat from the Cloud and downloaded and installed it. I received an order number but no serial number and cannot get it to finish installing Where do I get the serial number!?!

    I have purchased Acrobat from the Cloud and downloaded and installed it. I received an order number but no serial number and cannot get it to finish installing Where do I get the serial number!?!

    Like most online purchases you would normally receive the order number before the order is processed so you should be patient and allow some time for the processing to happen.  If you feel you have waited long enough then you should contact Adobe Support directly and try to get information on your order since you now have a reference for it that you can share with them.
    Phone support | Orders, returns exchanges
    http://helpx.adobe.com/x-productkb/global/phone-support-orders.html
    For the link below click the Still Need Help? option in the blue area at the bottom and choose the chat option...
    Get chat help with orders, refunds, and exchanges (non-CC)
    http://helpx.adobe.com/x-productkb/global/service-b.html ( http://adobe.ly/1d3k3a5 )

  • So what gets installed where?

    I'm looking forward to installing the new ODAC and Developer tools. But what gets installed where?
    1) I assume the developer will need the Developer Tools plus ODAC on his client machine. My developers use both Oracle Express databases and Oracle EE databases on Unix servers. Do they need a separate Oracle Home for the Oracle Express client? Is it instaled in the Oracle Home for the Oracle Express database itself or it's own home?
    2) What, if anything gets installed on the Biztalk server? Plain Oracle client or Oracle Client plus ODAC?
    3) My Windows machines have ASO-enabled clients already. Should the ODAC be installed there if I want to connect to ASO-enabled databases?
    4) Is anything required for the user of the application other than the .Net runtime?
    So many questions.. So ignorant..

    ODAC stands for Oracle Data Access Components and Oracle Developer Tools is one of the components. The install lists all the components and you can choose one or more from the list.
    Developer would have to install the appropriate components from the ODAC install. ODAC install is available only for Windows platforms so these components cannot be installed on Unix servers. ODAC install also cannot be used to install components in Oracle Express Home. You can install ODAC components in an existing Oracle 10gR2 Home or in a new Oracle Home.
    You need ODP.NET runtime in addition to .NET runtime to run ODP.NET applications. ODP.NET runtime is nothing but ODP.NET component in the ODAC install.

  • HT5246 After the tool is installed, where can it be found?

    After the tool is installed, where can it be found?

    It is not anywhere on the computer where you could run it again, nor is that necessary. If you installed the removal tool, there is no need to do anythng else.

  • If deleting a note page from your note apps by mistake is there anyway to retrieve it without going through iTunes or icloud, is there a deleted bin that is installed where you could decide if you want to have it deleted for good or restored.

    If deleting a note page from your note apps by mistake is there anyway of retreiving it without going through iTunes or iCloud. This is the new age of technology and there should be a deleted bin as in most computers or websites. There must be a way..

    There is no undelete facility on the iPad, when you delete something then unless the app itself has an undelete option (which the built-in Notes app hasn't) then it is gone. If it was on the iPad when you last backed up then you could try restoring to the backup, but you would need to restore the whole iPad, you can't just do a single app.

  • Installing XI 3.0 on Solaris - install error occurs

    WAS 640 oracle successfully installed, then I start the XI install and right at the begining I get the following error:
    WARNING 2004-11-02 13:06:50
    Execution of the command "/usr/bin/java '-classpath' '/tmp/sapinst_exe.29773.109
    9418777/JAR/ins-j2ee.jar' '-d64' 'com.sap.ins.j2ee.GetDataModel'" finished with
    return code 1. Output:
    Error occurred during initialization of VM
    java.lang.NoSuchMethodError: java.lang.Class.getName0()Ljava/lang/String;
    WARNING 2004-11-02 13:06:50
    Could not determine a valid JAVA_HOME directory from the environment.
    Transaction begin ********************************************************
    ERROR 2004-11-02 13:06:50
    FKD-00037  Query did not return a result.
    ERROR 2004-11-02 13:06:50
    FKD-00038  Query did not return a result.Select attribute SID, statement: WHERE
    ROWNUM  =  0
    Transaction end **********************************************************
    Thanks
    John

    Hi John,
    1) Check environment of your OS user (root?) by command env and find JAVA_HOME
    2) Add/modify the path
    JAVA_HOME=<blahblah>
    export JAVA_HOME
    Jiri

  • How to install patches with .bin extension

    I have downloaded Solaris_JDK_1.2.2_07_sparc.bin patches, but how can
    i install this ?? It is not like .tar.gz.....Help

    Hi,
    Did you download the patches or the JDK kit?
    Based on the file you said you downloaded it looks like you downloaded the whole JDK 1.2.2_07 kit. If you wish to install this all you have to do is download or move the file to where you want it to install and change the permissions on the file so you can execute it (chmod 755 Solaris_JDK_1.2.2_07_sparc.bin) then in a terminal just type:
    #Solaris_JDK_1.2.2_07_sparc.bin.
    This will install it for you. Make sure you update your path and any links that might be pointing to older versions of the JDK to the new JDK you just installed.
    If you it was the patches you ment to download the file you download should look something like "1.2.2_07_patches_sparc_OSVERISON.tar"
    to see what patches you have installed in a terminal type:
    #showrev -p
    To install the patches you need to extract the patch archives you wish to install. And then issue the following command:
    #patchadd -M <your_patch_directory> <patch-id>
    Please also consult the README files that come along with the patches as they might be of use to you also.
    Hope This Helps
    Regards,
    Andrew
    Sun Developer Technical Support

  • LC Solaris Install Problems

    The installer, (InstallShield) does not Initialize correctly. When I run the command ./solaris_livecycle8_setup.bin with no options, The first install screen (unpacking and initializing) does not stop, the Second page loads, the Next and Cancel commands do not function.
    If I use -cp:p ./suite.jar -cp:p ./stage.jar the Main screen loads mostly but again can not move forward or cancel.
    The install log shows many java class not found exceptions relating to the InstallShield.
    System Info:
    Solaris 10 (zoned)
    Java 1.5.0_14 64/32 (tried both)
    32G Ram
    > 30 Gb drive space available
    Log File:
    Apr 1, 2009 11:54:57 AM), Install, com.installshield.wizard.swing.SwingWizardUI, wrn, skipping bean Wizard Bean
    Place Holder (include_startupbean) because it could not be loaded
    (Apr 1, 2009 11:54:57 AM), Install, com.installshield.wizard.swing.SwingWizardUI, dbg, The wizard bean "include_
    startupbean" could not be loaded because the following exception occurred:
    com.jxml.quick.QPE: java.lang.ClassNotFoundException: com.adobe.installshieldx.wizard.IncludeCustomCmd
    (Apr 1, 2009 11:54:57 AM), Install, com.installshield.wizard.swing.SwingWizardUI, wrn, skipping bean Wizard Bean
    Place Holder (suiteKillSplashScreen) because it could not be loaded
    (Apr 1, 2009 11:54:57 AM), Install, com.installshield.wizard.swing.SwingWizardUI, dbg, The wizard bean "suiteKil
    lSplashScreen" could not be loaded because the following exception occurred:
    com.jxml.quick.QPE: java.lang.ClassNotFoundException: com.adobe.installshieldx.wrapper.wizard.KillSplashScreen
    (Apr 1, 2009 11:54:58 AM), Install, com.installshield.wizard.swing.SwingWizardUI, wrn, skipping bean Wizard Bean
    Place Holder (suiteSetupOSType) because it could not be loaded
    (Apr 1, 2009 11:54:58 AM), Install, com.installshield.wizard.swing.SwingWizardUI, dbg, The wizard bean "suiteSet
    upOSType" could not be loaded because the following exception occurred:
    com.jxml.quick.QPE: java.lang.ClassNotFoundException: com.adobe.installshieldx.wizard.SetupOSType
    (Apr 1, 2009 11:54:58 AM), Install, com.installshield.wizard.swing.SwingWizardUI, wrn, skipping bean Wizard Bean
    Place Holder (suiteSetOSOn) because it could not be loaded
    (Apr 1, 2009 11:54:58 AM), Install, com.installshield.wizard.swing.SwingWizardUI, dbg, The wizard bean "suiteSet
    OSOn" could not be loaded because the following exception occurred:........

    issue the boot cdrom command, the
    solaris installer starts at openprom, then gives what
    looks to be a kernel dump, and the system reboots.Can you paste the error here?
    Thanks,
    Daryl

  • Adobe Creative Cloud Desktop failed to install, where to get help?

    Hi, I have contacted Adobe three times now to get my creative cloud app working again. Everything worked beautifully until last July while updating it crashed and I've never been able to successfully install the app again. The first call I had with tech support was a failure. After 1 hr on the phone and numerous different tries at correcting the problem, I was informed I'd probably have to do a complete uninstall of every Adobe product on the machine (at the time I was running IOS Mountain Lion, on a 2012 27" iMac 3.4 GHz Intel Core i7 w/16GB). I decided to wait to do the uninstall because this is my primary machine I was too busy to risk being down for any unknowns.
    Now I have the time and ever since I installed Mavericks weird stuff is going on with PS and I was hoping there might be a fix in the updates. Called Tech support, made an appointment last week, scheduled a callback for 2hrs later, never got the call. Called again today, got my callback 1/12 hrs later. Support guy spent about 10 minutes with me doing everything I did through screen sharing, no luck. Tried uninstalling an Adobe program, no luck. Tried using the cleaner tool, no luck. The phone connection dropped and the cursor on my screen stopped moving. That was it?!?!? No call back, no attempt to continue, he had my number.   Called back, would have to schedule another callback 2 hrs later.
    Where is Adobe customer support (figuratively)?? - I have been a customer of Adobe products for 15 years. I pay them every month. This not only upsets me, it worries me because Adobe products are my primary tools and my confidence in them and the folks they have on the phone is dwindling.
    Can anyone direct me to a forum that deals with this issue? Is there anyone accountable, with a good phone connection I can call that is not on the other side of the planet?
    Your suggestions are greatly appreciated! Thx.

    Hi, I have contacted Adobe three times now to get my creative cloud app working again. Everything worked beautifully until last July while updating it crashed and I've never been able to successfully install the app again. The first call I had with tech support was a failure. After 1 hr on the phone and numerous different tries at correcting the problem, I was informed I'd probably have to do a complete uninstall of every Adobe product on the machine (at the time I was running IOS Mountain Lion, on a 2012 27" iMac 3.4 GHz Intel Core i7 w/16GB). I decided to wait to do the uninstall because this is my primary machine I was too busy to risk being down for any unknowns.
    Now I have the time and ever since I installed Mavericks weird stuff is going on with PS and I was hoping there might be a fix in the updates. Called Tech support, made an appointment last week, scheduled a callback for 2hrs later, never got the call. Called again today, got my callback 1/12 hrs later. Support guy spent about 10 minutes with me doing everything I did through screen sharing, no luck. Tried uninstalling an Adobe program, no luck. Tried using the cleaner tool, no luck. The phone connection dropped and the cursor on my screen stopped moving. That was it?!?!? No call back, no attempt to continue, he had my number.   Called back, would have to schedule another callback 2 hrs later.
    Where is Adobe customer support (figuratively)?? - I have been a customer of Adobe products for 15 years. I pay them every month. This not only upsets me, it worries me because Adobe products are my primary tools and my confidence in them and the folks they have on the phone is dwindling.
    Can anyone direct me to a forum that deals with this issue? Is there anyone accountable, with a good phone connection I can call that is not on the other side of the planet?
    Your suggestions are greatly appreciated! Thx.

Maybe you are looking for

  • How do i get my website to show correctly on firefox

    my website is: www.thebuildpro.com it shows up correctly on internet explorer... How can I fix it to make it show up correctly on mozzilla ? Is there a program to convert it?? Or can I just add something in the code? Thx

  • Importing a path into photoshop

    I created a path in Photoshop CS6 and exported it as a "Paths to Illustrator" vector file to the desktop. Now I want to import the path into another PS file. How do I do this? I cannot copy and paste the path as I no longer have the original file tha

  • Keep mouse cursor in applet box

    Hi, I could really use some help with this one. I need to prevent my mouse cursor from being able to leave the applet box. I have treid doing this with final int's setting the limit for the max and min range of mouse movement but no joy. Please help.

  • Send Array to CFC Webservice ?

    Hi, want to be able to send my coldfusion webservice an array that I have in flex. Kinda like a shopping cart. I have the array working in Flex, add remove so forth..... but i cant figure out how to take this data and get it to the server. Hopefully

  • Order photos by date

    I have been having difficulties for some time now regarding the order photo's are sync'd to my i-devices.  When I check the pictures under the general library, the photos are in some random order.  I understand that it is connected to how the photo p