Thursday, May 28, 2015

Not able to Invoke GUI when running config.sh in weblogic/SOA/OEM installer

 Not able to Invoke GUI when running config.sh in weblogic/SOA/OEM  installer

Today i encountered a strange issue, I was trying to  launch the GUI installer

I have installed the Xming/Cygwin , and I was able to invoke the xclock successfully.

java -d64 -jar Oracle_WebLogic_Server_11gR1_10.3.6_Coherence_wls1036_generic.jar

java -d64 -jar wls1035_generic.jar
 

You can also enable logging which invoke the config.sh


config.sh -log=<path_to_a_file.log> -log_priority=trace
 

It was always going to console mode installation.

and it doesn't throw any error also.

The solution I found was the missing os libraries


A) As root, check for the packages as shown after installation to confirm availability:

$ rpm -qa --queryformat "%{NAME}-%{VERSION}.%{RELEASE} (%{ARCH})\n" | grep xorg-x11-utils
$ rpm -qa --queryformat "%{NAME}-%{VERSION}.%{RELEASE} (%{ARCH})\n" | grep libXtst





The following packages were not installed on the OS, which are required for installation and operation:

1.) libXtst-1.0.1-3.1
2.) xorg-x11-utils 


yum install libXtst
yum install xorg-x11-util


B) Please, remove the "${JVM_D64}" parameter from: config.sh file


JVM_ARGS="-Dprod.props.file='${WL_HOME}/.product.properties' -Dpython.cachedir=/tmp/cachedir ${JVM_D64} ${MEM_ARGS} ${CONFIG_JVM_ARGS}"

 
After I was able to invoke the GUI without any issue
 




 

No comments:

Post a Comment