一、首先在win系统下C:\Windows\System32\drivers\etc文件夹中hosts文件加入例如以下内容:

10.61.6.167 slaves1

10.61.6.168 slaves2

10.61.6.169 slaves3

二、启动kafka集群类

package com.conn.server.start;





import java.io.IOException;





import ch.ethz.ssh2.Connection;

import ch.ethz.ssh2.Session;









public class StartKafka {  

 

    public static void main(String[] args) {

    StartKafka startzk=new StartKafka();

    //启动kafka自带zookeeper集群

    startzk.startZk1();

    startzk.startZk2();

    startzk.startZk3();

    //启动kafka

    startzk.startKafka1();

    startzk.startKafka2();

    startzk.startKafka3();

    }

          

    public static void startZk1(){

        String hostname = "10.61.6.166";  

        String username = "root";  

        String password = "pass@word2";  

        //指明连接主机的IP地址  

        Connection conn = new Connection (hostname);  

        Session ssh = null;  

        try {  

            //连接到主机  

            conn.connect();  

            //使用username和password校验  

            boolean isconn = conn.authenticateWithPassword(username, password);  

            if(!isconn){  

                System.out.println("username称或者是password不对");  

            }else{  

                System.out.println("已经连接OK");  

                ssh = conn.openSession();  

                //使用多个命令用分号隔开  



                ssh.execCommand("cd /home/lee/kafka/kafka;bin/zookeeper-server-start.sh config/zookeeper.properties&");  

              

                //仅仅同意使用一行命令,即ssh对象仅仅能使用一次execCommand这种方法,多次使用则会出现异常  

            }  

            //连接的Session和Connection对象都须要关闭  

            ssh.close();  

            conn.close();  

              

        } catch (IOException e) {  

            e.printStackTrace();  

        }  

          

    }  

  

    public static void startZk2(){

        String hostname = "10.61.6.168";  

        String username = "root";  

        String password = "pass@word2";  

        //指明连接主机的IP地址  

        Connection conn = new Connection (hostname);  

        Session ssh = null;  

        try {  

            //连接到主机  

            conn.connect();  

            //使用username和password校验  

            boolean isconn = conn.authenticateWithPassword(username, password);  

            if(!isconn){  

                System.out.println("username称或者是password不对");  

            }else{  

                System.out.println("已经连接OK");  

                ssh = conn.openSession();  

               ssh.execCommand("cd /home/lee/kafka/kafka;bin/zookeeper-server-start.sh config/zookeeper.properties&");  

              

            }  

            ssh.close();  

            conn.close();  

              

        } catch (IOException e) {  

            e.printStackTrace();  

        }  

    }  

    

    public static void startZk3(){

        String hostname = "10.61.6.169";  

        String username = "root";  

        String password = "pass@word2";  

        //指明连接主机的IP地址  

        Connection conn = new Connection (hostname);  

        Session ssh = null;  

        try {  

            //连接到主机  

            conn.connect();  

            //使用username和password校验  

            boolean isconn = conn.authenticateWithPassword(username, password);  

            if(!isconn){  

                System.out.println("username称或者是password不对");  

            }else{  

                System.out.println("已经连接OK");  

                ssh = conn.openSession();  

               ssh.execCommand("cd /home/lee/kafka/kafka;bin/zookeeper-server-start.sh config/zookeeper.properties&");  

               }  

            ssh.close();  

            conn.close();  

              

        } catch (IOException e) {  

            e.printStackTrace();  

        }  

    }  

    

    public static void startKafka1(){

        String hostname = "10.61.6.167";  

        String username = "root";  

        String password = "pass@word2";  

        //指明连接主机的IP地址  

        Connection conn = new Connection (hostname);  

        Session ssh = null;  

        try {  

            //连接到主机  

            conn.connect();  

            //使用username和password校验  

            boolean isconn = conn.authenticateWithPassword(username, password);  

            if(!isconn){  

                System.out.println("username称或者是password不对");  

            }else{  

                System.out.println("已经连接OK");  

                ssh = conn.openSession();  

                ssh.execCommand("cd /home/lee/kafka/kafka;bin/kafka-server-start.sh config/server.properties&");  

            }  

            ssh.close();  

            conn.close();  

              

        } catch (IOException e) {  

            e.printStackTrace();  

        }  

    }  

    

    public static void startKafka2(){

        String hostname = "10.61.6.168";  

        String username = "root";  

        String password = "pass@word2";  

        //指明连接主机的IP地址  

        Connection conn = new Connection (hostname);  

        Session ssh = null;  

        try {  

            //连接到主机  

            conn.connect();  

            //使用username和password校验  

            boolean isconn = conn.authenticateWithPassword(username, password);  

            if(!isconn){  

                System.out.println("username称或者是password不对");  

            }else{  

                System.out.println("已经连接OK");  

                ssh = conn.openSession();  

                ssh.execCommand("cd /home/lee/kafka/kafka;bin/kafka-server-start.sh config/server.properties&");  

            }  

            ssh.close();  

            conn.close();  

              

        } catch (IOException e) {  

            e.printStackTrace();  

        }  

    }  

    

