JBAS012144:无法连接到远程://127.0.0.1:9990.连接超时 [英] JBAS012144: Could not connect to remote://127.0.0.1:9990. The connection timed out

查看:151
本文介绍了JBAS012144:无法连接到远程://127.0.0.1:9990.连接超时的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

运行代码时,我总是会收到错误消息:

when I run my Code I always get the error:

java.io.IOException: java.net.ConnectException: JBAS012144: Could not connect to remote://127.0.0.1:9990. The connection timed out.

我尝试连接到我的JBOSS Eap 7.

I try to connect to my JBOSS Eap 7.

如果我在Powershell中进行尝试,则无法连接到远程://127.0.0.1:9990 ,但要连接到远程+ http://127.0.0.1:9990 确实有效.所以我认为我必须更改协议,但是我不知道如何.

If I try it in Powershell, connecting to remote://127.0.0.1:9990 doesn't work but connecting to remote+http://127.0.0.1:9990 does work. So I think I have to change the protocol, but I don't know how.

ModelControllerClient client = ModelControllerClient.Factory.create(InetAddress.getByName("localhost"), 9990);

    ModelNode operation = new ModelNode();
    operation.get("address").add("deployment", "*");
    operation.get("operation").set("read-attribute");
    operation.get("name").set("name");

    ModelNode result = client.execute(operation);

standalone.xml:

standalone.xml:

<socket-binding-group name="standard-sockets" default-interface="public" port-offset="${jboss.socket.binding.port-offset:0}">
        <socket-binding name="ajp" port="${jboss.ajp.port:8009}"/>
        <socket-binding name="http" port="${jboss.http.port:8080}"/>
        <socket-binding name="https" port="${jboss.https.port:8443}"/>
        <socket-binding name="management-http" interface="management" port="${jboss.management.http.port:9990}"/>
        <socket-binding name="management-https" interface="management" port="${jboss.management.https.port:9993}"/>
        <socket-binding name="txn-recovery-environment" port="4712"/>
        <socket-binding name="txn-status-manager" port="4713"/>
        <outbound-socket-binding name="mail-smtp">
            <remote-destination host="localhost" port="25"/>
        </outbound-socket-binding>
    </socket-binding-group>

推荐答案

它看起来不像协议问题.您是否在standalone.xml中定义了本机接口?在新版本的WildFly中,此折旧方法已折旧,但可能适合您的情况.请在此处参考文档: https://docs.jboss.org/author/display/WFLY8/The%20native%20management%20API.html

It didn't look like a protocol issue. did you define a native interface in standalone.xml? In new versions of WildFly, this is depreciated but may work in your case. Refer documentation here: https://docs.jboss.org/author/display/WFLY8/The%20native%20management%20API.html

它还讨论了具有身份验证层.

It also talks about having an authentication layer.

这篇关于JBAS012144:无法连接到远程://127.0.0.1:9990.连接超时的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