Free download of dubbo-admin.war that supports jdk1.8

When working on a distributed project recently, due to the installation of jdk1.8 in Linux, the old version of dubbo-admin downloaded from the Internet had a version mismatch problem, and I could not access dubbo-admin. I have been looking for it in CSDN for a long time, and many bloggers have asked for it. c currency download, I really served it, here is a free download address for everyone (available for pro-test),
environment: centOS7
JDK: 1.8
Tomcat: 7.0
Zookeeper: 3.4.6
Dubbo-admin.war
is actually mainly jdk1.8 and Dubbo-admin compatibility issues
Step 1: Install centOS7, VM or VirtualBox on your virtual machine, it is too big, download more than 8g by yourself.
Step 2: Install jdk1.8
Step 3: Install Zookeeper
Baidu Cloud Connection: https://pan.baidu.com/s/1kVcdtk_Zc9Cq2mE2RcoTZg
Extraction code: g7as
download is complete, upload it to linux, unzip

解压 tar -zxvf zookeeper...

Here you need to create a new data folder under zookeeper, and then enter zookeeper's conf folder to edit zoo.cfg and
change dateDir to your own full path address, pointing to the data folder you just created

vim zoo.cfg
找到dataDir指定数据储存地址
指定zookeeper路径,可通过pwd命令查看路径地址信息
dataDir=/usr/local/src/zookeeper3.4/data

Start zookeeper

cd zookeeper/bin
启动
./zkServer.sh start
停止
./zkServer.sh stop
重启
./zkServer.sh restart

Step 4: Install Tomcat
Step 5: Deploy Dubbo-admin
Dubbo source code downloaded from the Internet through encoding the war package or downloaded war package, the default does not support JDK1.8, running in tomcat will report an error, can be configured git download the source code configuration file and package it to solve this problem;
dubbo-admin supports jdk1.8 free download address:
Baidu cloud connection: https://pan.baidu.com/s/1gQQLO92tS5UamRL2aHaiqg
extraction code: r7b1;
after uploading it to linux , And then copy it to Tomcat7's webapps folder (if the name is changed, it should be the changed name when accessing in the local browser):
Then enter the webapps WEB-INf folder to find dubbo.properties, align and edit (If you don't edit, the login password is guest),

dubbo.registry.address=zookeeper://127.0.0.1:2181
dubbo.admin.root.password=root
dubbo.admin.guest.password=root

Copy the dubbo.properties file to the root directory (it will be retrieved at startup)

cp dubbo/WEB-INF/dubbo.properties   /root/

Well, basically it's done, start tomcat and zookeeper
tomcat default port number 8080, turn off Centos7 firewall,
access in the Windows browser, (the specific centos7 IP address depends on your own, check the ip address command ip addr) I The address is 192.168.56.6
Insert picture description here
Insert picture description here

Guess you like

Origin blog.csdn.net/lq1759336950/article/details/97104450