1

我正在使用RED HAT JBOSS ENTERPRISE APPLICATION PLATFORM 6.4.2.GA. 使用 EAP 管理 ( Configuration-> Connector-> Mail-> JNDI Name-> View)

我能够看到.xml文件中的值:

# grep remote-destination /etc/jbossas/standalone/standalone-full-ha.xml
            <remote-destination host="X" port="25"/>
            <remote-destination host="X" port="5445"/>
            <remote-destination host="X" port="5445"/>
            <remote-destination host="X" port="25"/>
            <remote-destination host="X" port="25"/>
# 

如何获得Socket Bindingvia的价值jboss-cli.sh

4

1 回答 1

3

如果您只使用standard-sockets套接字绑定组,则使用以下 JBoss CLI 命令列出远程目标:

/socket-binding-group=standard-sockets \
    /remote-destination-outbound-socket-binding=*:read-resource()

如果您使用更多套接字组,则为每个组调用类似的命令。

或者您可以一次读取整个套接字绑定配置:

/socket-binding-group=*:read-resource(recursive=true)
于 2015-09-01T06:23:22.610 回答