How to install WebLogic server using console mode in RHEL?

On my REHL server, I am going to install WebLogic server , but when installed, it shows the following,


Launcher log file is /tmp/OraInstall2014-12-03_01-46-31AM/launcher2014-12-03_01-46-31AM.log.

      

Extracting Files .............. Launching Oracle Universal Installer

Checking processor speed above 300 MHz. 1997.386 MHz Actual Reference Monitor: Must be configured to display at least 256 colors. The DISPLAY environment variable is not set. Failed <<<Check paging space: must be greater than 512 MB. Actual 4145148 MB passed Check for 64-bit JVM on this platform. Actual 64 Passed (64-bit not required) Temporary space check: Must be greater than 300MB. Actual 953MB Traveled

Some preliminary system checks failed. You must meet these requirements before proceeding with the installation.

Proceed? (yes [y] / no [n]) [n]


Then I tried to install using console mode using the following command:

java -jar fmw_12.1.3.0.0_wls.jar -mode=console

      

But he says:

Invalid arguments: -mode = console

So can anyone help me install the WebLogic server using console mode ? Any help would be greatly appreciated.

Thank.

+3


source to share


1 answer


It would appear that this version brought out an interactive console installation mode (it was still present in 12.1.1). The main documentation page here now only mentions this example of running an installer that will try to start the GUI ...

/home/Oracle/jdk7_51/jdk1.7.0_51/bin/java -jar fmw_12.1.3.0.0_wls.jar

      

However, quiet mode is still supported. To install weblogic in this mode, you need to provide a response file containing values โ€‹โ€‹for all the parameters you previously entered as you go. Rather useless, the documentation suggests building the original version of this by running the graphical installer!



1. Run your product graphical installer or deinstaller, 
   as described in your product installation guide.

2. For product installation, on the Installation Summary screen, 
   click Save Response File to save your installation parameters to a response file.

      

The only real questions it asks is the Oracle Home directory and what type of installation you want to do (WebLogic Server, Coherence, Complete with Examples). This is what I got to install WebLogic Server in c: \ oracle2 without link to Oracle support for updates ...

[ENGINE]

#DO NOT CHANGE THIS.
Response File Version=1.0.0.0.0

[GENERIC]

#The oracle home location. This can be an existing Oracle Home or a new Oracle Home
ORACLE_HOME=c:\oracle2

#Set this variable value to the Installation Type selected. e.g. WebLogic Server, Coherence, Complete with Examples.
INSTALL_TYPE=WebLogic Server

#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>

#Type String (URL format) Indicates the OCM Repeater URL which should be of the format [scheme[Http/Https]]://[repeater host]:[repeater port]
COLLECTOR_SUPPORTHUB_URL=

      

+5


source







All Articles