我已经在我的Windows 7客户端机器上安装了Apache,并且正在使用geoserver.war作为部署。
我一直在Geoserver中遇到超时/Java内存问题。(http://localhost:8080/geoserver/web/
关于如何在Linux下而不是在Windows客户端下增加空间,有很多例子。我目前有8GB的DDR5内存和一个英特尔核心i5。
对于我如何在Windows客户端上增加这个值,有什么想法吗?
发布于 2014-03-12 15:56:26
您可以通过添加以下参数来增加JVM堆空间,而且它也应该在Windows上工作:
-Xmx2048m -> this param to set the max memory that the JVM can allocate
-Xms1024m -> the init memory that JVM will allocate on the start up
-XX:MaxPermSize=512M -> this for the max Permanent Generation memory为了把它们加在tomcat下:
tomcat7w.exe中导航和打开[TOMCAT_HOME]/binJava tap,然后在Java Options下添加它们https://stackoverflow.com/questions/22356890
复制相似问题