34
http://onlineappsdba.com/index.php/2008/07/24/domain-administration- managed-server-cluster-in-oracle-weblogic/ Create Domain in Oracle WebLogic Posted in July 28th, 2008 byAtul Kumar in weblogic Print This Post This is third post in Series “Learn Oracle WebLogic with Us” . After WebLogic installation Here , next step is to create Domain. This post cover steps to create Domain in WebLogic (Simple - Administration Server or Advanced - one Administration Server and two Managed Server in a Cluster). If you are not familiar with Domain, Administration/Managed Server or Cluster then read my post here my post here or Oracle Documentation here There are multiple ways to create domain, steps mentioned here are usingConfiguration Manager Wizard (config.sh or config.cmd). –For Unix/Windows start configuration wizard using $BEA_HOME/ wlserver_10.0/ commom/ bin/ config.cmd (windows) or config.sh(UNix) –To Start configuration wizard in console mode use - config.[cmd|sh] -mode=console Screenshot below for creating Domain in WebLogic using Configurtaion Manager in GUI mode. Start Configuration Manager using command given above (config.sh / config.cmd) 1) Create or Extend Domain - In First screen you select if you wish to Create new WebLogic Domain or Extend an Existing WebLogic Domain. Extending WebLogic Domainmeans you already have WebLogic Domain and want to add more Managed Server or configure cluster or configure additional applications.

New Microsoft Office Word Document

Embed Size (px)

Citation preview

Page 1: New Microsoft Office Word Document

http://onlineappsdba.com/index.php/2008/07/24/domain-administration-managed-server-cluster-in-oracle-weblogic/

Create Domain in Oracle WebLogic Posted in July 28th, 2008

byAtul Kumar in weblogic

 Print This Post 

This is third post in Series “Learn Oracle WebLogic with Us” .

After WebLogic installation Here, next step is to create Domain. This post cover steps to create

Domain in WebLogic (Simple - Administration Server or Advanced - one Administration Server and

two Managed Server in a Cluster). If you are not familiar

with Domain, Administration/Managed Server or Cluster then read my post here my post here  

or Oracle Documentation here

  There are multiple ways to create domain, steps mentioned here are usingConfiguration Manager

Wizard (config.sh or config.cmd).

–For Unix/Windows start configuration wizard using $BEA_HOME/ wlserver_10.0/ commom/ bin/

config.cmd (windows) or config.sh(UNix)

–To Start configuration wizard in console mode use - config.[cmd|sh] -mode=console

Screenshot below for creating Domain in WebLogic using Configurtaion Manager in GUI mode. Start

Configuration Manager using command given above (config.sh / config.cmd)

1) Create or Extend Domain - In First screen you select if you wish to Create new WebLogic Domain

or Extend an Existing WebLogic Domain.

   Extending WebLogic Domainmeans you already have WebLogic Domain and want to add more

Managed Server or configure cluster or configure additional applications.

Page 2: New Microsoft Office Word Document

2) Select Domain Source - 

3) Configure Administrator - In below screen you define UserName and Password for WebLogic

Domain and add/grant Administrator Role to that User (This user name /password will be used to

start/stop domain if Mode of domain is Production and to login to domain Admin WebConsole)

4) Select JDK & Start Mode -  In below screen, you define Mode in which you wish to start your

domain and JDK (Sun, JRockit or any other JDK)

Production Mode- Domain is more secure, You need username password to start domain or deploy

application. 

Page 3: New Microsoft Office Word Document

Development Mode- Not very secure, You can Autodeploy application and no need to provide

username/password to start Domain.

5) Customize your domain -  Using below screen you can customize your domain(Create Managed

Server, Cluster, JDBC Source, JMS File Store). Select initially No to create simple domain with Just one

Administration Server (You can deploy your application in Administration Server but this is not

recommended in Production Instance). 

  To create Advanced Domain (one Administration Server and two Managed Server and Cluster) go to

Step  8 )

6) In next screen you provide Domain Name, Location of Domain.

7) Finally, If you are installing on Windows, you can select to “Start Admin Server“

Click Done to finish Domain Installation. 

Next Step, go to Start WebLogic and access Domain Console from browser at end of this post.

Page 4: New Microsoft Office Word Document

.

Create Domain with one Administration Server and two Managed Server Instance in

Cluster 

Steps here are to create new Domain with one Administration Server (AdminServer), two Managed

Server (MS1 & MS2) in cluster (cluster_1)

- Administration Server and both Managed Server are installed on single machine (you can configure

them on multiple servers as well).

.

Administration Server

Name - AdminServer

Listen Address - All IP address on machine

Listen port - 7003

SSL Listen Port - 7004

.

Managed Server 1

Name - ms1

Listen Address - All IP address on machine

Listen port - 7103

SSL Listen Port - 7104

.Managed Server 2

Name - ms2

Listen Address - All IP address on machine

Listen port - 7203

SSL Listen Port - 7204.

Cluster Details  

