WebSphere Application Server 7.0.0.33 installation error - "failed to Install Update Installer" - ibm-was

I ran into errors when trying to install WebSphere Commerce Fix Pack 8 (on WCS FEP 1 and FP 7) and so started WebSphere Commerce installation from scratch. I was able to install RAD but am running into the below error when trying to install WebSphere Application Server 7.0.0.33 (I also tried installing other versions, but ended up having the same error).
Any help and ideas to overcome this problem would be much appreciated. Thanks in advance!
Please note this is: WebSphere Commerce Developer Environment and WebSphere Application Server Test Environment.
Operating System: Windows 7 Enterprise 64-bit
Antivirus: McAfee
IBM Installation Manager:
Version: 1.8.0
Internal version: 1.8.0.20140902_1503
Architecture: 32-bit
RAD:
Succeeded installing the below version:
IBM® Rational® Application Developer™ for WebSphere® Software
Version 7.5.5.5 iFix1 (7.5.5051.RADO7555iFix1-I20120913_1613)
WebSphere Application Server: Ran into the below error while attempting to install WAS 7.0.0.33
Error during "install" phase:
Error recorded in the log file:
actionStep : -INSTALL
version : 7.0.0.17
sourcePath : C:\IBM\SDP\image\UPDI70
installPath : C:\IBM\SDP\runtimes\updi_v70
calling performInstall
compare = 0
Deleting installPath : C:\IBM\SDP\runtimes\updi_v70
performInstall : Install Update Installer
OSCommand : Invoking at : C:\IBM\SDP\image\UPDI70\UpdateInstaller
OSCommand : Print out Command
C:\IBM\SDP\image\UPDI70\JDK\jre.pak\repository\package.java.jre\java\jre\bin\java.exe
-cp
setup.jar
run
-OPT
silentInstallLicenseAcceptance=true
-OPT
allowNonRootSilentInstall=true
-OPT
disableOSPrereqChecking=true
-OPT
disableEarlyPrereqChecking=true
-OPT
skipStartMenu=true
-OPT
installLocation=C:\IBM\SDP\runtimes\updi_v70
-silent
OSCommand : Done Print out Command
Unable to load JNI dll archive:C:\IBM\SDP\image\UPDI70\UpdateInstaller\setup.jar+/6d03fb4a8c94a5cdd9d0f5efa721f948/win32ppk/win32ppk.dll
java.lang.UnsatisfiedLinkError: C:\Users\SHEELA~1.DOS\AppData\Local\Temp\ismp001\win32ppk.dll (Access is denied. )
at java.lang.ClassLoader.loadLibraryWithPath(ClassLoader.java:1011)
at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1019)
at java.lang.Runtime.load0(Runtime.java:781)
at java.lang.Runtime.load(Runtime.java:769)
at com.installshield.util.LibraryLoader.loadLibrary(LibraryLoader.java:77)
at com.installshield.wizard.platform.win32.Win32Utils.loadDLL(Win32Utils.java:49)
at com.installshield.wizard.platform.win32.Win32SystemUtilServiceImpl.initialized(Win32SystemUtilServiceImpl.java:68)
at com.installshield.wizard.service.AbstractServiceImplementor.initialize(AbstractServiceImplementor.java:23)
at com.installshield.wizard.service.ServiceFactory.createImpl(ServiceFactory.java:129)
at com.installshield.wizard.service.ServiceFactory.createService(ServiceFactory.java:55)
at com.installshield.wizard.service.ServiceFactory.createService(ServiceFactory.java:24)
at com.installshield.wizard.service.LocalWizardServices.loadService(LocalWizardServices.java:107)
at com.installshield.wizard.service.LocalWizardServices.getService(LocalWizardServices.java:122)
at com.installshield.wizard.service.system.SystemUtilServiceInitialize.execute(SystemUtilServiceInitialize.java:17)
at com.installshield.wizard.Wizard.executeStartupBeans(Wizard.java:1451)
at com.installshield.wizard.Wizard$RunThread.run(Wizard.java:1534)

Thanks for looking into it!
FINALLY figured it out ... turned out McAfee (anti-virus) software was blocking the install.
I was able to successfully install WAS 7.0.0.33 after turning off the McAfee services - specifically the McAfee Host Intrusion Prevention Service.

The error stack seems to indicate a file permission issue:
Unable to load JNI dll
archive:C:\IBM\SDP\image\UPDI70\UpdateInstaller\setup.jar+/6d03fb4a8c94a5cdd9d0f5efa721f948/win32ppk/win32ppk.dll
java.lang.UnsatisfiedLinkError: C:\Users\SHEELA~1.DOS\AppData\Local\Temp\ismp001\win32ppk.dll ***(Access is denied. )***
at java.lang.ClassLoader.loadLibraryWithPath(ClassLoader.java:1011)
Maybe check privileges for the user installing the product/fix?

