Dubbo監控平臺安裝使用

本文中安裝環境:jdk8,win10,apache-maven-3.3.9,git

由於本文中用到了zookeeperCentos安裝zookeeper

1.執行 git clone https://github.com/apache/dubbo-admin.git 命令把項目克隆到本地, 或者直接下載https://github.com/apache/dubbo-admin  

2.根據路徑 dubbo-admin-server/src/main/resources/application.properties 修改文件

#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements.  See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License.  You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

# centers in dubbo2.7 設置zookeeper的服務器
admin.registry.address=zookeeper://192.168.153.128:2181
admin.config-center=zookeeper://192.168.153.128:2181
admin.metadata-report.address=zookeeper://192.168.153.128:2181

admin.root.user.name=root
admin.root.user.password=root
#group
admin.registry.group=dubbo
admin.config-center.group=dubbo
admin.metadata-report.group=dubbo

admin.apollo.token=e16e5cd903fd0c97a116c873b448544b9d086de9
admin.apollo.appId=test
admin.apollo.env=dev
admin.apollo.cluster=default
admin.apollo.namespace=dubbo

3.進入到項目路徑下,執行mvn clean package

 4.啓動項目,進入dubbo-admin-distribution/target 目錄,執行java -jar dubbo-admin-0.2.0-SNAPSHOT.jar命令

訪問  http://localhost:8080,這裏要注意不要和其他服務端口衝突。

用戶名密碼是之前的配置文件裏面的,默認是都是root

注意:如果以後zookeeper服務器地址變了,需要重新修改dubbo-admin-server/src/main/resources/application.properties配置文件,設置成新的服務地址。

然後切換到dubbo-admin目錄下,執行 mvn clean compile 進行編譯,編譯成功後執行 mvn clean package 來進行打包。

打包成功後,在重新啓動

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章