如何使用 WLST(而不是管理服务器)连接到特定的托管服务器

How to connect to a specific Managed Server using WLST (and not the Admin Server)

当 wlst python 脚本需要专门连接到托管服务器以进行操作时,连接命令始终连接到管理服务器:

/{INSTALL_PATH}/oracle_common/common/bin/wlst.sh {MY_PY_SCRIPT}.py 

connect(username,password,t3://{MY_MANAGEDSERVER_IP_ADRESS}:{T3PORT})
#or connect(username,password,t3://{MY_MANAGEDSERVER_LISTEN_ADDRESS}:{T3PORT})

Connecting to t3://{MY_MANAGEDSERVER_IP_ADRESS}:51001 with userid weblogic ...
Successfully connected to Admin Server 'AdminServer' that belongs to domain 'Domain'.

我们如何强制 connect wlst 命令连接到托管服务器而不是管理服务器?

声明使用托管主机和端口,而不是连接中的管理主机和端口。它会像魅力一样工作。