Cluster Name - cluster_1

Multicast Address - 239.192.0.0

Multicast Port - 8050

Cluster Address - 127.0.0.1

Cluster Member - ms1 & ms28 ) Start with step 1) to 4) as shown above on screen 5) “Customize

Environment” select  Yes as shown below 

Page 5: New Microsoft Office Word Document

.

9) Configure Administration Server - configure Administration Server using this screen like Name,

Listen & SSL Listen Port

10) Configure Managed Server - click on Add to add managed server. 

11) Configure Managed Server - Add two managed server (ms1:7103:7104 & ms2:7203:7204)

12) Configure Cluster - click on Add to create cluster and add Managed Server in Cluster. If you

have NOT defined any managed server in previous screen, you will NOT get this screen.  

13) Configure Cluster- Define cluster with Cluster Name, Multicast Address,  Port and address.

Page 6: New Microsoft Office Word Document

14) Assign Server to Cluster - Use this screen to add Managed Server on Left hand side to Cluster

on right hand side.

15) Assign Server to Cluster - as shown in below screen shot, We added MS1 & MS2 to cluster_1

16) Configure Machine - Use this screen if you have more than one machine in your system. In our

configuration Administration Server and  all Managed Server are on single machine.

17) Review WebLogic Domain -

18) Create WebLogic Domain  - define Domain Name and Domain Location on this screen. This

screen is similar to step 6) above

Page 7: New Microsoft Office Word Document

.

.

Start WebLogic Domain

Once you have successfully created domain, next step is to  start weblogic domain and access

Administration Console. (Steps here are to start basic domain - only one Administration Server, 

“Start/Stop WebLogic Server - Administration and Managed Server“ coming soon… )

Startup Script

$BEA_HOME/user_projects/domain/<domain_name>/bin/startWebLogic.sh (Unix)

$BEA_HOME\user_projects\domain\<domain_name>\bin\startWebLogic.cmd(Windows)

I installed domain with name base_domain and my BEA_HOME is c:\bea hence to start my domain -

c:\bea\user_projects\ domains\ base_domain\ bin\ startWebLogic.cmd

Access Administration Console

Default Administration Port is 7001 so use port as 7001 (else use port you entered while

creating WebLogic Domain)

http://<servername>.domain:7001/console

or

http://localhost:7001/console (If you are accessing from server directly)

Login to WebLogic Admin Console using UserName/Password created during WebLogic Domain

Creation.

After successful login you should get screen like below.

Page 8: New Microsoft Office Word Document

.

References

Oracle WebLogic Domain Configuration Guide

Previous in series Next in series

Related Posts for Learn WebLogic with Us

1. Oracle WebLogic Installation Steps

2. Domain , Administration & Managed Server, Cluster in Oracle WebLogic

3. Create Domain in Oracle WebLogic

4. Oracle WebLogic Server - Startup/Shutdown

5. Oracle WebLogic Server 10g R3 10.3 is out now

6. Deploy Application on Oracle WebLogic Server

7. Cluster Architecture : Oracle WebLogic Server

8. Start WebLogic Server on Linux on port 80, 443 <= 1024

9. JDBC (Java DataBase Connectivity ) in Oracle WebLogic - Overview

10. WebLogic Server JDBC for Database connection : Step by Step

11. Security in Oracle WebLogic : Realm, Security Provider, Authentication,

Authorization, Users

12. Deploy ADF application to Oracle WebLogic Server

13. Node Manager in Oracle WebLogic Server

14. Configure Oracle HTTP Server infront of Oracle WebLogic Server mod_wl_ohs

15. How to install weblogic server on 64 bit O.S. (Linux /Solaris) ?

16. Oracle WebLogic Login Issue : Password is not correct (Password Lock Policy)

17. Oracle WebLogic Server : Node Manager in nutshell

18. Certification : 1Z0-108 Oracle WebLogic Server 10g System Administrator Certified

Expert

19. How to integrate WebLogic with Oracle Internet Directory for Login : Authentication

20. opatch, adpatch and now “smart update” (BSU) to apply weblogic patches

21. Disater Recovery documentation for Oracle WebLogic Server 11g (Fusion

Middleware)

Page 9: New Microsoft Office Word Document

22. Authentication Providers in #WebLogic - Oracle Access Manager Identity Assertion

for Single Sign-On and OAM Authenticator

23. Error while starting WebLogic Server : java.lang.NumberFormatException: null

24. #WebLogic startup prompting from username password : boot.properties

25. BEA-000286 : Failed to invoke startup class “JRF Startup Class”

oracle.jrf.wls.JRFStartup

26. WebLogic Kerberos (SSO) Authentication Issue : Error 401 Forbidden : No

Configuration was registered that can handle the configuration named com. sun.

security. jgss. krb5. accept

27. How to reset Lost Oracle WebLogic Password for Fusion Middleware Applications

28. Oracle WebLogic Server Certification : 1Z0-108 Practice Question and Dumps

