fisheye Error occurred during initialization of VM Could not reserve enough space for object heap 问题解决!
参考文章:https://answers.atlassian.com/questions/9397/not-enough-heap-space-to-run-fisheye
fisheye下载好了之后,解压后怎么运行run.bat都报错误,错误提示如下:
D:\developsoft\fisheye-3.1.5\fecru-3.1.5>bin\run.bat --debug
Error occurred during initialization of VM
Could not reserve enough space for object heap
Error: Could not create the Java Virtual Machine.
Error: A fatal exception has occurred. Program will exit.
请按任意键继续. . .
网上搜索了很久,最后试了很多,终于找到解决方法了!哈哈!
在 控制面板\系统和安全\系统--->高级系统设置----》系统属性-----》高级----》环境变量-----》系统变量----》新建
变量名:FISHEYE_OPTS
变量值:-Xms128m -Xmx512m -XX:MaxPermSize=256m
再点击确定--》确定
即可。
原因分析:我的电脑4g内存,win7(32位),jdk 1.7(32位),因为是32位的系统,所以原则上4G内存只能读2G左右,但是fisheye默认值为
| 
 RAM  | 
 1GB minimum, 2GB will provide performance "headroom". Your Java heap should be sized at 512MB with theFISHEYE_OPTS environment variable, adjustable up to 1024MB depending on performance.  | 
它是建议最好1G以上,2G为推荐值,但是jdk默认值最好关于fisheye的预留值要512M以上,如果你的内存没有那么大,那么手动把MaxPermSize调小即可。
重新双击run.bat,然后在浏览器中输入localhost:8060即可打开fisheye,fisheye的默认端口为8060
fisheye Error occurred during initialization of VM Could not reserve enough space for object heap 问题解决!的更多相关文章
- Error occurred during initialization of VM Could not reserve enough space for object heap
		
Error occurred during initialization of VM Could not reserve enough space for object heap Java虚拟机(JV ...
 - Logstash测试的时候,报Error occurred during initialization of VM,Could not reserve enough space for  object heap
		
今天配置Logstash的时候,启动输入logstash ‐e 'input { stdin { } } output { stdout {} }'就开始报错了,Error occurred duri ...
 - android Error occurred during initialization of VM Could not reserve enough space for object heap Could not create the Java virtual machine.
		
在当前工程目录中 gradle.properties 添加org.gradle.jvmargs=-XX\:MaxHeapSize\=256m -Xmx256m http://stackoverflow ...
 - 问题3-Error occurred during initialization of VM Could not reserve enough space for object heap
		
初步断定是内存方面的问题 于是决定修改配置文件 D:\study\eclipse\eclipse\eclipse.ini -startupplugins/org.eclipse.equinox.lau ...
 - Error occurred during initialization of VM Could not reserve enough space for 2097152KB object heap
		
ionic build Android后的报错问题 ionic 升级了splashscreen和statusbar的插件后,执行ionic build android会一直报打包错误.原因是过低的An ...
 - Error occurred during initialization of VM Could not reserve enough space fo
		
通过es的elasticsearch.bat 启动.发现错误:Error occurred during initialization of VM Could not reserve enough s ...
 - jboss服务启动失败报:Error occurred during initialization of VM
		
今天下午突然间公司的GTV管理平台上不去了 访问确实,提示找不到页面 登录终端查看服务进程. ps -ef | grep jboss 发现没有这个进程.怎么办,启动被. 输入nohup /home/c ...
 - 异常 - 虚拟机初始化错误 - Error occurred during initialization of VM
		
目录 1 环境配置信息 1.1 服务器配置信息 1.2 Tomcat启动参数 2 问题描述 3 问题解决 4 关于vm.overcommit_memory参数 4.1 vm.overcommit_me ...
 - Android studio Error occurred during initialization of VM
		
Unable to start the daemon process. This problem might be caused by incorrect configuration of the d ...
 
随机推荐
- fn:replace()函数
			
fn:replace()函数将字符串中所有指定的子串用另外的字符串替换. 语法 fn:replace()函数的语法如下: ${fn:replace(<原始字符串>, <被替换的字符串 ...
 - CSS阻塞渲染、怎么防止css阻塞
			
浏览器渲染流程: 1.浏览器开始解析目标HTML文件,执行流的顺序为自上而下. 2.HTML解析器将HTML结构转换为基础的DOM(文档对象模型),构建DOM树完成后,触发DomContendLoad ...
 - capwap学习笔记——初识capwap(五)
			
3. CAPWAP Binding for IEEE 802.11 ¢ CAPWAP协议本身并不包括任何指定的无线技术.它依靠绑定协议来扩展对特定无线技术的支持. ¢ RFC5416就是用来扩展CAP ...
 - codeforces 551 C GukiZ hates Boxes
			
--睡太晚了. ..脑子就傻了-- 这个题想的时候并没有想到该这样-- 题意大概是有n堆箱子从左往右依次排列,每堆ai个箱子,有m个人,最開始都站在第一个箱子的左边, 每个人在每一秒钟都必须做出两种选 ...
 - GPUImage简单滤镜使用之色阶(三)
			
色阶是表示图像亮度强弱的指数标准,图像的色彩丰满度和精细度是由色阶决定的.在GPUImage中GPUImageLevelsFilter提供了此功能. GPUImageLevelsFilter定义了修改 ...
 - wdcp升级php5.3无法安装PDO_MySQL的解决
			
重新下载php5.3的升级脚本 wget http://down.wdlinux.cn/in/php_up53.sh 不忙运行,先修改php_up53.sh,查找./configure字段,在这行的末 ...
 - 保存登录plsql developer 的用户名和密码
			
1 保存用户名 tools -> Preferences -> User Interface - Options 勾选 Autosave username . 保存 2 保存密码 tool ...
 - mssql批量删除数据库里所有的表
			
go declare @tbname varchar(250) declare #tb cursor for select name from sysobjects where objectprope ...
 - 开发JAVA9以上的项目时,出现ClassNotFoundException: javax.xml.bind.JAXBException的解决方法
			
一.问题描述: 开发JAVA9以上的项目时,出现ClassNotFoundException: javax.xml.bind.JAXBException的解决方法 二.问题样例 三.解决方案 打开mv ...
 - tar 使用总结
			
今天需要备份数据,使用tar命令,总结一下. 压缩命令: tar -zvvf ticket-data-intgration.tar.gz ticket-data-intgration 压缩但是不包含某 ...