我希望能够“启动”群集中的其他WebLogic 11g托管服务器以添加其他水平实例。
用例是我从具有X实例的WebLogic群集开始,我想动态添加其他实例,即使用脚本和使用实时系统(没有任何停机时间)。
我可以使用什么(例如WLST?)来创建其他受管服务器,配置它,例如将它添加到域?有没有人这样做过?
答案 0 :(得分:0)
这是一个example。 你可以做一个svr.setCluster和svr.setMachine
答案 1 :(得分:0)
以下是WLST的示例:
创建:
function activate(){
$scope.sm={};
$scope.sm.isOpen=true;
$scope.sm.popoverTitle=" Functionality <button>close</button>";
}
activate();
将服务器添加到群集(在connect('username','password')
edit()
startEdit()
cmo.createServer('managed1')
cd('Servers/managed1')
到上面添加的服务器之后)
cd
在WLST中实现/创建集群的方式与此类似:
cmo.setListenPort(ListenPort)
cmo.setCluster("MyCluster")
cmo.setMachine(Machinename)