zoukankan      html  css  js  c++  java
  • kafka-confluent管控中心安装

    最近需要安装kafka,所以选择了confluent来管理kafka
    环境准备:jdk1.8+

    一、安装confluent

    官方站点https://www.confluent.io/

    官方文档http://docs.confluent.io/current/control-center/docs/quickstart.html#base-installation

    这里我们选择Enterprise企业版

    下载地址https://packages.confluent.io/archive/5.5/confluent-5.5.1-2.12.tar.gz

    
    [root@localhost ~]# wget https://packages.confluent.io/archive/5.5/confluent-5.5.1-2.12.tar.gz
    [root@localhost ~]# mv confluent-5.5.1-2.12.tar.gz usr/local
    [root@localhost ~]# cd /usr/local/
    [root@localhost local]# tar -zxvf confluent-5.5.1-2.12.tar.gz
    [root@localhost local]# cd /usr/local/confluent-5.5.1/bin
    [root@localhost bin]# "/usr/local/confluent-5.5.1/bin/confluent" local start
        The local commands are intended for a single-node development environment
        only, NOT for production usage. https://docs.confluent.io/current/cli/index.html
    Using CONFLUENT_CURRENT: /tmp/confluent.dSCCLAd7
    Starting zookeeper
    zookeeper is [UP]
    Starting kafka
    kafka is [UP]
    Starting schema-registry
    schema-registry is [UP]
    Starting kafka-rest
    kafka-rest is [UP]
    Starting connect
    connect is [UP]
    Starting ksql-server
    ksql-server is [UP]
    Starting control-center
    control-center is [UP]
    
    可以看到zookeepeer、kafka等服务启动
    

    访问面板http://ip:9021/

  • 相关阅读:
    latex插入图片
    装virtualenv和flask
    GitHub Pages写博客
    用模拟退火算法进行特征选择
    用遗传算法进行特征选择
    智能垃圾桶
    蚁群算法 与 A*算法 寻找最优路径 对比 (pygame)
    pygame
    pyinstaller打包python应用程序
    内网渗透之信息收集-linux
  • 原文地址:https://www.cnblogs.com/shook/p/13607176.html
Copyright © 2011-2022 走看看