Windows下ElasticSearch安装中的问题解决-Error occurred during initialization of VM Could not reserve enough sp
http://blog.csdn.net/wonderluoying/article/details/53363971 Java虚拟机内存限制问题安装过程中遇到VM初始化问题(提示如下):Error occurred during initialization of VMCould not reserve enough space for 2097152KB object hea...
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必须一致。
更多推荐
所有评论(0)