dubbo.application.qosEnable=false don't work

Created on 26 Jan 2018  ·  7Comments  ·  Source: apache/dubbo

dubbo版本:2.9.0,2.6.0
配置:
>
dubbo.application.qosPort=33333
dubbo.application.qosEnable=false
dubbo.application.qosAcceptForeignIp=false
使用注解注入spring

@Bean
public ApplicationConfig requestApplicationConfig() {
    ApplicationConfig applicationConfig = dubboProperties.getApplication();
    if (applicationConfig == null) {
        applicationConfig = new ApplicationConfig();
    }
    return applicationConfig;
    }

debug显示注入成功
run-properties

本机IP:192.168.162.30
内网远程IP:192.168.4.214
远程机器Telnet本机结果
telnet
另外,jvm参数加入了qos相关,依然不起作用
telnet-setting

Most helpful comment

dubbo.application.qos.port=33333
dubbo.application.qos.enable=true/false

In 2.5.9, please use the demo configuration above, i will update the docs later.

All 7 comments

dubbo.application.qos.port=33333
dubbo.application.qos.enable=true/false

In 2.5.9, please use the demo configuration above, i will update the docs later.

@chickenlj thx ,but this issue is here,I find the protocol configuration in the docs and see "telnet"
qq 20180130171413
then I change my setting to below pic
qq 20180130171807
but,it just not working like what I configure,so maybe anything I am missing?
qq 20180130172539

I want to shutdown all telnet in the prod environment,so thx~

@chickenlj and something else
in version 2.5.9,use confs
dubbo.application.qos.port=33333 dubbo.application.qos.enable=true
I still can not open the qos
qq 20180130174435
however,the token of service can reject unsafe invoking,so this is my only solution:)

Sorry, i can't load the pictures at this moment. But be notice there's two telnet ways currently in dubbo: new qos and old telnet.
All configurations works only for new qos.

The old telnet can't be closed, though the telnet property is designed for user to configure, it is never used.

I am not sure whether we will continue working on old telnet, because we plan to replace it with the qos module.

in version 2.5.9,use confs
dubbo.application.qos.port=33333 dubbo.application.qos.enable=true
I still can not open the qos

Where do you place these properties?

As @chickenlj suggested, please use the following properties to disable qos:

dubbo.application.qos.port=33333
dubbo.application.qos.enable=true/false

I am closing this issue now.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

kekerzzZ picture kekerzzZ  ·  3Comments

yangpancode picture yangpancode  ·  4Comments

luyunfeng picture luyunfeng  ·  3Comments

JerryChin picture JerryChin  ·  3Comments

yiding-he picture yiding-he  ·  4Comments