Kafka--Operation and Maintenance Tool-★★★★

Operation and maintenance tools

Install kafka-manager

  • A Kafak operation and maintenance tool open sourced by Yahoo
  • 1. af kafka-manager-1.3.3.7.tar.gz
  • 2. Unzip
tar -zxvf kafka-manager-1.3.3.7.tar.gz
  • 3. Modify the configuration
vim /export/servers/kafka-manager-1.3.3.7/conf/application.conf

kafka-manager.zkhosts="hadoop01:2181,hadoop02:2181,hadoop03:2181"

Insert picture description here

  • 4 add execution permissions
cd /export/servers/kafka-manager-1.3.3.7/bin

chmod u+x kafka-manager
  • 5. Start
./kafka-manager  -Dconfig.file=/export/servers/kafka-manager-1.3.3.7/conf/application.conf -Dhttp.port=8070 &
  • You can view the following processes in the cloned window jps
    Insert picture description here
  • 6. Visit
    • http://node01:8070

use

Insert picture description here
Insert picture description here
Insert picture description here
Insert picture description here
Insert picture description here
Insert picture description here
Insert picture description here
Insert picture description here

Guess you like

Origin blog.csdn.net/qq_46893497/article/details/114180457