Related

Error when open eclipse - MAC

I have installed eclipse on my iMac and when I try to open it, it gives me this error:
Failed to find a Main Class in
"/Applications/Eclipse.app/Contents/MacOS//../Eclipse/ plugins/org.eclipse.equinox.launcher_1.5.0.v20180512-1130.jar".
On my MacBook Pro, everything works fine, but I have done nothing different.
I have checked other posts, but most of them refer to a windows OS. There was an answer which said that it can just open when everything is in an English folder and this is true for me!
Thanking you in advance!
I came across this error after installing Eclipse PDT.
Open your terminal and run the version command: java -version.
If your java version is below 1.8, you will have to update your Java
Runtime Environment to at least 1.8.0 by installing an updated JDK
here.
Then re-run the java version command and your version
should be updated.
You should now be able to install and run
Eclipse.
I have the same issue, but on my MacBookPro. I first installed eclipse Photon, which when starting up prompted me to install Java 6, which I did from https://support.apple.com/kb/DL1572?locale=en_US
Then I also installed the latest JRE (jre-8u171-macosx-x64 as of yesterday). When running eclipse again I started getting this error. Then I tried to run from the command line, and got this error:
Exception in thread "main" java.lang.UnsupportedClassVersionError: org/eclipse/equinox/launcher/Main : Unsupported major.minor version 51.0
When googling that, the answers said that the reason for that is that the Oracle installer does not update the symlink in /usr/bin, which seemed to be confirmed by the fact that running java -version returned this:
java -version
java version "1.6.0_65"
The solutions I found for that were not feasible in MacOS starting in version El Capitan, and I am on High Sierra, so I followed the instructions in this post to fix that, and it worked, now I get:
java -version
java version "1.8.0_171"
Java(TM) SE Runtime Environment (build 1.8.0_171-b11)
Java HotSpot(TM) 64-Bit Server VM (build 25.171-b11, mixed mode)
After all of this, however, I get the same "Failed to find a Main Class" error on the dialog as reported initially here, and the same "UnsupportedClassVersionError" on the CLI that I had when the system was still on java 6, so now I am still stuck and out of ideas.
EDIT: FIXED IT!!
I kept thinking that the problem was the java version, it was somehow still using java 6 (which I had installed due to the initial prompt).
So I followed the instructions here to remove what I had installed for the alleged java 6 issue. Then I found this post in the eclipse forums, which stated at the end (comment added by Eric Rizzo on Tue, 14 February 2017 21:56) that this is not an Eclipse message, but rather an OS message, and that one should NOT do that as apple messed things up with that patch. And then it goes to explain that one should install java 8 JDK (NOT just the JRE as I had done). Once I removed Java 6 and installed the full java 8 JDK, it ran fine :)
You can edit the eclipse.ini with your vm configuration in the beginning of the file
-vm
/yourJvmPath/jdk-12.0.1.jdk/bin/java
cat /Applications/Eclipse.app/Contents/Eclipse/eclipse.ini
-vm
/Users/SomeUser/jdk-12.0.1.jdk/bin/java
-startup
../Eclipse/plugins/org.eclipse.equinox.launcher_1.5.400.v20190515-0925.jar
--launcher.library
../Eclipse/plugins/org.eclipse.equinox.launcher.cocoa.macosx.x86_64_1.1.1000.v20190125-2016
PD. It works with ApacheDirectoryStudio for MAC
This one works for me with MAC OS Mojave.
You can download the Java SE Development Kit 8u221 for mac from the below link.
jdk-8u221-macosx-x64.dmg
https://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html

Eclipse Error occurred during initialization of VM google app engine

Just did a fresh install of Eclips mars.2 and installed the google app engine plug in.
Imported an existing maven project, and trying to run it on the "Google App Engine at Llocal host"
Getting this error when I run it. I'm not even sure where to start on this, I'm just following the tutorial.
Any ideas?
Error occurred during initialization of VM
agent library failed to init: instrument
Error opening zip file or JAR manifest missing : C:\Stuff\Programming

mongod command crashes with message

