Solrは正常に動作していますが、「localhost:8983」コンソールを開こうとすると、「SolrCore初期化に失敗しました」というメッセージが表示されます。

Solrは正常に動作していますが、「localhost:8983」コンソールを開こうとすると、「SolrCore初期化に失敗しました」というメッセージが表示されます。

CentOs-6.7(Java最新バージョンのインストール)を使用しており、solr-5.3.2.tgz以下で実行されています。http://a.mbbsindia.com/lucene/solr/5.3.2/。それから私のディレクトリに解凍し、次の /opt/solr-5.3.2コマンドを使用してsolrを起動しました。

bin/solr start-e cloud-noprompt

その後、solrが問題なく正常に起動した後、ポートがListenして正常に確立されたことを確認しました。以下は、solrを起動して印刷した内容です。

 Welcome to the SolrCloud example!

Starting up 2 Solr nodes for your example SolrCloud cluster.

Creating Solr home directory /opt/solr-5.3.2/example/cloud/node1/solr
Cloning /opt/solr-5.3.2/example/cloud/node1 into
   /opt/solr-5.3.2/example/cloud/node2

Starting up Solr on port 8983 using command:
bin/solr start -cloud -p 8983 -s "example/cloud/node1/solr"

Waiting up to 30 seconds to see Solr running on port 8983 [\]
Started Solr server on port 8983 (pid=8560). Happy searching!

Starting up Solr on port 7574 using command:
bin/solr start -cloud -p 7574 -s "example/cloud/node2/solr" -z localhost:9983

Waiting up to 30 seconds to see Solr running on port 7574 [\]
Started Solr server on port 7574 (pid=8776). Happy searching!

Connecting to ZooKeeper at localhost:9983 ...
Uploading /opt/solr-5.3.2/server/solr/configsets/data_driven_schema_configs/conf for config gettingstarted to ZooKeeper at localhost:9983

Creating new collection 'gettingstarted' using command:
http://localhost:8983/solr/admin/collections?action=CREATE&name=gettingstarted&numShards=2&replicationFactor=2&maxShardsPerNode=2&collection.configName=gettingstarted

{
  "responseHeader":{
    "status":0,
    "QTime":22130},
  "success":{"":{
      "responseHeader":{
        "status":0,
        "QTime":20693},
      "core":"gettingstarted_shard2_replica2"}}}

Enabling auto soft-commits with maxTime 3 secs using the Config API

POSTing request to Config API: http://localhost:8983/solr/gettingstarted/config
{"set-property":{"updateHandler.autoSoftCommit.maxTime":"3000"}}
Successfully set-property updateHandler.autoSoftCommit.maxTime to 3000


SolrCloud example running, please visit: http://localhost:8983/solr

これで問題は、次のようにsolrコンソールを開こうとしたときです。http://localhost:8983/solrまたはhttp://localhost:8983、エラーが発生

"SolrCore Initialization Failures"

そして接続も切断されました。

ノート:チェックリスト

ポートが受信中です。

コアは、次のコマンドを使用して生成されます。

何度も再起動

ベストアンサー1

ファイアウォールにIPアドレスを追加する必要があります(たとえば、CentOSシステムのiptables)。このテーブルのIPを設定したら、コンピュータに接続できます。

おすすめ記事