Jython wsadmin:获取服务器的节点名称
在 Jython WebSphere Wsadmin 中:
看来我可以从 nodeName 获取服务器的名称,但是我还没有找到一种直接方法来查找服务器的 nodeName。
我考虑过创建所有节点的地图,但这很昂贵。
有人可以帮忙吗?
In Jython WebSphere Wsadmin:
It appears that I can get to the server's names from the nodeName, however I haven't managed to find a direct way to find the nodeName of a server.
I thought about creating a map of all the nodes, but that is expensive.
Can anyone help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 Server MBean 获取服务器的节点名称。
您可以在此处找到有关服务器 MBean 的信息 http://publib.boulder.ibm.com/infocenter/wasinfo/v6r1/index.jsp?topic=%2Fcom.ibm.websphere.ejbfep.multiplatform.doc%2Finfo%2Fae%2Fae%2Fcjmx_overview .html
You can get the node name of the server using the Server MBean.
You can find info on the Server MBean here http://publib.boulder.ibm.com/infocenter/wasinfo/v6r1/index.jsp?topic=%2Fcom.ibm.websphere.ejbfep.multiplatform.doc%2Finfo%2Fae%2Fae%2Fcjmx_overview.html
您还可以使用
AdminControl
上的getNode()
方法获取节点名称:参考资料
You can also get the node name using the
getNode()
method onAdminControl
:References