29. WebLogic Startup fails with Unable to obtain lock on Server may already be running

30. Oracle Weblogic 12c Launch : Attend online on 1 Dec 2011

31. Oracle WebLogic 12c (12.1.1) is now available to download

32. How to Install WebLogic 12C (12.1.1) on Mac

Popularity: 37% [?]

Share This

   

Readers who viewed this page, also viewed:

JDBC (Java DataBase Connectivity ) in Oracle WebLogic - Overview Oracle WebLogic Installation Steps Domain , Administration & Managed Server, Cluster in Oracle WebLogic Oracle WebLogic Server - Startup/Shutdown About Us

44 users commented in " Create Domain in Oracle WebLogic " Follow-up comment rss or Leave a Trackback

rahul said,

in September 12th, 2008 at 11:25 pm

Hi

I was trying fai lover mechanism for clustering..so i have created 1 adminserver and 2 managed servers

l ike ms1 n ms2 in cluster_1, considering ms1, ms2 and admin server exist in the same physical machine

Page 10: New Microsoft Office Word Document

and EAR fi le is deployed in ms1 and ms2. What ip/port configuration i need to provide for ms1 and ms2.

Does ip n port wil l be same for ms1 and ms2? Can you please help me on this.

Atul said,

in September 13th, 2008 at 2:56 am

Rahul, Two services (ms1 & ms2) can’t start on same IP and Port combination.

Either IP has to be different OR port OR both.

Usually we define same IP (machine IP address) and two different port number (one for ms1 and other

for ms2)

rahul said,

in September 13th, 2008 at 7:05 pm

Hi Atul,

Thanks for your response. I am sti l l not very clear about the fai lover mechanism, continuing with the

same example. I assume if the user is accessing some web appln using url

say http://10.10.10.10:7001/console/login.jsp

Where 10.10.10.10 is the IP addss of machine which is hosting the admin server and 2 managed server

ms1 n ms2. Now if ms1 (using port 7001) goes down it should switch automically to ms2 (same ip with

port say 7101) which is up and running but in that case user wil l not be able to access the appln with

the URL   http://10.10.10.10:7001/console/login.jsp.   Can you please explain how this scenario is handled

in clustering.

Thanks

Rahul

Atul said,

in September 18th, 2008 at 9:52 am

Rahul,

You put load balancer in front which distr ibute load to various managed server running on different port.

User connect to loadbalancer on single port (usually 80 or 443) which in turn fwd request to managed

server on ports lets say 7001 & 7101

rahul said,

in September 18th, 2008 at 4:03 pm

Thanks Atul for al l you help.

Page 11: New Microsoft Office Word Document

Cheers

Chandan

saurabh tiwari said,

in December 2nd, 2008 at 3:19 am

can u plz tel l me what r things required i f i wanna put my application online

thanx

saurabh

Aawardhan said,

in February 19th, 2009 at 6:18 am

Can you explain how to instal l a,

Domain (machine A),1 server in machine B, 1 server in machine C and a cluster of servers 3/4 one each

in machine B and c.

This would be of great help.

Thanks in advance !!

Aawardhan

sridhar1985 said,

in March 9th, 2009 at 6:10 am

Hi,

I am new weblogic. I have instal led weblogic 10.3 in l inux machine. I have started i t by running the

startWeblogic.sh f i le from /home/oracle/bea/wlserver_10.3/samples/domains/wl_server/bin.

Server is running in back ground. I am able to connect to Admin console.

Now i have created domain cal led base_domain at bea/user_projects/domains/base_domain

Now i want to run the startWeblogic.sh f i le from

bea/user_projects/domains/base_domain/bin path.

Above thing is giving me error. Port has already used.

Start fai led.

Wat can i do now. Please help me out. Is real ly need to start server from

$domain_home/bin/startWeblogic.sh.

Page 12: New Microsoft Office Word Document

Thanks in advance.

Sridhar.

Atul Kumar said,

in March 9th, 2009 at 6:32 am

Sridhar, I t seems that for base domain (new domain) you used same port as Admin Server or port you

used for base domain is used by some other service.

Use different port for new domain.

sridhar1985 said,

in March 9th, 2009 at 8:32 am

Hi Atul,

Thanks for your reply. I have stopped weblogic server which is running from

bea/wlserver_10.3/samples/domains/wl_server/bin

And i have started the server from bea/user_projects/domains/base_domain/bin path

Now Admin console is opening for my domain base_domain.

Is this process is correct?

To start weblogic server, which startweblogic.sh need to be run. Because this f i le present in so many

locations.

Please clari fy i t .

Thanks in advance.

Ravisankar C said,

in Apr i l 11th, 2009 at 1:55 pm

Hi,

I have a doubt i f we deploy an application in admin server can we access that from managed servers??

shashank said,

in Apr i l 28th, 2009 at 3:22 am

Can u plz tel l me how to configure two instance on two different ports ?

by default i t is gett ing configured at 7001 and its running f ine .

