Skip to main content

How to install weblogic on HPUX box using console mode



Your Ad Here
Weblogic for HPUX: I downloaded the BEA WebLogic server 8.1.0.4 HPUX version which is free license for development. Create the following directory

root@techgyaan:#mkdir /usr/weblogic

Assign the permission to the package
root@techgyaan:#chmod a + x pj_platform814_generic.jar

Run the installer you need java to be installed before you start weblogic installation.

Download the lastest JDK from JAVA-HPUX Here
root@techgyaan#/usr/sbin/swinstall -s /var/spool/sw/sdk14_14209_1122.depot

{swinstall will be run using either a GUI or a TUI depending on the setting of the DISPLAY variable}

To find your JAVA version assuming the directory where it is installed is in your PATH variable, run the following at the command prompt:

root@techgyaan# java -version

or

root@techgyaan:# /opt/java1.4/bin/java -version

Alternately, if you installed your Java JDK or JRE using SD (swinstall), you can run the following command:

root@techgyaan# /usr/sbin/swlist | grep -i java

Lets start weblogic installation now just follow the procedure below:

root@techgyaan:# /opt/java1.4/bin/java -jar pj_platform814_generic.jar -mode=console
0%.........................................................................100%

<---------------------- WebLogic Platform 8.1 SP4 -------------------------->

Enter [Exit][Next]> Next

<---------------------- WebLogic Platform 8.1 SP4 -------------------------->

Agree BEA Systems License Agreement:
----------------------------------------------
Select Option:
1 - Yes, I agree with the terms of the license
2 - No, I do not agree with the terms of the license


Enter option number to select OR [Down][Exit][Previous]> 1

<---------------------- WebLogic Platform 8.1 SP4 -------------------------->

Choose BEA Home Directory:
--------------------------

"BEA Home" = [/usr/local/bea]

Input new BEA Home OR [Exit][Previous][Next]> /usr/weblogic


<---------------------- WebLogic Platform 8.1 SP4 -------------------------->

Choose BEA Home Directory:
--------------------------

*BEA home choice

->1|Yes, Use this BEA home directory [/usr/weblogic]
2|No, return to BEA home directory selection

Enter index number to select OR [Exit][Previous][Next]> 1

<---------------------- WebLogic Platform 8.1 SP4 -------------------------->

Choose Install Type:
--------------------

->1|Complete
|Install the complete BEA WebLogic Platform.

2|Custom Installation
|Choose software components to install and perform optional configuration.

Enter index number to select OR [Exit][Previous][Next]> 1

<---------------------- WebLogic Platform 8.1 SP4 -------------------------->

Choose Product Directory:
-------------------------

"Product Installation Directory" = [/usr/weblogic/weblogic81]

Input new Product Installation Directory OR [Exit][Previous][Next]> Next


<---------------------- WebLogic Platform 8.1 SP4 -------------------------->

Choose Product Directory:
-------------------------

->1|Yes, use this product directory [/usr/weblogic/weblogic81]
2|No, select another product directory

Enter index number to select OR [Exit][Previous][Next]> 1

<---------------------- WebLogic Platform 8.1 SP4 -------------------------->
Installing files..

0% 25% 50% 75% 100%
[------------|------------|------------|------------]
[***************************************************]

<---------------------- WebLogic Platform 8.1 SP4 -------------------------->

Installation Complete
Congratulations! WebLogic Platform 8.1 SP4 has been successfully installed to /usr/weblogic/weblogic81.

Press any key to continue OR [Exit]>Enter

<---------------------- WebLogic Platform 8.1 SP4 -------------------------->

Clean up process in progress ...

Successfully Installed weblogic on HPUX :)

Comments

Popular posts from this blog

Download of the Day!

Amarok 2.0.2 has released Amarok is an open source alternative music player for iTunes. Amarok supports Linux, Unix, MacOSX and windows Operating system. It is smiliar to iTunes just drag & drop the songs to play list. Amarok also lets you listen to internet radio ( mp3 streaming ) including music from last.fm . Features Automatic cover Lyrics download Dynamic playlists Visualizations and Podcasting. These are only some of the great new features of Amarok 2. Give it a try! Download here An least but not last - Amarok will also synchronize your music to your iPod. For the more technical users a scripting interface allows you to extend the functionality of Amarok. Print Page Feedbacks: We appreciate feedbacks and suggestions about our website info@techgyaan.org

How to install WebLogic 8 on Solaris 10

Lets start the installation Login to solaris box use sudo command to install the application. $ ./server814_solaris32.bin Extracting 0%……………………………………………………………………………………….100% Unable to instantiate GUI, defaulting to console mode. Welcome: ——– ————— This installer will guide you through the installation of WebLogic Server 8.1 SP4. Type “ Next” or enter to proceed to thenext prompt. If you want to change data entered previously, type “Previous”. You may quit the installer at any time by typing “ Exit”. Enter [Exit][Next]> BEA Systems License Agreement: —————————— BEA SYSTEMS, INC. SOFTWARE LICENSE AGREEMENT USE OF SOFTWARE ORDERED FROM BEA SYSTEMS, INC. (”BEA”) IS PROVIDED ONLY UNDER LICENSE FROM BEA. PLEASE READ THE FOLLOWING LICENSE CAREFULLY AND INDICATE YOUR ACCEPTANCE BY CLICKING THE ACCEPTANCE BOX. CERTAIN CAPITALIZED TERMS ARE DEFINED IN SECTION 11. 1. LICENSE TERMS a. Workshop Free Use. The terms of this Section 1(a) are applicable to you if you h...

Sysadmin Daily Commands

Some of these commands are used by unix/linux administrator in his/her day-to-day activities  cat to concatenate files to standard output chgrp to change file group ownership chmod to change file access permissions chown to change file owner and group cp to copy files and directories date to print or set the system data and time dd to convert and copy a file df to report filesystem disk space usage dmesg to print or control the kernel message buffer echo to display a line of text hostname to show or set the system's host name kill to send signals to processes ln to make links between files login to begin a session on the system ls to list directory contents mkdir to make directories mknod to make block or character special files more to page through text mount to mount a filesystem mv to move/rename files ps to report process status pwd to print na...