English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية
Regarding the configuration and usage of dubbo, a simple example has been set up. Below, let's record the installation and usage of the dubbo management console (using the zookeeper registration center) based on some examples found on the internet
The open-source part of the dubbo management console mainly includes: Provider, Routing Rules, Dynamic Configuration, Access Control, Weight Adjustment, Load Balancing, and other management functions.
1Download dubbo
My upload 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 can't download, wget doesn't work either)
I am testing the installation on Windows, first delete tomcat/The content of the built-in ROOT folder under webapps (replacing the startup homepage of tomcat), unzip the downloaded war package to webapps/ROOT (You can let tomcat automatically unzip first and then copy the contents 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
2And configuration:
(In the Windows environment, the war package contains the dubbo.properties file, which can be directly modified; in Linux, put dubbo.properties in the current user directory) modify the address of zookeeper
vim webapps/ROOT/WEB-INF/dubbo.properties
3And the configuration information is as follows:
dubbo.registry.address=zookeeper://10.0.65.3:2181
dubbo.admin.root.password=root
dubbo.admin.guest.password=guest
This side uses the zookeeper registry center (The configuration of zookeeper is recorded in the previous content).
Start tomcat:
Note: Start tomcat after confirming that zookeeper has started.
Access:
http://localhost:8088 This is the access path of my tomcat
The following interface appears indicates that the installation and configuration is successful, and the login password is root/root
Login successful interface: (My registry center has1providers 2consumers have been displayed)
Below is the page I viewed for consumer information. There are still some functions that can be tried
This is the summary of the installation and usage of the dubbo management console, and more related materials will be continued to be supplemented. Thank you all for your support to this website!