but not able to configure i t on some different port l ike 8001 etc..

Page 13: New Microsoft Office Word Document

plz help…

thanks in advance !!! ! ! !

Sridhar1985 said,

in Apr i l 28th, 2009 at 6:13 am

Hi shashank,

U can create by creating a new domain with dif ferent port other than 7001.

In same domain we can not access same port for 2 instances. You can use different port for managed

server.

Sridhar1985 said,

in Apr i l 28th, 2009 at 6:16 am

Hi ravisankar,

I think we can not access the application on managed server, which is deployed on Admin server. I hope

it is 100%

Sridhar1985 said,

in May 21st, 2009 at 10:37 pm

Hi,

How to apply load balancing for the 2 managed servers in cluster?

How can i create cluster for 2 managed servers which are created on separate IPs( systems )?

Is there any way to do this?

Please help me. Thanks in advance.

Sridhar

satya said,

in June 9th, 2009 at 9:42 pm

Hi Atul,

I am new to weblogic administrat ion.

I Have seen ur posting for crating domain, adminServer and managed servers. I tr ied and created those

successful ly, but i dont know how to manage those adminserver and cluster(managedserver) from admin

console to start and stop)

Page 14: New Microsoft Office Word Document

Could you please help me on this how to configure node manager. Thanks in Advance.

satya

Sridhar1985 said,

in June 10th, 2009 at 3:16 pm

Hi Satya,

Admin server you can start from command l ine only. But you can stop from console and command l ine

also. Managed server you can stop and start from console. Before start ing managed server you have to

start NodeManger (bea/wlserver_10.3/server/bin/startNodemanger.sh). Then you can start managed

server from console.

I f you are using windows this is a .cmd f i le to run Nodemanager i .e, startNodemanager.cmd

Hope this wil l help you.

DINU C R said,

in May 19th, 2010 at 9:13 am

hi

i am new to weblogic i facing some problem in domain

There is alreay a domain in weblogic in which a application is running perfectly

i need to instal l another application in weblogic

Do i need to create a new domain for that application?

I f creating a new domain wil l i t delete the exist ing domain?

or can i extend the prevoius domain?

i f extending wil l i get a new config.xml f i le where i can give ports for that application to run?

please suggest me what i have to do so that both application wil l be running paral lely

Atul Kumar said,

in May 19th, 2010 at 9:21 am

@ Dinu,

Application is deployed on Server (Admin or Managed, usually managed server) with in a domain.

Now you can deploy on exist ing server or create new managed server.

If you want new application to run paral lely then deploy i t on exist ing domain and attach i t to one or

more exist ing managed server.

Page 15: New Microsoft Office Word Document

To understand domain, managed server, admin server check

http://onl ineappsdba.com/index.php/2008/07/24/domain-administrat ion-managed-server-cluster-in-

oracle-weblogic/

dinu cr said,

in May 19th, 2010 at 3:37 pm

hi Atul kumar

Thanks for replying, i f you could clear me this , i t would be more helpful

1)I tr ied deploying the new application’s .war f i le in the exist ing domain, but i ts not working

Do i have to give new port to that application so that that part icular software wil l run on that port without

disturbing the main application.

2) can we create more than one domain? if so i wi l l create a new domain and deploy the software in the

same.

Atul Kumar said,

in May 19th, 2010 at 3:59 pm

@ Dinu,

Check why its not working by looking at server logs.

In administrat ion console -> Deployment -> [go to your application]

Check health of your application and if i t is down then start i t . I f this doesn’t start then check logs for

issue.

DINU C R said,

in May 20th, 2010 at 2:35 am

hi Atul

we are working in UNIX environment, we are not gett ing the adminstration console, i wi l l breif my entire

problem so that you could sugest me suitable answer

we instal led weblogic in UNIX, and created a domain(admin server) and assigned 9003 port to that

domain and deployed maximo.ear f i le and the software is running f ine on that. maximo is running in

9003 port

we are trying to instal l a new support ing software so we deployed the .war f i le in that domain with the

same 9003 port and it didn’t worked.(we tr ied changing the port st i l l didn’t work).

Page 16: New Microsoft Office Word Document

As of now 9004 port is free , i want to assign this port to the software, is i t necessary to have console to

deploy .war f i le,

i f creating a new domain, wil l the exist ing domain gets deleted automatical ly? we i could create a new

domain i can deploy the software in that domain i tself.

And you said creating a new managed server, can i create i t in the exist ing domain or with new domain.

Atul Kumar said,

in May 20th, 2010 at 11:31 am

@ Dinu,

Console is not mandatory , you can use command l ine (WLST) or other methods to deploy application

