CF8 Linux Install Fails if installed on current apache

Hello,
I have tried to install CF8 on SUSE 10.2 and RHEL4 and both
fail with the same symptom if try to install into a current apache
2 web server. If I allow it to install its own server it works.
I need to use the integrated server because I am trying to
use the eclipse debug support which looks like it will only run on
localhost

Thanks Ken,
=========================================
ColdFusion 8 has been started.
ColdFusion 8 will write logs to
/opt/coldfusion8/logs/cfserver.log
=========================================
it works well now after renaming
/opt/coldfusion8/bin/cf-connectors.sh to
/opt/coldfusion8/bin/ran-cf-connectors.sh
Also do I have to add belw to httpd.conf?
</IfModule>
# JRun Settings
LoadModule jrun_module
"/opt/coldfusion8/runtime/lib/wsconfig/1/mod_jrun.so"
<IfModule mod_jrun.c>
JRunConfig Verbose false
JRunConfig Apialloc false
JRunConfig Ssl false
JRunConfig IgnoreSuffixmap false
JRunConfig Serverstore
"/opt/coldfusion8/runtime/lib/wsconfig/1/jrunserver.store"
JRunConfig Bootstrap 127.0.0.1:51000
#JRunConfig Errorurl <optionally redirect to this URL on
errors>
JRunConfig jrun-handler .jsp .jws .cfm .cfml .cfc .cfswf .cfr
</IfModule>
if YES, the error found "Starting httpd: httpd: Syntax error
on line 365 of /etc/httpd/conf/httpd.conf: Cannot load
/opt/coldfusion8/runtime/lib/wsconfig/1/y
If NO,
http://xx.xx.xx.xx/CFIDE/administrator/index.cfm
will not open well.
our appropriate pathing for the apache installation as below:
-dir /etc/httpd/conf \
-bin /usr/sbin/httpd \
-script /etc/rc.d/init.d/httpd \
Which came with defauft RH5 installed.
Thanks & Best Regards

