在OS X上使用Java 7和neo4j [英] Using Java 7 with neo4j on OS X

查看:418
本文介绍了在OS X上使用Java 7和neo4j的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在系统首选项中将Java升级到7u45后,Neo4j仍然警告我使用了错误的版本:

After upgrading Java to 7u45 in system preferences, Neo4j was still warning me about using the wrong version:

WARNING! You are using an unsupported Java runtime. Please use Oracle(R) Java(TM) Runtime Environment 7.

我想使用neo4j v2,它不支持Java 6,所以我需要解决这个问题。

I want to use neo4j v2, which doesn't support Java 6, so I needed to fix this.

推荐答案

我启动了一个neo4j 1.9.4服务器,跑 neo4j信息。输出包括这一行:

I started a neo4j 1.9.4 server, and ran neo4j info. The output included this line:

JAVA_HOME:         /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home

很明显,我需要设置JAVA_HOME。怎么设置它? / usr / libexec / java_home 返回同一目录。 JavaVirtualMachines目录不包含任何其他子文件夹。所以我尝试探索java控制面板(从系统首选项访问)。在Java选项卡下,单击查看,并给出7u45的路径:

So obviously, I needed to set JAVA_HOME. What to set it to? /usr/libexec/java_home returns that same directory. The JavaVirtualMachines directory doesn't include any other subfolders. So I tried exploring the java control panel (accessed from system preferences). Under the "Java" tab, click "View", and the path for 7u45 is given:

/Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/bin/java

所以我试过这个,猜猜是的目录/主页目录是同构的:

So I tried this, guessing that the Contents/Home directories were isomorphic:

$ export JAVA_HOME=/Library/Internet\ Plug-Ins/JavaAppletPlugin.plugin/Contents/Home
$ neo4j start
WARNING! You are using an unsupported Java runtime. Please use Oracle(R) Java(TM) Runtime Environment 7.
Using additional JVM arguments:  -server -XX:+DisableExplicitGC -Dorg.neo4j.server.properties=conf/neo4j-server.properties -Djava.util.logging.config.file=conf/logging.properties -Dlog4j.configuration=file:conf/log4j.properties -XX:+UseConcMarkSweepGC -XX:+CMSClassUnloadingEnabled -Dneo4j.ext.udc.source=homebrew
Starting Neo4j Server...WARNING: not changing user
process [34808]... waiting for server to be ready. Failed to start within 120 seconds.
Neo4j Server may have failed to start, please check the logs.

这不好。

我搜索过并找到了这篇文章,根据Lasse的建议,我编辑了 /usr/local/Cellar/neo4j/1.9.4/libexec/bin/utils 。我添加了两行:

I searched and found this post, and on Lasse's advice I edited /usr/local/Cellar/neo4j/1.9.4/libexec/bin/utils. I added two lines:

 # check if running Oracle JDK 7, warn if not
 checkjvmcompatibility() {
+  echo $JAVACMD
+  $JAVACMD -version
   $JAVACMD -version 2>&1 | egrep -q "Java HotSpot\\(TM\\) (64-Bit Server|Server|C
 lient) VM"
   if [ $? -eq 1 ]
   then
     echo "WARNING! You are using an unsupported Java runtime. Please use Oracle(R) Java(TM) Runtime Environment 7."
   else
     $JAVACMD -version 2>&1 | egrep -q "java version \"1.7"
     if [ $? -eq 1 ]
     then
       echo "WARNING! You are using an unsupported version of the Java runtime. Please use Oracle(R) Java(TM) Runtime Environment 7."
     fi
   fi
 }

再次尝试:

$ neo4j start
/Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/bin/java
bin/utils: line 349: /Library/Internet: No such file or directory
WARNING! You are using an unsupported Java runtime. Please use Oracle(R) Java(TM) Runtime Environment 7.

看起来路径中的空间是我试图逃避它,但我的第一种方法失败了:

It looks like the space in the path is confusing. I tried to escape it, but my first approach failed:

$ export JAVA_HOME="'/Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Home'"
$ neo4j start
Error: JAVA_HOME is not defined correctly.
  We cannot execute '/Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Home'/bin/java

然后我决定简单(不一定很好)的解决方案只是为了制作一个符号链接:

And then I decided that the simple (not necessarily nice) solution was just to make a symlink:

$ cd /Library/
$ sudo ln -s Internet\ Plug-Ins/ Internet-Plug-Ins
$ export JAVA_HOME=/Library/Internet-Plug-Ins/JavaAppletPlugin.plugin/Contents/Home

此时 neo4j start 正确运行;我设法升级到v2.0.0-M6,它仍然有效。

At this point neo4j start ran correctly; and I managed to upgrade to v2.0.0-M6 and it still worked.

这篇关于在OS X上使用Java 7和neo4j的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