(   http://onl ineappsdba.com/index.php/2008/08/12/deploy-application-on-oracle-weblogic-server/   )

Which method your are using ? What error your are using ? Enable debugging in your deployment to

see what error message you are hitt ing.

If you are new to WebLogic then my recommendation would be to use Console

Husain said,

in June 16th, 2010 at 2:16 pm

Hi Atul,

I am trying to create a domain on Red Hat Linux for SOA 11gR1PS3 however I am not able to enter

password. Do you know how to resolve that?

I see on forum there are others having the same issue.

Thanks for your help!

Husain

tsurendraraju said,

in July 21st, 2010 at 2:27 am

Hi,

Need steps to create domain in consolde mode in web logic 10.3

Surendra.

pprak said,

Page 17: New Microsoft Office Word Document

in July 21st, 2010 at 2:34 am

Hi Atul:

I m trying to bring up the Weblogic 10.3 server but while creating the domain i t fai ls with the fol lowing

error, Appreaciate i f you could help me resolve this issue:

Preparing…

Extracting Domain Contents…

Creating Domain Security Information…

Storing Domain Information…

String Substitut ing Domain Fi les…

Performing OS Specif ic Tasks…

Domain Creation Failed!

Domain Location: C:\bea\user_projects\domains\adomain

Reason: Got error in writ ing the node manager C:\bea\wlserver_10.3\common\nodemanager\

nodemanager.domains property f i le!

Exception:

java.lang.Exception: Got error in writ ing the node manager C:\bea\wlserver_10.3\common\nodemanager\

nodemanager.domains property f i le!

at

com.bea.plateng.domain.DomainNodeManagerHelper.registerDomainToNodeManager(DomainNodeMana

gerHelper. java:138)

at

com.bea.plateng.domain.DomainNodeManagerHelper.registerDomainToNodeManager(DomainNodeMana

gerHelper. java:170)

at com.bea.plateng.domain.DomainGenerator.generate(DomainGenerator. java:460)

at

com.bea.plateng.wizard.domain.gui.tasks.DomainCreationGUITask$1.run(DomainCreationGUITask.java:

232)

If i go ahead and try to start the Weblogic server from command prompt on windows box, I get fol lowing

error:

start ing weblogic with Java version:

Listening for transport dt_socket at address: 8453

java version “1.6.0_05″

Java(TM) SE Runtime Environment (bui ld 1.6.0_05-b13)

Java HotSpot(TM) Client VM (build 10.0-b19, mixed mode)

Start ing WLS with l ine:

Page 18: New Microsoft Office Word Document

C:\bea\JDK160~1\bin\java -Xdebug -Xnoagent -Xrunjdwp:transport=dt_socket,addres

s=8453,server=y,suspend=n -Djava.compiler=NONE -Xms256m -Xmx512m -XX:CompileThr

eshold=8000 -XX:PermSize=48m -XX:MaxPermSize=128m -ea -da:com.bea… -da:jave

l in… -da:weblogic… -ea:com.bea.wli… -ea:com.bea.broker… -ea:com.bea.sbco

nsole… -Dplatform.home=C:\bea\WLSERV~1.3 -Dwls.home=C:\bea\WLSERV~1.3\server -

Dweblogic.home=C:\bea\WLSERV~1.3\server -Dweblogic.management.discover=true -

Dwlw.iterativeDev=true -Dwlw.testConsole=true -Dwlw.logErrorsToConsole=true -Dwe

blogic.Name=AdminServer -Djava.security.pol icy=C:\bea\WLSERV~1.3\server\ l ib\webl

ogic.pol icy weblogic.Server

Listening for transport dt_socket at address: 8453

Exception in thread “main” java.lang.NoClassDefFoundError: weblogic/Server

Caused by: java.lang.ClassNotFoundException: weblogic.Server

at java.net.URLClassLoader$1.run(URLClassLoader. java:200)

at java.security.AccessControl ler.doPrivi leged(Native Method)

at java.net.URLClassLoader.f indClass(URLClassLoader. java:188)

at java.lang.ClassLoader. loadClass(ClassLoader. java:306)

at sun.misc.Launcher$AppClassLoader. loadClass(Launcher. java:276)

at java.lang.ClassLoader. loadClass(ClassLoader. java:251)

at java.lang.ClassLoader. loadClassInternal(ClassLoader. java:319)

Stopping PointBase server…

PointBase server stopped.

Atul Kumar said,

in July 21st, 2010 at 5:58 am

@ Surendra,

Did you mean si lent mode and not console ?

Steps in console mode (command l ine) are going to be same as GUI .

Just run config.[cmd|sh] -mode=console

Atul Kumar said,

in July 21st, 2010 at 6:42 am

@ PPrak,

Looking at error message “Got error in writ ing the node manager C:\bea\ wlserver_10.3\common\

nodemanager\ nodemanager.domains ”

It looks l ike you are creating domain from different user (from one who instal led)

You main issue while startup

Page 19: New Microsoft Office Word Document

Exception in thread “main” java.lang.NoClassDefFoundError: weblogic/Server

is because classpath (required jar f i les which contains server class is missing) is missing some f i les.

Check i f you are creating domain correctly.

test12 said,

in October 21st, 2010 at 4:46 pm

Hi,

I have created 2 domains, but on the console I am able to login to only one domain at at t ime. If I try to

login simultenously, the exist ing session is ki l led.

Atul Kumar said,

in October 21st, 2010 at 5:27 pm

@ Test12,

You cannot run two domain on same port and same ip at same t ime (There is one console per domain).

Domain is logical separation of resource (console, jdbc, admin/managed server) check more on Domain

at

http://onl ineappsdba.com/index.php/2008/07/24/domain-administrat ion-managed-server-cluster-in-

oracle-weblogic/

test12 said,

in October 21st, 2010 at 6:08 pm

@ Atul,

Thanks for replying.

So would this mean I cannot access even the managed servers belonging to 2 dif ferent domains at the

same t ime? even though the domains are on different port (but same ip).

And also can you help me out with the fol lowing scenario…

I want to deploy an application twice, one for testing another for dev, on the same server. What

configuration would suff ice this?

Thanks for your help!

Regards.

Page 20: New Microsoft Office Word Document

Atul Kumar said,

in October 21st, 2010 at 6:15 pm

@ Test12,

You can run two weblogic domain (and two consoles) on same machine but they should either use

different IP (Mult iple Netwotk Card) or dif ferent Port (Single/Same IP).

Q. I want to deploy an application twice, one for testing another for dev, on the same server. What

configuration would suff ice this?

A. You should deploy them to two different domains but make sure that port number you are using for

Admin Server (or Managed server) on these two domains are different

test12 said,

in October 21st, 2010 at 6:30 pm

@Atul,

I tr ied with deploying i t on 2 different domains with dif ferent port numbers for Admin Server and also the

managed server.

I also tr ied creating 2 managed server in the same domain, with dif ferent ports.

But I am sti l l able to access only 1 application at a t ime.

To add, the resources, server detai ls are different for these 2 applications.

test12 said,

in October 21st, 2010 at 6:40 pm

@Atul,

Also, I have associated the 2 managed servers with 2 dif ferent machines, but the node manager is the

same. Could this be the reason?

Can there be 2 node managers? How to create a new node manager?

Regards

Atul Kumar said,

in October 21st, 2010 at 8:18 pm

Page 21: New Microsoft Office Word Document

@ test12, You can create 2 managed servers in dif ferent domain and associate them to same machine

( i f they are on same machine).

Node Manager is 1 per machine usually (though you can create mult iple node manager per machine).

Make sure to add al l domains on machine to node manager .

Note : Node Manager is required i f you want automatic restart of managed servers or start of managed

servers via console .

You can l ive without Node Managers (start managed servers via command l ine tools)

Suresh2011 said,

in January 12th, 2011 at 5:40 pm

Atul,

First of al l thanks for providing such valuable information to us. I highly appreciate your hard work.

I was wondering i f you have any steps /screens on how to deploy a war f i le on Weblogic cluster?

My setup:

1 admin server

1 cluster (with 2 manage servers)

Thanks

Sur

Atul Kumar said,

in January 13th, 2011 at 5:55 am

@ Suresh2011,

Follow steps mentioned at

http://onl ineappsdba.com/index.php/2008/08/12/deploy-application-on-oracle-weblogic-server/

Only dif ference for Cluster is at end when screen prompts target instance , i t wi l l give you options l ike

a) Deploy to cluster

