Create and create a Weblogic domain using WLST

I want to create a cluster with two managed servers on two different physical machines.

I have the following tasks that need to be completed (please correct me if I miss something)

  • Create a domain.
  • Set administration server properties and create AdminServer under SSL
  • Creating logical machines for physical
  • Creating Managed Servers
  • create a cluster with managed servers

I have the following questions.

  • Which of the above tasks can be performed autonomously, if any?

  • Which of the above tasks should also be performed on the second physical machine?

+3
source share
2 answers

. .

5 wlst script. node, AdminServer.

node nmEnroll,

, ,

  • wlst script, 5 , . node ( ), , AdminServer .

  • nodemanager , ,

  • AdminServer node, script.

  • script, .

    ( '', '', 't3://adminhost: adminport')

    nmEnroll ( 'path_to_the_domain_dir')

+5

1 , , AdminServer, , Weblogic:

1.1 , AdminServer, ./pack.shdomain=/home/oracle/config/domains/my_domain -template=/home/oracle/my_domain.jar -template_name=remote_managed -managed=true

1.2 jar, , ./unpack.sh -domain=/home/oracle/config/domains/my_domain -template=/home/oracle/my_domain.jar SAML_IDP_FromScript

, NodeManager ManagedServers .

0

Source: https://habr.com/ru/post/1726128/


All Articles