    public static void startKafka3(){

        String hostname = "10.61.6.169";  

        String username = "root";  

        String password = "pass@word2";  

        //指明连接主机的IP地址  

        Connection conn = new Connection (hostname);  

        Session ssh = null;  

        try {  

            //连接到主机  

            conn.connect();  

            //使用username和password校验  

            boolean isconn = conn.authenticateWithPassword(username, password);  

            if(!isconn){  

                System.out.println("username称或者是password不对");  

            }else{  

                System.out.println("已经连接OK");  

                ssh = conn.openSession();  

                ssh.execCommand("cd /home/lee/kafka/kafka;bin/kafka-server-start.sh config/server.properties&");  

            }  

            ssh.close();  

            conn.close();  

              

        } catch (IOException e) {  

            e.printStackTrace();  

        }  

    }  

    

}

三、生产者类

package com.performanceTest;



import java.io.BufferedReader;

import java.io.File;

import java.io.FileNotFoundException;

import java.io.FileReader;

import java.io.IOException;

import java.util.Properties;



import kafka.javaapi.producer.Producer;

import kafka.producer.KeyedMessage;

import kafka.producer.ProducerConfig;





public class ProducerSample {

public static void main(String[] args) throws FileNotFoundException {  

        //ProducerSample ps = new ProducerSample();  

  

        Properties props = new Properties();  

        props.put("zookeeper.connect", "slaves1:2182,slaves2:2182,slaves3:2182");    //这里也能够改为集群各节点的ip地址

        props.put("serializer.class", "kafka.serializer.StringEncoder");  

        props.put("metadata.broker.list","slaves1:9092,slaves2:9092,slaves3:9092");

        props.put("request.required.acks", "1");

        props.put("batch.num.messages","200");

        ProducerConfig config = new ProducerConfig(props);  

        Producer<String, String> producer = new Producer<String, String>(config);

File file=new File("E:/test","110-140_1.txt");

        BufferedReader readtxt=new BufferedReader(new FileReader(file));

        String line=null;

        byte[] item=null;

try {

while((line=readtxt.readLine())!=null){

line = line.replaceAll("\\t", ",");

item=line.getBytes();

String str = new String(item);

producer.send(new KeyedMessage<String, String>("mykafka",str));

}

} catch (IOException e) {

e.printStackTrace();

}

     

    }  

}

四、消费者类

package com.performanceTest;





import java.util.ArrayList;

import java.util.HashMap;

import java.util.List;

import java.util.Map;

import java.util.Properties;





import kafka.consumer.ConsumerConfig;

import kafka.consumer.ConsumerIterator;

import kafka.consumer.KafkaStream;

import kafka.javaapi.consumer.ConsumerConnector;





public class ConsumerTest extends Thread {

private final ConsumerConnector consumer;  

    private final String topic;  

    private  final List<String> messages = new ArrayList<String>();

      

    public static void main(String[] args) {  

        ConsumerTest consumerThread = new ConsumerTest("mykafka");  

        consumerThread.start();  

    }  

      

    public ConsumerTest(String topic) {  

    System.out.println(topic);

        consumer = kafka.consumer.Consumer  

                .createJavaConsumerConnector(createConsumerConfig());  

        this.topic = topic;  

    }  

      

    private static ConsumerConfig createConsumerConfig() {  

        Properties props = new Properties();  

       props.put("zookeeper.connect", "slaves1:2182,slaves2:2182,slaves3:2182"); 

        props.put("group.id", "0");  

        props.put("zookeeper.session.timeout.ms", "400000");  

        props.put("zookeeper.sync.time.ms", "200");  

        props.put("auto.commit.interval.ms", "1000");  

      

        return new ConsumerConfig(props);  

      

    }

win系统下启动linux上的kafka集群及使用的更多相关文章

  1. Linux上安装Hadoop集群(CentOS7+hadoop-2.8.0)--------hadoop环境的搭建

    Linux上安装Hadoop集群(CentOS7+hadoop-2.8.0)------https://blog.csdn.net/pucao_cug/article/details/71698903 ...

  2. win系统下的eclipse连接和使用linux上的hadoop集群

    准备工作 先在win系统的hosts文件中加入下面内容 10.61.6.164master     //hadoop集群的master节点 一.首先在eclipse上安装hadoop插件 下载hado ...

  3. 在linux上搭建nacos集群(步骤详细,linux小白也搞得定)