b) deploy to maanged server1

c) deploy to maanged server2

d) b) deploy to Admin Server

Page 22: New Microsoft Office Word Document

Select option a) i .e deploy to cluster

kanhiyalal said,

in Apr i l 13th, 2011 at 6:59 am

Problem Descript ion: Current Environment

————————

Oracle Application Server 10gR2 middle t ier with Infrastructure with component OID, SSO, portal and

repository database

integrated with Oracle application 11i (11.5.10.2) with Oracle Database 10.2.0.4

What we want

—————-

Planning to Upgrade

FROM

Oracle Application Server 10gR2 middle t ier with Infrastructure with component OID, SSO, portal and

repository database

integrated with Oracle application 11i (11.5.10.2) with Oracle Database 10.2.0.4

TO

Oracle Weblogic Server with Infrastructure with component OID, SSO, portal and repository database

integrated with Oracle application 11i (11.5.10.2) with Oracle Database 10.2.0.4

Please guide us.

Atul Kumar said,

in Apr i l 13th, 2011 at 7:39 am

@ kanhiyalal.

Glad to see that you have asked question with al l information required. I am afraid answer is not going

to be easy one

1. Thing to note is that there is no upgrade for 10g SSO (aka AS-SSO)

2. You can upgrade 10g OID to 11g OID and continue using 10g SSO (this is cert i f ied with EBS 11i)

To upgrade 10g OID to 11g OID

fol low http://download.oracle.com/docs/cd/E17904_01/upgrade.1111/e10129/summary.htm#BGBBIDHA

To upgrade 10g Portal to 11g Portal

fol low http://download.oracle.com/docs/cd/E17904_01/upgrade.1111/e10130/summary.htm#BABGIJAD

