2016-06-22 9 views
0

PyLucene 4.10.1がインストールされています(これは最新のものです)。しかし、私がinitVM()を呼び出すと、SIGSEGVが呼び出され、何をすべきか分かりません。ここPyLucene:lucene.initVM()は、Linux RHEL7でセグメント化エラーを起こします。

が出力される。

[[email protected] gitCode]$ python 
Python 2.7.5 (default, Oct 11 2015, 17:47:16) 
[GCC 4.8.3 20140911 (Red Hat 4.8.3-9)] on linux2 


>>> import lucene 
>>> lucene.initVM() 


# 
# A fatal error has been detected by the Java Runtime Environment: 
# 
# SIGSEGV (0xb) at pc=0x00007fc725385c4b, pid=18501, tid=140493474518848 
# 
# JRE version: OpenJDK Runtime Environment (7.0_101) (build 1.7.0_101-mockbuild_2016_04_19_09_09-b00) 
# Java VM: OpenJDK 64-Bit Server VM (24.95-b01 mixed mode linux-amd64 compressed oops) 
# Derivative: IcedTea 2.6.6pre01 
# Distribution: Red Hat Enterprise Linux Server release 7.2 (Maipo), package rhel-2.6.6.1.el7_2-x86_64 u101-b00 
# Problematic frame: 
# V [libjvm.so+0x62ac4b] 
# 
# Core dump written. Default location: /local/gitCode/core or core.18501 
# 
# An error report file with more information is saved as: 
# /tmp/jvm-18501/hs_error.log 
# 
# If you would like to submit a bug report, please include 
# instructions on how to reproduce the bug and visit: 
# http://icedtea.classpath.org/bugzilla 
# 
Aborted (core dumped) 

コアファイルの出力は次の通りである:

Core was generated by `python'. 
Program terminated with signal 6, Aborted. 
#0 0x00007fc72e7ee5f7 in ??() 

しかし、私はPyluceneは(上記のエラーメッセージから)JRE 1.7を使用していることに気づきました。私は、次のコマンドを実行すると:

/usr/sbin/alternatives --config java 
/usr/sbin/alternatives --config javac 

それは、Java 1.8がデフォルトのものであることを私に示しています。互換性の問題でしょうか?はいの場合、1つのバージョンでどのように安定性を確保できますか?

答えて

0

私は実際にピュルセンの2バージョンをインストールしました(4.9と4.10)。さらに、私はJDK 1.7でそれらをコンパイルし、実際には1.8を使用していました(1.7に切り替えた後でもSIGSEGVを示しました)。

最後に、卵(site/packages/lucene4.xxx.egg)とJDK 1.8で再コンパイルされたpylucene4.10の両方がrm -rfとなり、うまくいきました。

関連する問題