DB2 信息中心无法在 Windows 7 中启动 - NUMA 错误
我下载了 DB2 Information Center,然后解压缩并开始。然而此时出现了崩溃,应用程序一直没有启动。它在目录中创建了一个转储文件。 javacore文件包含这部分:
3XHCPUARCH Architecture : x86
3XHNUMCPUS How Many : 2
3XHNUMASUP NUMA is either not supported or has been disabled by user
这是什么意思?我在Google上搜索,在boot.ini文件中找到了有关/usepmtimer的内容,但是Windows 7没有这个文件。 如何才能在 Windows 7 中本地使用信息中心?
I downloaded the DB2 Information Center, then I unzipped and started. However, there was a crash at this time, and the application never started. It created a dump file in the directory. The javacore file contains this part:
3XHCPUARCH Architecture : x86
3XHNUMCPUS How Many : 2
3XHNUMASUP NUMA is either not supported or has been disabled by user
What does it mean? I searched in Google, and I found something about /usepmtimer in the boot.ini file, however, Windows 7 does not have this file.
What can I do in order to use the Information Center locally in Windows 7?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以尝试一些步骤:
Some steps you can try out:
好吧,这并不能解决问题,但至少它允许在本地独立执行信息中心。
我查看了ic-wrkstn-start.bat文件,发现该行只有一行,其余都是注释。这一行执行给定的Java运行时环境,看来问题就在那里。
给定的 JRE 是 IBM J9,我认为问题就在那里。仅通过使用选项 version 调用此二进制文件,输出会给出相同的错误:
嗯,如您所见,错误不是信息中心,而是给定的 Java。出于这个原因,我只使用了我安装的 JRE,即 Oracle (Sun) 的 JRE,它就工作了。
我没有执行“jre\bin\java”,而是输入“java”,并且将使用已安装的(路径)java。
Well, this does not solve the problem, but at least it permits to execute the Information Center locally as standalone.
I looked at the ic-wrkstn-start.bat file, and I saw that there is only one line in the line, the rest are comments. This line executes the given Java Runtime Environment, and it seems that the problem is there.
The given JRE is a IBM J9 and I think the problem is there. Only by calling this binary with the option version, the output gives the same error:
Well, as you can see, the error is not the Info Center, but it is the given Java. For this reason, I just took my installed JRE, the Oracle (Sun) one, and it worked.
Instead of execute 'jre\bin\java', I put 'java', and the installed (path) java will be used.