Page 23: New Microsoft Office Word Document

and also check metal ink notes

1146044.1 Using Oracle Internet Directory 11gR1 Patchset 1 (11.1.1.2.0) and Single Sign-on with

Oracle E-Business Suite

1286596.1 Using Oracle Internet Directory 11gR1 Patchset 1 (11.1.1.3.0) and Single Sign-on with

Oracle E-Business Suite

876539.1 Using the Latest Oracle Internet Directory 11gR1 Patchset with Single Sign-on and Oracle E-

Business Suite

1074344.1 Using Oracle Portal 11.1.1 with Oracle E-Business Suite Release 11i

vishal said,

in Apr i l 15th, 2011 at 3:05 am

i hv instal led oracle 11g Database n Form-Reports..But my OEM is gett ing frequently crashed…Details r

here..

———————————————–

Problem Event Name :APPCARSH

Application Name :nmupm.exe

Application Version :10.2.0.5

Application TimeStamp :4bbffaf6

Fault Module Name :MSVCR71.dl l

Fault Module Version :6.0.6001.18000

Fault Module TimeStamp :4791a7a6

Exception Code :c0000135

Exception Offset :00009cac

vishal said,

in Apr i l 15th, 2011 at 3:06 am

i hv instal led 11g Database n forms-reports on Windows server 2008 32bit

Dharmendra said,

in July 19th, 2011 at 3:44 pm

Hi i geting this error msg pls advise me

Version= WLS10.2

Weblogic server blog | kishore2k9 said,

in December 21st, 2011 at 2:36 pm

Page 24: New Microsoft Office Word Document

[…]   http://onl ineappsdba.com/index.php/2008/07/28/create-domain-in-oracle-weblogic/  

GA_googleAddAttr(”AdOpt”, “1″); GA_googleAddAttr(”Origin”, “other”); GA_googleAddAttr(”theme_bg”,

“f f f f f f”); GA_googleAddAttr(”theme_text”, “333333″); GA_googleAddAttr(”theme_link”, “0066cc”);

GA_googleAddAttr(”theme_border”, “f2f7fc”); GA_googleAddAttr(”theme_url”, “f f4b33″);

GA_googleAddAttr(”LangId”, “1″); GA_googleAddAttr(”Tag”, “weblogic-server”);

GA_googleFil lSlot(”wpcom_sharethrough”); Like this:LikeBe the f irst to l ike this post. This entry was

posted in Weblogic Server. Bookmark the permalink. ← Java heap   memory Weblogic Application

Server   FAQs → […]

» OFSAAI - Oracle Financial Services Analytical Application Infrastructure : Installation Steps Online Apps DBA: One Stop Shop for Apps DBA’s said,

in January 10th, 2012 at 9:37 am

