Resource Type: wls_cluster
- Defined in:
- lib/puppet/type/wls_cluster.rb
- Providers:
-
simple
Overview
Allows you to manage a WebLogic cluster in a WebLogic domain.
Here is an example on how you should use this:
wls_cluster { 'WlsCluster':
ensure => 'present',
messagingmode => 'unicast',
migrationbasis => 'consensus',
servers => ['wlsServer3','wlsServer4'],
multicastaddress => '239.192.0.0',
multicastport => '7001',
}
In this example you are managing a server in the default domain. When you want to manage a cluster in a specific domain, you can use:
wls_cluster { 'MuDomain/WlsCluster':
ensure => 'present',
messagingmode => 'unicast',
migrationbasis => 'consensus',
servers => ['wlsServer3','wlsServer4'],
multicastaddress => '239.192.0.0',
multicastport => '7001',
}
Check [the Oracle Weblogic documentation](docs.oracle.com/middleware/1221/wls/INTRO/clustering.htm#INTRO185) for more documentation about setting up and managing a WebLogic cluster.