Similar Messages

  • "Component install failed" with installed Flash CS3

    Did a clean install of CS3 without Flash, but find that I need to use it now.
    Any attempt to install now just leaves me with a "Component install failed" after 20+ mins install. Extremely frustrating.
    I see this in the Console.app:
    [0x0-0x148148].com.adobe.Installers.Setup hdiutil: attach failed - codec overrun
    Thoughts?

    OS 10.5.6
    Uninstalled from the original installer disc.
    Cleanscript = yes
    DiskWarrior = no
    Original media install.
    Did the procedure again, same thing. Even manually deleted the Flash browser plug-in, thinking that might be something to do with it.
    Same Console error: [0x0-0x580580].com.adobe.Installers.Setup hdiutil: attach failed - codec overrun

  • Silent Install fails, normal install works. Application Server 10.1.2

    Hi All,
    I'm setting up an automated install of Application Server 10g 10.1.2.0.2 (Forms and Reports). When I install it silently using a silent install file, the install completes succuessfully but it isn't actually fully functional, and it isn't recognized by OEM Grid Control.
    When I install it normally, using the gui, it works fine and is recognized by the OEM Grid Crontrol.
    I'm running on Solaris 10 zones, and I used the recording feature for Silent installations to generate a silent file, but that didn't help either.
    Any advice? Tips? Information and your own personal experience would be highly appreciated.
    Thanks

    I realized that I was missing a few parameteres that I found at this site:
    http://download.oracle.com/docs/cd/B32110_01/install.1013/b32411/basic_install.htm#BABCHEJI

  • Grub-install fails to install core.img to boot partition

    I am trying to reinstall Arch onto a Dell Precision T3600 workstation, where it used to work fine, but I am stuck at the booloader step.
    Details:
    1. I have only one disk, partioned with gpt.
    2. I am using Grub with Bios
    3. As per installation instructions (preliminary requirements, BIOS systems), I created a 1007KiB boot partition at the beginning of the disk, of type ef02.
        The partition (which is umber 5 in my partition table) goes from sector 34 to sector 2047
    4. I mounted the root partition to /mnt, arch-chroot'd into it, and ran
    # grub-install --target=i386-pc --recheck --debug /dev/sdx
    # grub-mkconfig -o /boot/grub/grub.cfg
    5. I generated the /boot/grub.cfg file with the recommended
    # grub-mkconfig -o /boot/grub/grub.cfg
    Results:
    when I try to boot, grub starts, but it cannot find anything to boot from and drops me into its shell.
    Furthermore (this may be unrelated), when I take a look at the dis again (after rebooting from the install disk), I see that the gpt partition table is corrupted. Exact message  from gdisk is:
    Caution: invalid backup GPT header, but valid main header: regenerating backup header from main header:
    Partition table scan:
    MBR: protective
    BSD: not present
    APM: not present
    GPT: damaged
    Can anyone tell me where I am going wrong? The Installation manual is not very explicit on how to deal with the (very small) boot partition. Is grub-install supposed to create the core.img file even when the partition is not mounted? Or should it be mounted. It certainly cannot contain eveyrthing that goes into /boot (which is over 100Mb).
    Thanks for the help

    Head_on_a_Stick wrote:
    Your partition table is corrupted; you could clear it using:
    # dd if=/dev/zero of=/dev/sd<x> bs=512 count=1; sync
    Then use gdisk to recreate your partition table and re-install.
    Alternatively, you could ask gdisk to re-create the backup GPT header from the main header: start up the program & press "r" followed by "d".
    I had already fixed the partition table exactly as you suggested---sorry for not having been clear. It still does not boot. 
    Head_on_a_Stick wrote:
    Your partition table is corrupted; you could clear it using:
    If it still will not boot, post your /boot/grub/grub.cfg along with the output of:
    # gdisk -l /dev/sd<x>
    lsblk -f
    Here they are:
    /boot/grub.cfg:
    # DO NOT EDIT THIS FILE
    # It is automatically generated by grub-mkconfig using templates
    # from /etc/grub.d and settings from /etc/default/grub
    ### BEGIN /etc/grub.d/00_header ###
    insmod part_gpt
    insmod part_msdos
    if [ -s $prefix/grubenv ]; then
    load_env
    fi
    if [ "${next_entry}" ] ; then
    set default="${next_entry}"
    set next_entry=
    save_env next_entry
    set boot_once=true
    else
    set default="0"
    fi
    if [ x"${feature_menuentry_id}" = xy ]; then
    menuentry_id_option="--id"
    else
    menuentry_id_option=""
    fi
    export menuentry_id_option
    if [ "${prev_saved_entry}" ]; then
    set saved_entry="${prev_saved_entry}"
    save_env saved_entry
    set prev_saved_entry=
    save_env prev_saved_entry
    set boot_once=true
    fi
    function savedefault {
    if [ -z "${boot_once}" ]; then
    saved_entry="${chosen}"
    save_env saved_entry
    fi
    function load_video {
    if [ x$feature_all_video_module = xy ]; then
    insmod all_video
    else
    insmod efi_gop
    insmod efi_uga
    insmod ieee1275_fb
    insmod vbe
    insmod vga
    insmod video_bochs
    insmod video_cirrus
    fi
    if [ x$feature_default_font_path = xy ] ; then
    font=unicode
    else
    insmod part_gpt
    insmod ext2
    set root='hd0,gpt3'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt3 --hint-efi=hd0,gpt3 --hint-baremetal=ahci0,gpt3 74c69286-1775-44de-90c8-3834585da6b6
    else
    search --no-floppy --fs-uuid --set=root 74c69286-1775-44de-90c8-3834585da6b6
    fi
    font="/usr/share/grub/unicode.pf2"
    fi
    if loadfont $font ; then
    set gfxmode=auto
    load_video
    insmod gfxterm
    set locale_dir=$prefix/locale
    set lang=en_US
    insmod gettext
    fi
    terminal_input console
    terminal_output gfxterm
    if [ x$feature_timeout_style = xy ] ; then
    set timeout_style=menu
    set timeout=5
    # Fallback normal timeout code in case the timeout_style feature is
    # unavailable.
    else
    set timeout=5
    fi
    ### END /etc/grub.d/00_header ###
    ### BEGIN /etc/grub.d/10_linux ###
    ### END /etc/grub.d/10_linux ###
    ### BEGIN /etc/grub.d/20_linux_xen ###
    ### END /etc/grub.d/20_linux_xen ###
    ### BEGIN /etc/grub.d/30_os-prober ###
    ### END /etc/grub.d/30_os-prober ###
    ### BEGIN /etc/grub.d/40_custom ###
    # This file provides an easy way to add custom menu entries. Simply type the
    # menu entries you want to add after this comment. Be careful not to change
    # the 'exec tail' line above.
    ### END /etc/grub.d/40_custom ###
    ### BEGIN /etc/grub.d/41_custom ###
    if [ -f ${config_directory}/custom.cfg ]; then
    source ${config_directory}/custom.cfg
    elif [ -z "${config_directory}" -a -f $prefix/custom.cfg ]; then
    source $prefix/custom.cfg;
    fi
    ### END /etc/grub.d/41_custom ###
    ### BEGIN /etc/grub.d/60_memtest86+ ###
    ### END /etc/grub.d/60_memtest86+ ###
    lsblk -f (sda1 is the swap partition, sda5 is the boot partition):
    NAME FSTYPE LABEL UUID MOUNTPOINT
    sda
    sda1
    sda3 /
    sda4 /home
    sda5
    sr0
    loop0
    loop1
    arch_root-image /etc/resolv.conf
    loop2
    arch_root-image /etc/resolv.conf
    Finally, here is the partition table from gdisk -l
    GPT fdisk (gdisk) version 0.8.10
    Partition table scan:
    MBR: protective
    BSD: not present
    APM: not present
    GPT: present
    Found valid GPT with protective MBR; using GPT.
    Disk /dev/sda: 1953525168 sectors, 931.5 GiB
    Logical sector size: 512 bytes
    Disk identifier (GUID): 8B675D08-1A4A-44D3-ADC3-A7763E331455
    Partition table holds up to 128 entries
    First usable sector is 34, last usable sector is 1953525134
    Partitions will be aligned on 8-sector boundaries
    Total free space is 0 sectors (0 bytes)
    Number Start (sector) End (sector) Size Code Name
    1 2048 67112959 32.0 GiB 8200 Linux swap
    3 67112960 276828159 100.0 GiB 8300 Linux filesystem
    4 276828160 1953525134 799.5 GiB 8300 Linux filesystem
    5 34 2047 1007.0 KiB EF02 BIOS boot partition

  • Acrobat Standard XI install fails with Install Interrupted

    I have a DVD for this that came with my new Fuji SnapScan. I have tried installing from the DVD, and from a copy on the Hard drive, and downloaded Acrobat Standard XI from this site, and all give me the same result. This is on a Windows 7 computer. I have also tried with internet disconnected and my anti-virus turned off. What else can I do??? On each try I enter the full serial number from the DVD.

    Hi John,
    Can you please post a screenshot of the error you see.
    Please try the follwoing steps and let me know if that worked.
    > Enable the hidden Admin Account on Windows 7 ( Ref :  http://www.howtogeek.com/howto/windows-vista/enable-the-hidden-administrator-account-on-wi ndows-vista/ )
    > Disable all Non-Microsoft Startup Services. (Ref : http://helpx.adobe.com/x-productkb/global/disable-startup-items-services-windows.html )
    > Disable all the Antivirus softwares like CA, Norton,Mc Afee etc. temporarily from the computer.
    Reboot and try installing in the new enabled Admin user account and check.
    Regards,
    Rave

  • Sun Studio 10 Linux, RHEL3 U4, install fails on openmotif21.

    Hello everyone,
    As a long-time user of Sun WorkShop... I mean Forte.. I mean Studio; it was with great anticipation that I downloader Sun Studio 10 for Linux.
    On one machine it failed to install and on another it installed properly.
    Here are the details:
    - Machine 1: RHEL3 U2 (x86/i686), small install: Installation of Studio 10 went fine.
    - Machine 2: RHEL3 U4 (x86/i686), complete install : Installation of Studio 10 failed. The following can be gathered from the logs under /var/opt/sun:
    [....snip....]
    Installing Sun Studio Software
    Log file: /var/opt/sun/install/logs/Sun_Studio_Software_install.A04060111
    Installed: /var/prod/com.sun.studio_10/uninstall_Sun_Studio_Software.class
    Uninstaller is at: /var/prod/com.sun.studio_10/uninstall_Sun_Studio_Software.class
    Standalone Tools: Building Software
    Installing RPM: sun-dmake-10.0-1
    [....snip....]
    System packages supporting Sun Studio Software
    Installing RPM: openmotif-2.1.31-2_IST
    error: Failed dependencies:
    openmotif < 2.2.2 conflicts with openmotif21-2.1.30-9.RHEL3.4
    Error: RPM openmotif-2.1.31-2_IST install failed}.
    Install complete. Package: openmotif-2.1.31-2_IST
    rpm: Skipping rpm remove of openmotif-2.1.31-2_IST, not installed.
    rpm: Skipping rpm remove of sun-svc-locale-zh-10.0-1, not installed.
    [....snip....]
    And everything is removed. Is this issue documented somewhere? Is there a workaround?
    Thanks for reading,
    Vincent

    Deselecting 'system supporting packages' from the Sun Studio 10 installation list made the trick and Studio finished installing.
    However, I have a few concerns:
    1) Since Studio will be using the system's openmotif, will it be supported? (I guess not).
    2) Since openmotif-2.1.31-2_IST.i386.rpm from the Studio 10 IDE kits lands under /usr/OpenMotif-2.1.31 and should not conflict with any kind of other/system openmotif, why didn't SUN just create a sun-openmotif-support package? This would prevent a naming conflict when trying to install on RHEL3 if RHEL's openmotif21 is already installed?
    3) It appears to work fine, even without SUN's provided openmotif.
    Cheers,
    Vincent

  • Install of CUCM 8.6.1.10000-43 on VMWare fails on installing progmeter

    Hi, Everyone
    First time post here, and first time installing CUCM (any version).
    I built a VM using a downloaded OVA template for CUCM 6.5.1.10000-43, and the install fails with a critical stop.  Once I figured out how to dump logs to the virtual serial port, and looked at the install.log, I found the following information that looks like where the install failed (these are the only LVL::Error and LVL::Critical messages in the log).
    It looks like install failed to install the progmeter application component.
    Does anyone know what this app does?  Any ideas on why it might have failed to install and possible workaround?
    I may already have the answer to the question, as I'm attempting install on a VM running on VMWare vServer (rather than ESX/ESXi/vSphere).  It is possible that simply being on an unsupported configuration is my problem.  I'm trying to work with the equipment immediately available to me, but fully understand that I may have set myself up for failure by even attempting this.
    Any help is appreciated greatly.
    Regards,
    Sean C
    INSTALL LOG SNIPPET
    08/17/2011 17:51:51 component_install|File:/opt/cisco/install/bin/component_install:743, Function: exec_progmeter(), /opt/cisco/install/bin/progmeter failed (1)|<LVL::Error>
    08/17/2011 17:51:51 appmanager.sh|Internal Error, File:/usr/local/bin/base_scripts/appmanager.sh:155, Function: install(), failed to install application components|<LVL::Critical>
    08/17/2011 17:51:51 post_install|File:/opt/cisco/install/bin/post_install:869, Function: install_applications(), /usr/local/bin/base_scripts/appmanager.sh -install failed (1)|<LVL::Error>
    08/17/2011 17:51:51 post_install|Exiting with result 1|<LVL::Info>
    08/17/2011 17:51:51 post_install|INSTALL_TYPE="Basic Install"|<LVL::Debug>
    08/17/2011 17:51:51 post_install|File:/opt/cisco/install/bin/post_install:570, Function: check_for_critical_error(), check_for_critical_error, found /common/log/install/critical.log, exiting|<LVL::Error>
    08/17/2011 17:51:52 post_install|(CAPTURE) Mail notification cancelled - smtp server address for email not found! [/usr/local/platform/conf/platformConfig.xml]|<LVL::Debug>
    08/17/2011 17:51:52 display_screen|Arguments: "Critical Error" "The installation has encountered a unrecoverable internal error. For further assistance report the following information to your support provider.
    "/opt/cisco/install/callmanager/scripts/cm_msa_post.sh install PostInstall 8.6.1.10000-43 8.6.1.10000-43 /usr/local/cm/ /usr/local/cm/ /common/log/install/capture.txt " terminated. Exceeded max time (360)
    The system will now halt.
    Continuing will allow you to dump diagnostic information before halting." "Continue"|<LVL::Debug>

    Hi,
    Has anyone found a fix for this?
    I am trying to run call manager 8.6.1 on the following enviroment
    VMware ESXI 4.1
    4GB of RAM
    80 GB HDD Space
    I have allocated the VM one CPU
    In regards to vsergeyey reponse I have checked the network adapter and this is flexible.
    I have run the OVA template firstly before mounting the image
    I have tried installing numerous times.
    Each and every time near the "Installing Database Component" I get the following error;

  • USB Console (Serial) Driver fails to install on Windows 8.1 x64

    The USB console cable driver v3.1 will not install on Windows 8.1 x64.  Had a similar problem with Windows 7 x64 but this was fixed using Greg's (greggar25) excellent step-by-step procedure (see post: https://supportforums.cisco.com/discussion/11492306/usb-console-driver-install-failing).
    I am using the driver from this link: http://software.cisco.com/download/release.html?mdfid=282774228&flowid=7442&softwareid=282855122&release=3.1&relind=AVAILABLE&rellifecycle=&reltype=latest
    I followed the same procedures I did for Windows 7 and the install goes without a hitch.  Reboot and connect the USB cable, opened Device Manager and now I have a COM Port randomly appearing and disappearing with its number incrementing well above 1,000.
    A few times while it appeared for a few seconds, I was able to right click on the properties, update the driver and chose Cisco Serial and it settled down but it did not assign a COM port.  Then a few seconds later, it starts the disappearing/reappearing thing again.
    Anyone have luck getting this to work with Windows 8.1 x64?

     Hi,
    open Device Manager by simply typing the words on the Windows 8.1 Start Screen. The Search Charm opens and click Device Manager in the displayed list. 
    In Device Manager a new hardware category, CiscoUsbConsoleWindowsDriver, is displayed. It has two components: the Cisco Bus enumerator and the Cisco USB to Serial adapter. Expanding the Ports hardware category shows a new Cisco Serial port. 
     or 
    Look into below 
    https://supportforums.cisco.com/discussion/11492306/usb-console-driver-install-failing
    1) Install the usb console driver\windows 64\setup(x64)
    2) Follow the wizard and accept the defaults
    3) Restart the computer (the installer usually says it needs a restart)
    4) After restarting the computer, plug in the usb cable
    5) The computer should say installing Device driver software and fail at the Cisco Virtual Comm Port00
    6) Click the Windows button, right click computer, manage
    7) Under Computer Management, Click Device Management
    8) Go to Ports (COM & LPT)
    9) You should see the Cisco Virtual Comm Port00 with a Yellow Exclamation point on it
    10) Right Click on the Cisco Virtual Comm Port00 and select Properties
    11) Click the Driver Tab
    12) Click Update Driver
    13) Select Browse my computer for driver software
    14) Select Let me pick from a list of device drivers on my computer
    15) Choose the Cisco Serial Driver
    16) Device Driver is installed successfully, take note of the com port it is using and enjoy.
    HTH 
    Sandy 

  • Adobe acrobat pro 9 install failed

    I installed adobe acrobat pro 9  right at the end it gives me a installed failed. then it complete and says your installed is complete. but it crashes all the time
    I tried to repair it from the help menu same thing happens install failed. then install complete. when I do an update same thing happens it fails then complete.
    I have uninstalled it and used the cleaner and reinstalled with the same problem.

    We cannot know. You are not offering any system information or any details about the error messages.
    Mylenium

  • Photoshop Elements 12 fails while installing shared technologies.

    I am having the exact same problem as all these folks. Yes I have tried all these things, yes I have followed all the links, and scoured the internet:
    http://forums.adobe.com/message/5914286
    http://forums.adobe.com/message/5909390#5909390
    http://forums.adobe.com/message/5904696#5904696
    Elements 12 install fails during install of Adobe Organizer. No indication of problems in the logs, just fails and rolls back. Near as I can tell the folks at adobe don't know what the real problem is, they only have a long series of very complicated and arcane tricks that _might_ "fix" the problem. I have tried all of them in every imaginable combination and still can't get elements 12 to install. I have installed stock, plain vanilla win7, applied hotfixes, tried to install and it still fails.
    I repeat. This install failed for me in an identical fashion on a clean win7 box.
    Any software that requires even one of these hack measures to install should be sent back to the shop for more testing. I've been told variously to try all these things, and more!
    copy the installer to the root of c:
    Delete this folder or that folder
    Make a new admin account and install with that
    Edit the registry
    Turn off services in msconfig
    Install in safe mode
    What would be most helpful for me right now would be either 1) a patch to fix this critical install error or 2) explicit explanation from Adobe about what the real problem is so I can fix it myself.
    I'm a little edgy, sorry for the tone. This is the single worst install experience I've ever encountered.

    Hi Jeff,
    To follow up, I had an adobeconnect session today with a very competent and friendly adobe tech. It looks like we have resolved the issue. He said there was some kind of problem with air and/or bridge not keeping their files updated, not 100% on that part so don't quote me. He said one way to fix is to completely uninstall anything adobe and start from scratch. The other option is a little hackish, but it works for me and saves me the trouble of completely redoing the install. To follow up here are the steps to get this working, ymmv:
    - Go through the Adobe Premiere Elements 12 install process up to the point where installing shared components crashes. Do not click OK.
    - Start the task manager (ctrl+alt+del)
    - Go to the processes pane and kill msiexec.exe*32 process, the adobe installer should die.
    - Delete the Adobe Premiere Elements 12 link that's created on the Desktop. Do not use this link, it points to the Welcome screen and crashes.
    - Also delete C:\Program Files\Adobe\Adobe Premiere Elements 12\Adobe Premiere Elements 12.exe, for same reason as above.
    - The exe that works is in that same directory called "Adobe Premiere Elements.exe", it doesn't go to the welcome screen and it does seem to work.
    - Now it requires Adobe Application Manager to run, and we just killed the installer so you have to go grab it from:
         http://www.adobe.com/appsmanager
    - You don't even have to actually run it, just download and install and you're good (If you do run it it updates itself to Adobe Creative Cloud which has unknown consequences).
    - Now run Adobe Premiere Elements.exe and plug in your adobe id
    - ftw, should be good to go.
    I tried this on 3 different machines. The installer broke identically on all and this procedure got it working. NB - Organizer apparently still isn't installed, but that doesn't bother me. Not sure if this will impact long term operations.
    Thanks for your assistance, this does seem to be working for me now.
    -isaac

  • PSE 11 Fails to Install - Shared Technologies Error

    When installing Photoshop Elements 11 on a Windows 7 computer, the install fails while installing the Organizer. The error message refers to installing Shared Technologies.
    The PC in question has PSE 10 installed and CS5. Based on previous experience, I tried ending the CS5 Bridge process, which has caused problems in the past.
    I have tried multiple times with the same result.
    Any ideas?
    Thanks in advance.

    You may need to install from a new user account.
    See this other thread for further help.
    http://forums.adobe.com/thread/1146291?tstart=60
    Replacement links for the final two which in the thread are the Dutch versions:
    http://helpx.adobe.com/en/x-productkb/global/create-local-administrator-account-windows.ht ml
    http://helpx.adobe.com/en/x-productkb/global/restart-windows-modified-mode-windows.html

  • Business Contact Manager fails to install component Mssml.biz

    Windows 8.1 with office 2013, attempting to install x.86 32 bit version of BC upgrade 2010. each install fails to install this component mssml.biz. Have attempted everything published on this problem i could find, clean install, run fix it, deleted everything
    SQL in programs, cleaned out registry, reboot, installed SQL express as stand alone then BC, all fail with same error.  Unit is 100% up to date on all patches. 

    Hi,
    Thanks for posting your question here, I will be assisting you on this issue.
    For getting a better understanding of what has got in the way of installation, we may need to collect installation logs during BCM Setup:
    For Windows Installer Setup log
                drive:\setup.exe
    /l*v c:\Setup_log_name
    The MSDE Setup log
              MSDE Setup log is automatically created during Setup. You can find it under temp folder with
              name like
    Msde_setup_number.log (Ex. Msde_setup_1108685580.log)
              click
    Start, point to  Run, type %temp%, and then click
    OK.
    - The MSDE configuration log
    The MSDE configuration log is named Cnfgsvr.out. the Cnfgsvr.out log located one of the
               following
    folders, depending on the version of BCM you are using:
                   . Business Contact Manager:
                        C:\Program Files\Microsoft SQL Server\MSSQL$MICROSOFTBCM\Install
                  . Business Contact Manager Update:
                       C:\Program Files\Microsoft SQL Server\MSSQL$MICROSOFTSMLBIZ\Install
    Please send the log through mail to:
    [email protected]
    As you’ve tried a lot trouble shooting steps already, let not repeating those steps till we have the log.
    This Article is a detailed reference for log collecting and some trouble shooting steps which you might already tried.
    Thanks for your understanding.

  • CS3 install will not install Acrobat 8 in windows 8.1 (iMac OS X running parallels 10)

    Hi folks,
    I've been merrily and happily running CS3 in XP on a windows virtual machine using parallels 10 on my iMac, until XP gave up the ghost.  I deleted the VM and built a new one with windows 8.1 installed.  When I run CS3 install, the install fails to install Acrobat simply citing an installation error in the install window (no further detail provided).  I am able to install Acrobat by delving into the CD sub-folders and running the setup application, but I end up with an instance of Acrobat that does not recognise my CS3 serial number......
    Any suggestions

    um, how do i do that?  I can only find a compatibility option which lists currently installed applications to make them work better, not an option to make windows 8.1 into xp compatibility mode to actually do an install?

  • Webtier Utilities 11.1.1.2 failed to install on Oracle Linux OEL 5.7 x86_64

    Hi,
    Webtier Utilities 11.1.1.2 failed to install on Oracle Linux OEL 5.7 x86_64 (Linux vilje05 2.6.18-274.3.1.0.1.el5 #1 SMP Wed Sep 7 06:02:50 EDT 2011 x86_64 x86_64 x86_64 GNU/Linux):
    [oracle@vilje05 ~]$ cd install/Disk1/
    [oracle@vilje05 Disk1]$ ./runInstaller -silent -response /home2/oracle/my_response.txt -invPtrLoc /home2/oracle/orainv.loc
    Starting Oracle Universal Installer...
    Checking Temp space: must be greater than 80 MB. Actual 5192 MB Passed
    Checking swap space: must be greater than 500 MB. Actual 2000 MB Passed
    Preparing to launch Oracle Universal Installer from /tmp/OraInstall2011-10-19_03-27-57PM. Please wait ...[oracle@vilje05 Disk1]$ Lo
    g: /home2/oracle/oraInventory/logs/install2011-10-19_03-27-57PM.log
    Copyright (c) 1999, 2009, Oracle and/or its affiliates. All rights reserved.
    Reading response file..
    Expected result: One of enterprise-5.4,enterprise-4,enterprise-5,redhat-5.4,redhat-4,redhat-5,SuSE-10
    Actual Result: enterprise-5
    Check complete. The overall result of this check is: Passed
    CertifiedVersions Check: Success.
    Checking for binutils-2.17.50.0.6; found binutils-2.17.50.0.6-14.el5-x86_64. Passed
    Checking for compat-libstdc++-33-3.2.3-x86_64; found compat-libstdc++-33-3.2.3-61-x86_64. Passed
    Checking for compat-libstdc++-33-3.2.3-i386; found compat-libstdc++-33-3.2.3-61-i386. Passed
    Checking for elfutils-libelf-0.125; found elfutils-libelf-0.137-3.el5-i386. Passed
    Checking for elfutils-libelf-devel-0.125; found elfutils-libelf-devel-0.137-3.el5-x86_64. Passed
    Checking for gcc-4.1.1; found gcc-4.1.2-51.el5-x86_64. Passed
    Checking for gcc-c++-4.1.1; found gcc-c++-4.1.2-51.el5-x86_64. Passed
    Checking for glibc-2.5-12-x86_64; found glibc-2.5-65-x86_64. Passed
    Checking for glibc-2.5-12-i686; found glibc-2.5-65-i686. Passed
    Checking for glibc-common-2.5; found glibc-common-2.5-65-x86_64. Passed
    Checking for glibc-devel-2.5-x86_64; found glibc-devel-2.5-65-x86_64. Passed
    Checking for glibc-devel-2.5-12-i386; found glibc-devel-2.5-65-i386. Passed
    Checking for libaio-0.3.106-x86_64; found libaio-0.3.106-5-x86_64. Passed
    Checking for libaio-0.3.106-i386; found libaio-0.3.106-5-i386. Passed
    Checking for libaio-devel-0.3.106; found libaio-devel-0.3.106-5-x86_64. Passed
    Checking for libgcc-4.1.1-x86_64; found libgcc-4.1.2-51.el5-x86_64. Passed
    Checking for libgcc-4.1.1-i386; found libgcc-4.1.2-51.el5-i386. Passed
    Checking for libgcc-4.1.1-i386; found libgcc-4.1.2-51.el5-i386. Passed
    Checking for libstdc++-4.1.1-x86_64; found libstdc++-4.1.2-51.el5-x86_64. Passed
    Checking for libstdc++-4.1.1-i386; found libstdc++-4.1.2-51.el5-i386. Passed
    Checking for libstdc++-devel-4.1.1; found libstdc++-devel-4.1.2-51.el5-x86_64. Passed
    Checking for make-3.81; found make-1:3.81-3.el5-x86_64. Passed
    Checking for sysstat-7.0.0; found sysstat-7.0.2-11.el5-x86_64. Passed
    Check complete. The overall result of this check is: Passed
    Packages Check: Success.
    Checking for VERSION=2.6.18; found VERSION=2.6.18-274.3.1.0.1.el5. Passed
    Checking for hardnofiles=4096; found hardnofiles=16384. Passed
    Checking for softnofiles=4096; found softnofiles=16384. Passed
    Check complete. The overall result of this check is: Passed
    Kernel Check: Success.
    Expected result: ATLEAST=2.5-12
    Actual Result: 2.5-65
    Check complete. The overall result of this check is: Passed
    GLIBC Check: Success.
    Expected result: 1024MB
    Actual Result: 11732MB
    Check complete. The overall result of this check is: Passed
    TotalMemory Check: Success.
    Expected result: LD_ASSUME_KERNEL environment variable should not be set in the environment.
    Actual Result: Variable Not set.
    Check complete. The overall result of this check is: Passed
    Check Env Variable Check: Success.
    Verifying data......
    Copying Files...
    -----------20%----------40%----------60%----------80%--------100%
    Applying Oneoff Patch...
    [CONFIG] Launching Config Actions....
    Started Configuration:Web Tier Configuration
    [CONFIG]:Create and Start AS Instance (instance1)
    [CONFIG] [Web Tier Configuration] [Create and Start AS Instance (instance1)]:Creating Oracle Instance directories...
    [CONFIG] [Web Tier Configuration] [Create and Start AS Instance (instance1)]:Recording OPMN ports reservations...
    [CONFIG] [Web Tier Configuration] [Create and Start AS Instance (instance1)]:Bootstrapping OPMN configuration files...
    [CONFIG] [Web Tier Configuration] [Create and Start AS Instance (instance1)]:Instantiating opmnctl for direct usage...
    [CONFIG] [Web Tier Configuration] [Create and Start AS Instance (instance1)]:Skipping instance registration
    [CONFIG] SUCCESS:Create and Start AS Instance (instance1)
    [CONFIG]:Create and Start OHS Component (ohs1)
    [CONFIG] [Web Tier Configuration] [Create and Start OHS Component (ohs1)]:Creating empty component directories...
    [CONFIG] [Web Tier Configuration] [Create and Start OHS Component (ohs1)]:Provisioning OHS files for ohs1
    [CONFIG] [Web Tier Configuration] [Create and Start OHS Component (ohs1)]:Copying OHS files from ORACLE_HOME to ORACLE_INSTANCE locations
    [CONFIG] [Web Tier Configuration] [Create and Start OHS Component (ohs1)]:Customizing httpd.conf
    [CONFIG] [Web Tier Configuration] [Create and Start OHS Component (ohs1)]:Adding component's process control to OPMN...
    [CONFIG] [Web Tier Configuration] [Create and Start OHS Component (ohs1)]:Skipping ohs1 component registration.
    [CONFIG] FAILED:Create and Start OHS Component (ohs1)
    Question Received:Failed to Start OHS Component
    [CONFIG] [Web Tier Configuration]:Failed to Start OHS Component
    [CONFIG] FAILED:Create and Start OHS Component (ohs1)
    Configuration:Web Tier Configuration failed
    Error while running Configuration.
    The installation of Oracle AS Common Toplevel Component, Oracle WebTier and Utilities CD failed.
    [oracle@vilje05 Disk1]$
    [oracle@vilje05 ~]$ opmnctl stopall
    XML parser init: error 54.
    opmnctl stopall: error parsing /home2/oracle/bea_default/Oracle_WT1/instances/instance1/config/OPMN/opmn/opmn.xml
    ===
    $ cat my_response.txt
    [ENGINE]
    #DO NOT CHANGE THIS.
    Response File Version=1.0.0.0.0
    [GENERIC]
    #Set this to true if installation and configuration need to be done, all other required variables need to be provided. Variable "INSTALL AND CONFIGURE LATER TYPE" must be set to false if this is set to true as the variables are mutually exclusive
    INSTALL AND CONFIGURE TYPE=true
    #Set this to true if only Software only installation need to be done. If this is set to true then variable "INSTALL AND CONFIGURE TYPE" must be set to false, since the variables are mutually exclusive.
    INSTALL AND CONFIGURE LATER TYPE=false
    #Provide the Oracle Home location. The location has to be the immediate child under the specified Middleware Home location. The Oracle Home directory name may only contain alphanumeric , hyphen (-) , dot (.) and underscore (_) characters, and it must begin with an alphanumeric character. The total length has to be less than or equal to 128 characters. The location has to be an empty directory or a valid SOA Oracle Home.
    ORACLE_HOME=/home2/oracle/bea_default/Oracle_WT1
    #Provide existing Middleware Home location.
    MIDDLEWARE_HOME=/home2/oracle/bea_default
    #The name of the Oracle Instance. Instance name must begin with an alphabetic character, may only contain alphanumeric characters, or the underscore (_) or hyphen (-) characters and are 4 to 30 characters long.
    INSTANCE_HOME=/home2/oracle/bea_default/Oracle_WT1/instances/instance1
    #Provide the Oracle Instance location. The Oracle Instance directory name may only contain alphanumeric , hyphen (-) , dot (.) and underscore (_) characters, and it must begin with an alphanumeric character. The total length has to be less than or equal to 128 characters. The location has to be an empty or non existing directory.
    INSTANCE_NAME=instance1
    #If set to true, installer will auto assign ports
    AUTOMATIC_PORT_DETECT=true
    #This is required if "AUTOMATIC_PORT_DETECT" variable is set to false, absolute path of a staticports file location need to be provided with values for ports.\nThe template for staticports.ini can be found from Disk1/staget/Response directory of the shiphome.
    STATICPORT INI FILE LOCATION=
    #Provide the My Oracle Support Username. If you wish to ignore Oracle Configuration Manager configuration provide empty string for user name.
    MYORACLESUPPORT_USERNAME=
    #Provide the My Oracle Support Password
    MYORACLESUPPORT_PASSWORD=<SECURE VALUE>
    #Set this to true if you wish to decline the security updates. Setting this to true and providing empty string for My Oracle Support username will ignore the Oracle Configuration Manager configuration
    DECLINE_SECURITY_UPDATES=true
    #Set this to true if My Oracle Support Password is specified
    SECURITY_UPDATES_VIA_MYORACLESUPPORT=false
    #Provide the Proxy Host
    PROXY_HOST=
    #Provide the Proxy Port
    PROXY_PORT=
    #Provide the Proxy Username
    PROXY_USER=
    #Provide the Proxy Password
    PROXY_PWD=<SECURE VALUE>
    [SYSTEM]
    #Set true to configure Oracle HTTP Server, else skip Oracle HTTP Server configuration
    CONFIGURE_OHS=true
    #Set true to configure Oracle Web Cache, else skip Oracle Web Cache configuration
    CONFIGURE_WEBCACHE=false
    #The Oracle HTTP Server (OHS) component name (required only if CONFIGURE_OHS is set to true). OHS component name must begin with an alphabetic character, may only contain alphanumeric characters, or the underscore (_) or hyphen (-) characters and are 4 to 30 characters long.
    OHS_COMPONENT_NAME=ohs1
    [APPLICATIONS]
    [RELATIONSHIPS]
    #If set to true, the instance and components will be registered with an existing weblogic server
    ASSOCIATE_WEBTIER_WITH_DOMAIN=false
    ==
    as you see all checks passed OK, but the whole install failed. What could be wrong? And what is XML parser init: error 54?
    Edited by: 892273 on Oct 19, 2011 8:12 AM

    Where's the WebLogic Server home???
    Else you should attach this to an existing WebLogic domain
    kind regards
    Michel
    Edited by: Michel Schildmeijer on 20-okt-2011 15:57

  • Weblogic Server 6.1 trial version fails to install in Linux

    Weblogic Server 6.1 trial version fails to install in Linux
    (in Linux Redhat 6.2, jdk 1.2.2)
    1. When unzipping the *.zip file "weblogic610_generic.zip", the unzip program
    reported that some files and directories not properly named. (using winzip, quite
    a number of files' directories start "d:/".
    2. During installation, the screen hanged right after choosing language, and the
    background threw "Exception in thread 'main'".

    Yes, that is exactly what I ran and it worked.
    Kernel: 2.2.12-20
    java -fullversion
    java full version "Linux_JDK_1.2.2_RC4"
    That was to install.
    Eric
    "Mo Guangquan" <[email protected]> wrote in message
    news:[email protected]...
    Hello,
    Could you give the detailed steps when you unzip and run? Did you only
    use the command "java -cp weblogic610_generic.zip install -i console" andit
    worked fine? Your system's basic setting like java version and kernal etc?
    Thanks.
    regards
    mo
    "Eric Gross" <[email protected]> wrote in message
    news:[email protected]...
    I actually did my test with RH 6.1. It worked fine.
    Regards,
    Eric
    "Alexander Klimenko" <[email protected]> wrote in message
    news:[email protected]...
    Sorry guys,
    but if you go to "supported platform" document you'll se just Linux RH
    7.1
    there.
    Regards,
    Alexander
    "Mo Guangquan" <[email protected]> wrote:
    error still occurs, guess it is because inside the zip file got some
    wrong
    absolute paths. error msg:
    ZGUtil.getInputStream(): ZGUtil.openZipFile(): Couldn't open /us
    java.io.IOException: ZGUtil.openZipFile(): Couldn't open /us
    at ZeroGb.c([DashoPro-V1.2-120198])
    at ZeroGb.a([DashoPro-V1.2-120198])
    at ZeroGb.a([DashoPro-V1.2-120198])
    at ZeroGb.m([DashoPro-V1.2-120198])
    at com.zerog.ia.installer.Main.i([DashoPro-V1.2-120198])
    at
    com.zerog.ia.installer.Main.<clinit>([DashoPro-V1.2-120198])
    at install.main([DashoPro-V1.2-120198])
    preinstaller.properties not found.
    Exception in thread "main"
    regards,
    mo
    "Eric Gross" <[email protected]> wrote in message
    news:[email protected]...
    Run the following to install it:
    java -cp weblogic610_generic.zip install -i console
    That will provide a console based install.
    Regards,
    Eric
    "mo" <[email protected]> wrote in message
    news:[email protected]...
    Weblogic Server 6.1 trial version fails to install in Linux
    (in Linux Redhat 6.2, jdk 1.2.2)
    1. When unzipping the *.zip file "weblogic610_generic.zip", the
    unzip
    program
    reported that some files and directories not properly named.
    (using
    winzip, quite
    a number of files' directories start "d:/".
    2. During installation, the screen hanged right after choosing
    language,
    and the
    background threw "Exception in thread 'main'".

Maybe you are looking for

  • ALV to Excel Missing field content

    Hi Experts, I have a problem during dowloading process of ALV grid to Excel. For some reasons the last row is not completely filled with all field contents. I tried 2 things one is working fine and one is not working fine. 1) List --> Export ---> Spr

  • How can i locate the resource file in the weblogic?

    hello in struts, i can leave some parameter in a resource file (such as "Application.properties")outside of my code,and get them in the "Action" class by the "getResource" method. in my data access tier,i still want to use such a machanism but i can'

  • About the external display adapter...

    I just purchased my iBook G4 on-line and finally got the external display adapter. I was wondering if there is a way to have the external display adapter on the laptop and functioning with the external display while the laptop screen is closed? This

  • Calling .jsx functions from .js files using HTML Widget

    Hi there, I'm using the HTML Widget in a panel to load an html file along with some javascript files. Is there a way to call .jsx Adobe functions from a .js file? I've successfully been able to call an alert() of a .jsx file from the html but have no

  • What's listening on port 454 and 455 in Azure? Warning flagged by security scan

    We are about to go live with an Azure Website and, as a precaution, did a security scan on the IP address that has been allocated to us. There were a number of low severity warnings listed which we're not too worried about, however the scan did flag