I have installed MongoDB 3.0.4 . When i execute command "mongod" it crashes with message "Mongod.exe has stopped working". Here is problem details
Problem Event Name: APPCRASH
Application Name: mongod.exe
Application Version: 0.0.0.0
Application Timestamp: 557ef9c9
Fault Module Name: MSVCR120.dll
Fault Module Version: 12.0.21005.1
Fault Module Timestamp: 524f83ff
Exception Code: c000001d
Exception Offset: 0000000000092bc3
OS Version: 6.1.7600.2.0.0.256.48
Locale ID: 1033
Additional Information 1: fd3b
Additional Information 2: fd3bb24d4274b34ca613c6f4e63ceb13
Additional Information 3: 3204
Additional Information 4: 3204b56578b4c221b1569b71b387eb68
I am using Windows 7 64 bit operating system. Why this problem ???
Thanks in advance.
I was facing the exact issue with current version 3.0.6 of mongodb. I uninstalled it and installed 2.6.11 verson. And it worked! For your information I am also using Win 7 OS 64 bit.
I had the same problem when launching Worckbench.
I just installed the Visual C++ Redistributable Packages for Visual Studio 2013 and the problem was solved.
Installing Windows 7 SP1 fixed the problem for me.
I have installed MongoDB 3.2.10 using Windows Server 2008 R2 x64, and it was the same problem with you.
The solution is upgrade the OS to SP1.

EJBCA 'Ubuntu quick start' fails to deploy on JBoss

I followed quick start steps described in EJBCA documentation (http://www.ejbca.org/docs/installation.html)
'ant deploy' eventually failed with the following error
...
...
set-paths-not-jboss7:
set-paths:
jee:deployServicesJBoss5:
jee:assert-runJBoss7:
[echo] Checking if JBoss 7 is up and running...
[exec] Result: 1
BUILD FAILED
/home/pa/ejbca-setup/ejbca_ce_6_0_3/build.xml:635: The following error occurred while executing this line:
/home/pa/ejbca-setup/ejbca_ce_6_0_3/bin/jboss.xml:380: The requested action requires that JBoss 7 is up and running.
My problem was that JBoss wasn't starting. The documentation did point out that if 'ant deploy' fails, most likely caused is JBoss not running.
Since JBoss did not show any error, I thought it was up, however upon second look I understood that it was stuck in 'starting' state. There were no errors in log files. My Java version was 8. Installing Java 7 fixed the problem. Be sure to recompile EJBCA after switching Java.

Gradle Integration for Eclipse daemon startup failure

I am new to Eclipse Juno using the Gradle Integration for Eclipse plugin. I am at a loss why gradle works perfectly from the command line and as an external tool; but in Eclipse Juno Package Explorer menu: gradle task it fails constantly with the following stack trace:
Error while initializing classpath container
Unable to start the daemon process.
This problem might be caused by incorrect configuration of the daemon.
For example, an unrecognized jvm option is used.
Please refer to the user guide chapter on the daemon at http://gradle.org/docs/1.5/userguide/gradle_daemon.html
Please read below process output to find out more:
java.lang.IllegalArgumentException: URI has an authority component
at java.io.File.(File.java:423)
at org.gradle.api.internal.classpath.EffectiveClassPath.findAvailableClasspathFiles(EffectiveClassPath.java:41)
at org.gradle.api.internal.classpath.EffectiveClassPath.(EffectiveClassPath.java:32)
at org.gradle.api.internal.classpath.DefaultModuleRegistry.(DefaultModuleRegistry.java:61)
at org.gradle.api.internal.classpath.DefaultModuleRegistry.(DefaultModuleRegistry.java:55)
at org.gradle.launcher.bootstrap.ProcessBootstrap.runNoExit(ProcessBootstrap.java:41)
at org.gradle.launcher.bootstrap.ProcessBootstrap.run(ProcessBootstrap.java:32)
at org.gradle.launcher.daemon.bootstrap.GradleDaemon.main(GradleDaemon.java:22)
Could not fetch model of type 'EclipseProject' using Gradle distribution 'http://services.gradle.org/distributions/gradle-1.5-bin.zip'.
The env variables for GRADLE_HOME, GRADLE_USER_HOME, PATH are all setup correctly. From the command line gradle -v returns:
Gradle 1.6
Gradle build time: Tuesday, May 7, 2013 9:12:14 AM UTC
Groovy: 1.8.6
Ant: Apache Ant(TM) version 1.8.4 compiled on May 22 2012
Ivy: 2.2.0
JVM: 1.7.0_45 (Oracle Corporation 24.45-b08)
OS: Windows 7 6.1 amd64
Eclipse version:
Eclipse Java EE IDE for Web Developers.
Version: Juno Service Release 2
Build id: 20130225-0426
OS is Win7 64 on amd64 platform with 4GB of system memory so it show not be a memory issue and there are no gradle daemons running when I get the above stack trace in Eclipse Juno.
I have exhausted all means on the web, this site, and my team to resolve the issue. I need some help please.
Windows 7 sets the user.home as a UNC path.
Add -Duser.home=x:\ to your Eclipse INI file where "x" is a local drive name.
That should solve your problem
If you are using the Gradle plugin, ensure it is pointing to the correct Gradle installation. I get the error you show when I use the embedded Gradle that comes with Spring Tools Suite.