Skip to content

Dubbo Admin configuration

min edited this page Jul 24, 2019 · 7 revisions

中文说明
configurations in application.properties

  • admin.config-center
    • recommanded, the address of configuration center: admin.config-center="zookeeper://127.0.0.1:2181
    • the address of registry center and metadata center need to be configured in configuration center
    • zookeeper
      • path: /dubbo/config/dubbo/dubbo.properties
      • content:
      dubbo.registry.address=zookeeper://127.0.0.1:2181
      dubbo.metadata-report.address=zookeeper://127.0.0.1:2181
  • admin.registry.address
    • not recommanded, the address of registry center: admin.registry.address="zookeeper://127.0.0.1:2181"
    • if this configuration is applied instead of dubbo.configcenter, both registry and configuration centers will use the above address in Dubbo Admin, in which case the metadata center will not be actived. Thus, some features, like the service test, are not available anymore.
Clone this wiki locally