oracle weblogic

Post on 01-Jul-2015

376 Views

Category:

Technology

5 Downloads

Preview:

Click to see full reader

TRANSCRIPT

Installing Oracle WebLogic

In my case, the installation will be done on CentOS 5.5 (32-bit).

First, create a user who will own the software and on whose behalf all will be triggered by the good old tradition, this is oracle :) . Just create a folder where all will be put. Following Oracle Flexible Architecture (OFA), it will be / u01/oracle /……..

root@oragrid: ~# cat /etc/group | grep 'oinstall\|dba'

root@oragrid: ~# /usr/sbin/groupadd oinstall

root@oragrid: ~# /usr/sbin/groupadd dba

root@oragrid: ~# id oracle

root@oragrid: ~# /usr/sbin/useradd -g oinstall -G dba oracle

root@oragrid: ~# passwd oracle

Changing password for user oracle.

New UNIX password:

Retype new UNIX password:

passwd: all authentication tokens updated successfully.

root@oragrid: ~# id nobody

root@oragrid: ~# /usr/sbin/useradd nobody

root@oragrid: ~# mkdir -p /u01/oracle

root@oragrid: ~# chown -R oracle:oinstall /u01/oracle

As I put on a remote server, you have to variable DISPLAY, to point to the local machine, and allow the local server x11 incoming connections from the server.

root@oragrid: ~# su – oracle

oracle@oragrid: ~> export DISPLAY=172.30.9.25:0.0

oracle@oragrid: ~> cd GridControl/

oracle@oragrid: ~/GridControl> ./runInstaller

Run the installer.

Select the directory in which all the software will be located.

Then

Choose the type of installation. As I do not need a set of plug-ins for Eclipse, I chose a custom installation.

Select the JDK, what we want to deliver.

Specify the directory in which to install weblogic server, usually a subdirectory in the Middleware HOME.

A brief overview of what will be installed.

So the process has begun.

Choosing «Getting started with WebLogic Server». And here we have opened a window like this.

Create a new domain Weblogic.

Write the name of our domain.

Configure the administrator of our server. The default is weblogic.

Then you can further customize our Administration Server, Managed Servers, Clusters, and Machines. I made 2 test server.

We tie our servers to your local machine.

Domain creation and brief information about where the domain is located and how to reach out to the Administration Server.

The installation and initial setup of Oracle Weblogic Server is completed.

top related