Linux安装Kafka(单机版)

  1. 提前搭建好zookeeper并启动
    这里只是为了入门学习,所以按照单机的版本,进行搭建。

  2. 下载资源并解压

wget -P /usr/local https://mirror.bit.edu.cn/apache/kafka/2.4.0/kafka_2.11-2.4.0.tgz

查看官网的发布版本
3. 创建日志目录
由于kafka默认的目录是在tmp下,tmp 一般容易收到系统的清理,所以不建议存放这些日志,需要自己创建一个并替换掉配置。

cd kafka_2.11-2.4.0
mkdir logs
[root@VM_0_15_centos kafka_2.11-2.4.0]#       ll
total 76
drwxr-xr-x 3 root root  4096 Dec 10 00:51 bin
drwxr-xr-x 2 root root  4096 Mar 18 23:22 config
-rw-rw-r-- 1 root root 19356 Mar 18 23:25 hs_err_pid12417.log
drwxr-xr-x 2 root root  4096 Mar 18 23:15 libs
-rw-r--r-- 1 root root 32216 Dec 10 00:46 LICENSE
drwxrwxr-x 2 root root  4096 Mar 18 23:25 logs
-rw-r--r-- 1 root root   337 Dec 10 00:46 NOTICE
drwxr-xr-x 2 root root  4096 Dec 10 00:51 site-docs
  1. 修改配置
    默认配置文件路径:安装路径下的config/server.properties 。
    主要修改并确认以下的几个值:
broker.id=0 # 每个kafka服务器的唯一标识(必须整数类型)
port=9092 # 运行端口号
host.name=xxx.xxx.xxx.xxx #服务器IP地址,修改为自己的服务器IP
log.dirs=/usr/local/kafka_2.11-2.4.0/logs#日志存放路径,上面创建的目录
zookeeper.connect=localhost:2181 #zookeeper地址和端口,最好提前开启zookeeper,方便后续kafka是否搭建成功的测试
  1. 启动
    使用安装目录下的bin/kafka-server-starter.sh
[root@VM_0_15_centos kafka_2.11-2.4.0]# bin/kafka-server-start.sh config/server.properties 
Java HotSpot(TM) 64-Bit Server VM warning: INFO: os::commit_memory(0x00000000c0000000, 1073741824, 0) failed; error='Cannot allocate memory' (errno=12)
#
# There is insufficient memory for the Java Runtime Environment to continue.
# Native memory allocation (mmap) failed to map 1073741824 bytes for committing reserved memory.
# An error report file with more information is saved as:
# /usr/local/kafka_2.11-2.4.0/hs_err_pid15276.log

很显然上面是没有启动的成功的,大概意思就是内存太小了。
由于环境条件有限,只能去修改对应的所需的内存大小了,也就是修改配置文件的启动限制大小。需要修改的2个文件都在bin目录下。

  • bin/kafka-server-start.sh (搜索关键词:KAFKA_HEAP_OPTS)
if [ "x$KAFKA_HEAP_OPTS" = "x" ]; then
    export KAFKA_HEAP_OPTS="-Xmx1G -Xms1G"
fi

把Xms1G 缩小成Xms500M
再尝试启动
注意:这里缩小其实是不太建议的,因为可能会导致后续生产者和消费者无法通信,或者内存不足导致kafka自动宕掉了。所以最好还是提升下机器的配置吧。

[2020-03-18 23:54:56,629] INFO [/config/changes-event-process-thread]: Starting (kafka.common.ZkNodeChangeNotificationListener$ChangeEventProcessThread)
[2020-03-18 23:54:56,680] INFO [SocketServer brokerId=0] Started data-plane processors for 1 acceptors (kafka.network.SocketServer)
[2020-03-18 23:54:56,682] INFO Kafka version: 2.4.0 (org.apache.kafka.common.utils.AppInfoParser)
[2020-03-18 23:54:56,682] INFO Kafka commitId: 77a89fcf8d7fa018 (org.apache.kafka.common.utils.AppInfoParser)
[2020-03-18 23:54:56,682] INFO Kafka startTimeMs: 1584546896680 (org.apache.kafka.common.utils.AppInfoParser)
[2020-03-18 23:54:56,683] INFO [KafkaServer id=0] started (kafka.server.KafkaServer)

看到最后一行的【[KafkaServer id=0] started 】说明启动成功。
如果需要kafka运行再后台的话 ,在启动命令后追加一个&符号就好了

[root@VM_0_15_centos kafka_2.11-2.4.0]# bin/kafka-server-start.sh config/server.properties &
  1. 常用命令
  • 停止
    bin/kafka-server-stop.sh
  • 创建Topic:(创建一个news的topic,设定1个副本,设定1个分区)
[root@VM_0_15_centos kafka_2.11-2.4.0]# bin/kafka-topics.sh -create --zookeeper 127.0.0.1:2181 --topic news --replication-factor 1 --partitions 1
Created topic news.

查看还可以选择的参数列表:

Option                                   Description                            
------                                   -----------                            
--alter                                  Alter the number of partitions,        
                                           replica assignment, and/or           
                                           configuration for the topic.         
--at-min-isr-partitions                  if set when describing topics, only    
                                           show partitions whose isr count is   
                                           equal to the configured minimum. Not 
                                           supported with the --zookeeper       
                                           option.                              
--bootstrap-server <String: server to    REQUIRED: The Kafka server to connect  
  connect to>                              to. In case of providing this, a     
                                           direct Zookeeper connection won't be 
                                           required.                            
