Dubbo Management Console

Dubbo Management Console

Installation zookeeper

Download: https://archive.apache.org/dist/zookeeper/
decompression in the current directory
Here Insert Picture Description

  • Run the connection
    into the bin directory
    Here Insert Picture Description
    to use cmd, run zookeeper.
  • zkServer.cmd
zkServer.cmd

Here Insert Picture Description

  • zkCli.cmd
zkCli.cmd

Here Insert Picture Description

  • Attempt is successful
create -e /tcrush 56
get /tcrush

Here Insert Picture Description
Such zookeeper it's done.

dubbo-admin

Download dubbo-admin

github:https://github.com/apache/dubbo-admin

In the dubbo-admin-develop\dubbo-admin-server\src\main\resourcesdirectory of application.propertiesview configuration

# centers in dubbo2.7
admin.registry.address=zookeeper://127.0.0.1:2181
admin.config-center=zookeeper://127.0.0.1:2181
admin.metadata-report.address=zookeeper://127.0.0.1:2181

I have here is local

In the root directory, enter cmd, dos window opens, enter the following command:

mvn clean package

Here Insert Picture Description
This package was successful.
注意:Here, you can not close the zookeeper

  • Run
    in dubbo-admin-develop\dubbo-admin-distribution\targetlocate at dubbo-admin-0.1.jar
    using java -jar run
java -jar dubbo-admin-0.1.jar

Here Insert Picture Description

Access dubbo-admin

Open your browser and enter the following address: HTTP: // localhost: 8080 /
to enter a user name and password, if not set a user name and password, the default is root (user name, password, like)
Here Insert Picture Description
this is successful

Published 55 original articles · won praise 30 · views 9825

Guess you like

Origin blog.csdn.net/chaifang0620/article/details/103905908