Showing posts with label WebLogic Server Installation. Show all posts
Showing posts with label WebLogic Server Installation. Show all posts

Monday, January 9, 2012

WebLogic server domain creation

Goto WebLogic server home directory
in my case
/home/shamim/Oracle/Middleware/wlserver_10.3
Run
./common/bin/config.sh
Type [1] to choose Create a new WebLogic domain
Type [1] to Choose Weblogic Platform components. You can also choose [2] the custom template option.
Application Template Selection:
In my case I want deploy EJB service beans on webLogic server so I choose Basic WebLogic Server Domain and Type [Next]
Edit Domain Information:
the default domain name is 'base_domain' you can change the name or type [Next]
Select the target domain directory for this domain:
you can change the location or type [Next] to use default one.
Configure Administrator User Name and Password:
The default user name for Administrator user is 'weblogic'. Type [1] to change this or not.
Type [2] to set "User password". Minimum length of the password should be 8. This password will be used to login into console.
Type [3] to confirm password.
Type [Next]
Domain Mode Configuration:
Type [1] for Development Mode which dose not include some security features.
Java SDK Selection:
You should see a list of available JDK and choose one from them.
Select Optional Configuration:
Type [1] because if you have only one server it should be the Administration Server.
Configure the Administration Server:
...
Remember the port number and type [Next] if you don't like to change it.

In few seconds domain creation should be completed. And you will find the server instance ready for use into server domain. in my case [/home/shamim/Oracle/Middleware/user_projects/domains/ejb_services] this is the admin server home.
Following command will start the server.
./bin/startWebLogic.sh
Console url
http://localhost:7001/console

WebLogic server installation guide for Debian 6 (64-bit)

Download Web Logic Server from:

1. Weblogic server Installers from here
OR
2. JDevStudio which includes JDeveloper IDE and WebLogic Server, download.

Run The installer:
    In my case [./jdevstudio11113install.bin]
    You should see this message
    [Unable to instantiate GUI, defaulting to console mode.]
    Type [Next]

Choose Oracle Middleware Home Directory:
    You can change the default home dir or not.

Choose Install Type:
    For Complete installation type [1]
    For custom installation type [2] in this case you add/remove components from installation

Confirm Product Installation Directories:
    Remember the server home directory and type [Next].

The following Products will be installed:
    ...
    Type [Next]

Installation should start and complete in few moments and we not done yet. To start the WebLogic server we need to create an instance first. It is called domain which creates an instance of the server for use. You can see more information about domain from here. Please see my next post for creating an WebLogic domain.