说几个weblogic集群配置要点:
安装好weblogic后:想要通过节点服务器启动受管服务器
需要将节点服务器注册为管理服务器的一个服务
方法:(这里以linux为例子)
进入到/usr/local/bea10.3/bea/wlserver_10.3/common/bin
运行./wlst.sh
Initializing WebLogic Scripting Tool (WLST) ...
Welcome to WebLogic Server Administration Scripting Shell
Type help() for help on available commands
-wls:/offline> connect()
Note:Give the user name and password for the Admin server which located on Machine A:
Please enter your username [weblogic] :weblogic
Please enter your password [weblogic] :(密码确认)
Please enter your server URL [t3://localhost:7001] :t3://10.1.2.40:9001
Connecting to t3://10.128.23.111:7001 with userid weblogic ...
Successfully connected to Admin Server 'AdminServer' that belongs to domain 'Nodemanager_domain'.
Warning: An insecure protocol was used to connect to the server. To ensure on-the-wire security, the SSL port or Admin port should be used instead.
-Run The nmEnroll Command:
wls:/Nodemanager_domain/serverConfig>nmEnroll('/usr/local/bea10.3/bea/wlserver_10.3/common/nodemanager/')
Successfully enrolled this machine with the domain directory at C:\bea9.2\weblogic92\common\nodemanager.
wls:/Nodemanager_domain/serverConfig>exit()
#红色字体是我们需要输入的命令