--command-config <String: command        Property file containing configs to be 
  config property file>                    passed to Admin Client. This is used 
                                           only with --bootstrap-server option  
                                           for describing and altering broker   
                                           configs.                             
--config <String: name=value>            A topic configuration override for the 
                                           topic being created or altered.The   
                                           following is a list of valid         
                                           configurations:                      
                                         	cleanup.policy                        
                                         	compression.type                      
                                         	delete.retention.ms                   
                                         	file.delete.delay.ms                  
                                         	flush.messages                        
                                         	flush.ms                              
                                         	follower.replication.throttled.       
                                           replicas                             
                                         	index.interval.bytes                  
                                         	leader.replication.throttled.replicas 
                                         	max.compaction.lag.ms                 
                                         	max.message.bytes                     
                                         	message.downconversion.enable         
                                         	message.format.version                
                                         	message.timestamp.difference.max.ms   
                                         	message.timestamp.type                
                                         	min.cleanable.dirty.ratio             
                                         	min.compaction.lag.ms                 
                                         	min.insync.replicas                   
                                         	preallocate                           
                                         	retention.bytes                       
                                         	retention.ms                          
                                         	segment.bytes                         
                                         	segment.index.bytes                   
                                         	segment.jitter.ms                     
                                         	segment.ms                            
                                         	unclean.leader.election.enable        
                                         See the Kafka documentation for full   
                                           details on the topic configs.It is   
                                           supported only in combination with --
                                           create if --bootstrap-server option  
                                           is used.                             
--create                                 Create a new topic.                    
--delete                                 Delete a topic                         
--delete-config <String: name>           A topic configuration override to be   
                                           removed for an existing topic (see   
                                           the list of configurations under the 
                                           --config option). Not supported with 
                                           the --bootstrap-server option.       
--describe                               List details for the given topics.     
--disable-rack-aware                     Disable rack aware replica assignment  
--exclude-internal                       exclude internal topics when running   
                                           list or describe command. The        
                                           internal topics will be listed by    
                                           default                              
--force                                  Suppress console prompts               
--help                                   Print usage information.               
--if-exists                              if set when altering or deleting or    
                                           describing topics, the action will   
                                           only execute if the topic exists.    
                                           Not supported with the --bootstrap-  
                                           server option.                       
--if-not-exists                          if set when creating topics, the       
                                           action will only execute if the      
                                           topic does not already exist. Not    
                                           supported with the --bootstrap-      
                                           server option.                       
--list                                   List all available topics.             
--partitions <Integer: # of partitions>  The number of partitions for the topic 
                                           being created or altered (WARNING:   
                                           If partitions are increased for a    
                                           topic that has a key, the partition  
                                           logic or ordering of the messages    
                                           will be affected). If not supplied   
                                           for create, defaults to the cluster  
                                           default.                             
--replica-assignment <String:            A list of manual partition-to-broker   
  broker_id_for_part1_replica1 :           assignments for the topic being      
  broker_id_for_part1_replica2 ,           created or altered.                  
  broker_id_for_part2_replica1 :                                                
  broker_id_for_part2_replica2 , ...>                                           
--replication-factor <Integer:           The replication factor for each        
  replication factor>                      partition in the topic being         
                                           created. If not supplied, defaults   
                                           to the cluster default.              
--topic <String: topic>                  The topic to create, alter, describe   
                                           or delete. It also accepts a regular 
                                           expression, except for --create      
                                           option. Put topic name in double     
                                           quotes and use the '\' prefix to     
                                           escape regular expression symbols; e.
                                           g. "test\.topic".                    
--topics-with-overrides                  if set when describing topics, only    
                                           show topics that have overridden     
                                           configs                              
--unavailable-partitions                 if set when describing topics, only    
                                           show partitions whose leader is not  
                                           available                            
--under-min-isr-partitions               if set when describing topics, only    
                                           show partitions whose isr count is   
                                           less than the configured minimum.    
                                           Not supported with the --zookeeper   
                                           option.                              
--under-replicated-partitions            if set when describing topics, only    
                                           show under replicated partitions     
--version                                Display Kafka version.                 
--zookeeper <String: hosts>              DEPRECATED, The connection string for  
                                           the zookeeper connection in the form 
                                           host:port. Multiple hosts can be     
                                           given to allow fail-over.  
  • 列出所有的Topic
[root@VM_0_15_centos kafka_2.11-2.4.0]# bin/kafka-topics.sh -list -zookeeper 127.0.0.1:2181
news
  • 启动Producer并发送消息
[root@VM_0_15_centos kafka_2.11-2.4.0]# bin/kafka-console-producer.sh --broker-list localhost:9092 --topic news
>e^H^Hhello
>e^H^C[root@VM_0_15_centos kafka_2.11-2.4.0]# 

当出现了> 符号的时候,表示等待发送消息的录入了。
结束可以选择键 ctrl + c 停止输入。

  • 启动Consumer并接收消息
    [root@VM_0_15_centos kafka_2.11-2.4.0]# bin/kafka-console-consumer.sh --bootstrap-server 127.0.0.1:9092 --topic news --from-beginning

由于0.9版本的kafka把offset 存在了本地,之前存在zookeeper上,
所有建议使用 ** bootstrap-server** 的命令 , 访问9092端口。

上述的每条命令其实都有很多参数,可以在命令行里随意输错一个,Enter之后既可弹出参数列表。

拓展:
集群可参考
https://blog.csdn.net/lidazhou/article/details/86617793

环境:
zookeeper 集群3台机器,每台机器上运行一个kafka(broker).

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值