由於zookeeper只是一個黑框,咱們沒法看到是否存在了什麼提供者或消費者,這時就要藉助Dubbo-Admin管理平臺來實時的查看,也能夠經過這個平臺來管理提者和消費者。
dubbo-admin.war強烈建議本身編譯一個,網上找的基本都不行,試了不少個,最後仍是本身來搞,編譯的過程以下,必定在安裝maven和jdk!java
dubbo的全部源碼可在https://github.com/alibaba/dubbo上下載。下好以後解壓git
解壓後的文件內容,進入dubbo-admin.github
經過cmd進入dubbo-admin目錄,輸入命令web
而後輸入命令spring
mvn package -Dmaven.skip.test=true
這裏要本身把maven的環境變量配置好,這裏的-Dmaven.skip.test表示不打包測試包。而後結果以下,表示打包成功apache
再打開項目的文件所在位置:E:\下載\dubbo-master\dubbo-master\dubbo-admin\targettomcat
target表示構建的本地路徑,打開,裏面有個文件dubbo-admin-2.5.4-SNAPSHOT.war表示打包成功,這個文件得放在Tomcat下才能運行安全
dubbo-admin已打包成功,接下來就容易不少了app
1. 安裝
將 dubbo-admin-2.5.4-SNAPSHOT.war 拷入 tomcat webapps中
2. 配置
修改tomcat的端口8088,修改方法以下,打到conf下的文件 server.xml,由於zookeeper會用到8080的端口,因此爲了避免衝突,把Tomcat的端口改一下。記得必定要改!!webapp
而後修改
三、啓動一下Tomcat,讓它把war解壓了發現webapp下多了一個文件夾
再把 Tomcat給關了
四、修改dubbo.properties
進入apache-tomcat-7.0.62\webapps\dubbo-admin-2.5.4-SNAPSHOT\WEB-INF
是不是以下內容
dubbo.registry.address=zookeeper://127.0.0.1:2181 dubbo.admin.root.password=root dubbo.admin.guest.password=guest
若是是,就不用改,這裏的127.0.0.1對應的是本身的電腦IP,由於這裏zookeeper也在本身電腦上,因此要這麼寫才行。通常狀況下都是不須要改的,由於初始都是本地的IP地址。但仍是看看比較安全
5. 訪問:
這下所有都配置好了,首先,必定要先啓動zookeeper啓動後再去啓動tomcat!必定要先啓動zookeeper啓動後再去啓動tomcat!必定要先啓動zookeeper啓動後再去啓動tomcat!重要的事情三遍!
啓動zookeeper
啓動tomcat
訪問http://localhost:8088/dubbo-admin-2.5.4-SNAPSHOT/ 必定要注意名必定要和你webapp下的工程名同樣!!
若是啓動過程當中報如下錯誤請參考個人另外一篇文章 dubbo 2.5.4 在JDK8下啓動錯誤
嚴重: Exception sending context initialized event to listener instance of class com.alibaba.citrus.webx.context.WebxContextLoaderListener
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'uriBrokerService': Cannot create inner bean '(inner bean)' of type
[com.alibaba.citrus.service.uribroker.impl.URIBrokerServiceImpl$URIBrokerInfo]
while setting bean property 'brokers' with key [0]; nested exception is org.springframework.beans.factory.BeanCreationException:
Error creating bean with name '(inner bean)#25': Cannot create inner bean 'server' of type
[com.alibaba.citrus.service.uribroker.uri.GenericURIBroker] while setting constructor argument; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'server': Error setting property values; nested exception is org.springframework.beans.NotWritablePropertyException: Invalid property 'URIType' of bean class [com.alibaba.citrus.service.uribroker.uri.GenericURIBroker]: Bean property 'URIType' is not writable or has an invalid setter method. Does the parameter type of the setter match the return type of the getter? at org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveInnerBean(BeanDefinitionValueResolver.java:230)