http://blog.csdn.net/wonderluoying/article/details/53363971

 

Java虚拟机内存限制问题

安装过程中遇到VM初始化问题(提示如下):

Error occurred during initialization of VM
Could not reserve enough space for 2097152KB object heap

网上查有不少人在安装使用其他软件时,也遇到类似的问题,基本思路是在某个配置文件中减小最大堆限制,设定为256M;但是大都没有提到elasticSearch采用哪个配置文件。

经查看elasticsearch.bat文件,根据文件中的 set ES_JVM_OPTIONS=%~dp0\..\config\jvm.options 语句,在配置文件夹config\下找到jvm.options文件。

################################################################
## IMPORTANT: JVM heap size
################################################################

.......

# Xms represents the initial size of total heap space
# Xmx represents the maximum size of total heap space

-Xms2g

-Xmx2g

修改为


-Xms256m
-Xmx256m

然后继续运行elasticsearch.bat即可。注意,配置文件中说明了initial size和 maximum size必须一致。

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