【发布时间】:2018-09-18 08:31:50
【问题描述】:
我有以下 ubuntu 配置的 vagrant box。
$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 16.04.5 LTS
Release: 16.04
Codename: xenial
以下是内存详细信息 -
$ free -m
total used free shared buff/cache available
Mem: 488 43 92 1 351 414
我已经从here 下载了文件kafka_2.12-1.1.1.tgz。
然后我尝试在使用以下命令提取存档后启动 Zookeeper 服务器。
$ sudo /home/vagrant/kafka/bin/zookeeper-server-start.sh /home/vagrant/kafka/config/zookeeper.properties
Java HotSpot(TM) 64-Bit Server VM warning: INFO: os::commit_memory(0x00000000e0000000, 536870912, 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 536870912 bytes for committing reserved memory.
# An error report file with more information is saved as:
# /home/vagrant/hs_err_pid5404.log
我已经提供了完整的错误日志here。
我看到流浪机器总是有交换空间问题。 如何解决这个问题并在 vagrant 机器上成功安装。
【问题讨论】:
标签: java java-8 apache-kafka vagrant apache-zookeeper