For a simple example of the configuration usage for Dubbo, the following records the installation and use of the Dubbo Management Console (the Zookeeper registry) and found some online examples
Dubbo Management Console Open Source section mainly includes: Provider routing rules dynamic configuration access control weights to adjust load balancing principals, and other management functions.
1, Download Dubbo
I upload the address: http://download.csdn.net/detail/liweifengwf/7784901
Official address: Http://code.alibabatech.com/mvn/releases/com/alibaba/dubbo-admin/2.4.1/dubbo-admin-2.4.1.war (this address I have not been able to, Wget also do not pass)
I was tested installed on Windows, first remove the ROOT folder content under Tomcat/webapps (replace Tomcat's startup home page), unzip the downloaded war package to Webapps/root (you can let Tomcat automatically unpack Copy the content to root, if it is Linux, the command is as follows:
Unzip dubbo-admin-2.4.1.war-d/opt/apache-tomcat-6.0.37/webapps/root
2. Configuration:
(Windows environment unzipped War package with dubbo.properties files, direct modification can be, Linux words will dubbo.properties in the current user directory,) modify zookeeper address
Vim Webapps/root/web-inf/dubbo.properties
3, configuration information as follows:
dubbo.registry.address=zookeeper://10.0.65.3:2181
Dubbo.admin.root.password=root
Dubbo.admin.guest.password=guest
This is the Zookeeper registry (documented before the configuration of zookeeper).
Start Tomcat:
Description: Make sure the zookeeper is started before you start Tomcat.
Access:
http://localhost:8088 (This is my Tomcat access path)
The following interface shows that the installation configuration is successful and the login password is root/root
Login Success Interface: (My registry has 1 providers, 2 consumers have been shown)
Here are the pages where I look at consumer information and some of the features you can try
The above is the Dubbo Management console installation and use of data collation, follow-up continue to supplement the relevant information, thank you for your support of this site!