Databases Reference
In-Depth Information
The Cluster Address configuration is used by the Enterprise JavaBeans
(EJB) and RMI objects deployed in the cluster. Leave the Cluster Address
configuration empty so the EJBs create the cluster address dynamically
based on which network channel the request is received.
If the request is received on the default network channel, the cluster address
is created using the default network channel listen address and listen port. If
the request is received on a custom network channel, the cluster address is
created using the custom network channel listen address and listen port.
There's more...
The cluster settings can also be modified through WLST.
Changing the cluster settings using WLST
1. Log in as a wls user to shell and start WLST:
[wls@prod01]$ $WL_HOME/common/bin/wlst.sh
2. Connect to the Administration Server using wlsadmin as the user, <pwd> as the
password and t3://prod01.domain.local:7001 as the server URL:
wls:/offline> connect("wlsadmin","<pwd>","t3://prod01.domain.
local:7001")
3. Run the following WLST commands to create the cluster and the server instances:
edit()
startEdit()
cd('/Clusters/PROD_Cluster')
cmo.unSet('clusterAddress')
cmo.setNumberOfServersInClusterAddress(4)
cmo.setWeblogicPluginEnabled(true)
cd('/Clusters/PROD_Cluster/OverloadProtection/PROD_Cluster')
cmo.setPanicAction('system-exit')
cmo.setFailureAction('force-shutdown')
cmo.createServerFailureTrigger()
cd('/Clusters/PROD_Cluster/OverloadProtection/PROD_Cluster/
ServerFailureTrigger/PROD_Cluster')
cmo.setMaxStuckThreadTime(600)
 
Search WWH ::




Custom Search