    (1)nacos官网:https://github.com/alibaba/nacos/releases/tag/1.2.1下载nacos安装包到window本地(后缀为tar.zip) (2)在li ...

  4. Linux上搭建Hadoop集群

    本文将为初学者的搭建简单的伪分布式集群,将搭建一台虚拟机,用于学习Hadoop 工具:vm虚拟机,centOS7,jdk-8,Hadoop2.7,xftp,xshell 用户:在虚拟机中创建一个had ...

  5. 在Linux上安装Zookeeper集群

    xl_echo编辑整理,欢迎转载,转载请声明文章来源.欢迎添加echo微信(微信号:t2421499075)交流学习. 百战不败,依不自称常胜,百败不颓,依能奋力前行.——这才是真正的堪称强大!! - ...

  6. linux上配置spark集群

    环境: linux spark1.6.0 hadoop2.2.0 一.安装scala(每台机器)   1.下载scala-2.11.0.tgz   放在目录: /opt下,tar -zxvf scal ...

  7. Linux上安装Hadoop集群(CentOS7+hadoop-2.8.0)

    1下载hadoop 2安装3个虚拟机并实现ssh免密码登录 2.1安装3个机器 2.2检查机器名称 2.3修改/etc/hosts文件 2.4 给3个机器生成秘钥文件 2.5 在hserver1上创建 ...

  8. Linux上安装Hadoop集群(CentOS7+hadoop-2.8.3)

    https://blog.csdn.net/pucao_cug/article/details/71698903 1下载hadoop 2安装3个虚拟机并实现ssh免密码登录 2.1安装3个机器 2.2 ...

  9. Kafka集群安装部署、Kafka生产者、Kafka消费者

    Storm上游数据源之Kakfa 目标: 理解Storm消费的数据来源.理解JMS规范.理解Kafka核心组件.掌握Kakfa生产者API.掌握Kafka消费者API.对流式计算的生态环境有深入的了解 ...

随机推荐

  1. 条款27:尽量少做转型动作(Minimize casting)

    NOTE : 1.如果可以,尽量避免转型,特别是在注重效率的代码中避免dynamic_casts. 如果有个设计需要转型动作,试着发展无需转型的替代设计. 2.如果转型是必须要的,试着将它隐藏于某个函 ...

  2. vue 单独页面定时器 离开页面销毁定时器

    data: { return { timer: null } }, created() { this.timer = setInterval(....); }, beforeDestroy() { i ...

  3. day17-python之文件操作

    1.内置函数 #!/usr/bin/env python # -*- coding:utf-8 -*- # print(abs(-1)) # print(abs(1)) # # print(all([ ...

  4. 教你轻松在React Native中使用自定义iconfont

    在react-native项目中我们一般使用到 react-native-vector-icons(这里不介绍如何使用react-native-vector-icons按照官方文档即可)但是当reac ...

  5. JavaScript中变量、作用域和内存问题(JavaScript高级程序设计第4章)

    一.变量 (1)ECMAScript变量肯能包含两种不同的数据类型的值:基本类型值和引用类型值.基本类型值指的是简单的数据段,引用类型值指那些可能由多个值构成的对象. (2)基本数据类型是按值访问,可 ...

  6. FTS5与DIY

    此文已由作者王荣涛授权网易云社区发布. 欢迎访问网易云社区,了解更多网易技术产品运营经验. FTS5简介 前文已经介绍了FTS3/FTS4,本文着重介绍它们的继任者FTS5. FTS5是在SQLite ...

  7. python多线程--优先级队列(Queue)

    Python的Queue模块中提供了同步的.线程安全的队列类,包括FIFO(先入先出)队列Queue,LIFO(后入先出)队列LifoQueue,和优先级队列PriorityQueue.这些队列都实现 ...

  8. [Vijos1067]Warcraft III 守望者的烦恼(DP + 矩阵优化)

    传送门 可知 f[i] = f[i - 1] + f[i - 2] + ... + f[i - k] 直接矩阵优化就好了 #include <cstdio> #include <cs ...

  9. 飞扬的小鸟(codevs 3729)

    题目描述 Flappy Bird 是一款风靡一时的休闲手机游戏.玩家需要不断控制点击手机屏幕的频率来调节小鸟的飞行高度,让小鸟顺利通过画面右方的管道缝隙.如果小鸟一不小心撞到了水管或者掉在地上的话,便 ...

  10. linux下reboot和shutdown关机命令详解

    我 们在操作Linux v/服务器的时候肯定会有需要重启系统,或者关闭系统等操作.有些用户是直接到VPS主机商家面板上操作的,这样一来比较麻烦,二来有些面板还不易于使用 容易导致面板卡死.所以最好的方 ...