[…] weblogic domain by running config.sh (For steps on how to create domain in weblogic cl ick here […]

Leave A Reply

 Username (*required)

 Email Address (*private)

 Website (*optional)

 Notify me of followup comments via e-mail

Post My Comment

Page 26: New Microsoft Office Word Document

 Users since Oct 07 

ContributorsInterested in sharing your knowledge/experiences; contact us atadmin @ onlineappsdba.com 

Amit Pancholia (6) Ankit Mittal (1)

Atul Kumar (550)

Brijesh Kumar (6)

Mahendra Babu (121)

Muhammad Rawish Siddiqui (9)

Neha Mittal (22)

Rajat Dey (26)

Ramnik Gupta (5)

Richa Shivkumar (7)

Rupesh Sreenivas (11)

sarath (33)

Saurabh Srivastava (3)

Shanker Jadapa (3)

Shilu Thomas (11)

Subba Rao (8)

ODI

ODI Installation & overview ODQ/ODP & Metabase Manager ODI 10.1.3.6 Create Data Loader

OPA/OPM

Page 27: New Microsoft Office Word Document

OPA/ Haley Rules basics OPA Components

OAS/SOA

Application ServerInstall Application Server Start/Stop OAS Clone/Stage 10g AS Install 10gAS Infra Change Hostname of 10g AS Find passwords in 10g AS AS Guard - DR Troubleshooting Portal/ Webcache/ HTTP Upgrade to 10.1.2.2 iAS Comsole/EM changes Reset ias_admin Password 

IntegrationApps 11i/R12 with SSO 10g AS with OAM Application Integration Architecture Oracle SSO with third party Access Management SOA with SSO 

Fusion MiddlewareFusion Middleware Overview Fusion or ConFusion Difference between Middleware, iAS and Fusion 

11g AS/Jdeveloper/SOAInstall 11g Jdeveloper / SOA 

10gR3 AS / SOA SuiteUpgrade OAS to 10.1.3.4.0 Upgrade SOA/OAS to 10.1.3.3.0 SOA Suite Overview Install SOA Suite Reset OC4JADMIN Password 11g SOA/Jdeveloper SOA integration with SSO Cluster SOA Suite for HA iASConsole changes in 10.1.3 Configure 10.1.3 OC4J from 10.1.2 Web Server 

Service BusOracle Service Bus = OESB + ALSB 

Service RegistryService Registry Installation 

Page 28: New Microsoft Office Word Document

BPELBPEL Overview Hello World in BPEL Deploy BPEL Process Deploy/Compile BPEL   BPEL Admin Console BPEL Console, domain & Sensor 

OracleAS AdaptersAdapter Overview & Services 

ScriptsWorkflow Related Apps Scripts 

CertificationR12 Apps DBA - Beta 11i Apps DBA OCA 10gAS DBA OCP 10gAS DBA Certification - 10gAS Certification for DBA's 

Database

RAC DatabaseStep by Step RAC Install CRS, Voting Disk, Cache Fusion 

DatabaseBlock, Segment, Extents Tablespace, Datafiles oraInventory Embedded SQL in shell Kill Session Wallet/OWM/SSL Datapump ORADEBUG AWR Reports Errors in 10.2.0.1 Install TimesTen In-Memory DB 11g Upgrade overview 

Dataware HousingCDC Overview 

RMAN/RecoveryRMAN Overview Recovery Scenario Recover Accidentally deleted file Verify Corruption 

RACRAC Storage 

Page 29: New Microsoft Office Word Document

Recent Comments

Sanjeev   in OID 11g - Oracle Directory Services… amr   in Provision Transaction Database for … Jagadish   in Reducing Patch Timing Contd… Atul Kumar   in Fusion Applications 11.1.1.5.1 Inst… Atul Kumar   in OID 11g Integration with OAM (11.1.… Atul Kumar   in Oracle Fusion Middleware - SOA Suit… Atul Kumar   in Part VIII (Optional) Configure LDAP… Atul Kumar   in Provision Transaction Database for … Atul Kumar   in Fusion Applications : 128 GB memory… Atul Kumar   in Oracle SOA Suite Installation Part …

Recent Entries

Prevent disabled users to login to application protected by Oracle Access Manager GSL_ACCOUNTLOCKED_EXCP : Your account is locked - User Unable to login to SSO enabled

application How to create new realm in OID 11g? JPS-03026: PDPService and PolicyStore Service Instance not found How to access ODI Studio on Linux EditHttpConf error during WebGate 11g Installation on IBM AIX weblogic.nodemanager. common.ConfigException Native version is enabled but node

manager native library could not be loaded : NativeVersionEnabled Migration steps in OES 11g Importing Policy into OES 11g Exporting of policies in OES 11g

Social Network

Subscribes to feed Stumble this site   main post Add to my   Technorati favourite

July 2008

M T W T F S S

« Jun   Aug »

  1 2 3 4 5 6

7 8 9 10 11 12 13

14 15 16 17 18 19 20

21 22 23 24 25 26 27

28 29 30 31  

Page 30: New Microsoft Office Word Document

Blogroll

Anil Passi Techno Functional Arnoud Roth Apps DBA Aviad Elbaz Apps DBA Bas Klaassen Apps DBA Bex’s UCM BlakGeek Apps DBA Database Concepts David New Apps DBA David Roe Content Management DBA Blog Dietrich Schroff - SOA, Webcenter, BPEL Dmitry’s DBA blog Eric Elzinga Oracle FMW Eric Marcoux J2EE & Middleware Fadi Apps DBA Famy Rasheed Apps DBA Fusion ECM iAdvise IT Eye khanderao SOA BPEL - SOA ESB BPM Kishore Apps DBA Madhu Sudhan Apps DBA Mohan Dutt Apps Certification Murali Raju (Apps DBA) Navdeep Saini Apps DBA Ora Biz Ora Space Orjan’s SOA Peeyush Apps SOA Peter Moskovits Webcenter Peter O’Brien Rajesh Siebel Ramesh Mani Apps DBA Ron Batra Oracle Sam Apps DBA Santosh Fusion Middleware Senthil DBA nd Middleware Simon Ellis SOA Fusion Steven Chan E-Business Suite Sundee Dubey Suneel Dasari SOA/Fusion Suresh Apps DBA R12 Vikram Das ERP

Archives

March 2012 February 2012 January 2012 December 2011

Page 31: New Microsoft Office Word Document

November 2011 October 2011 September 2011 August 2011 July 2011 June 2011 May 2011 April 2011 March 2011 February 2011 January 2011 December 2010 November 2010 October 2010 September 2010 August 2010 July 2010 June 2010 May 2010 April 2010 March 2010 February 2010 January 2010 December 2009 November 2009 October 2009 September 2009 August 2009 July 2009 June 2009 May 2009 April 2009 March 2009 February 2009 January 2009 December 2008 November 2008 October 2008 September 2008 August 2008 July 2008 June 2008 May 2008 April 2008 March 2008 February 2008 January 2008 December 2007 November 2007 October 2007 September 2007 August 2007 July 2007 June 2007