我是Solr的新手。我的hdfs位置有一个大的csv文件,我正在尝试使用Apache Solr对其进行索引。但它抛出了一个错误。以下是我正在使用的命令。
hadoop jar jobjar/connectors/plugins/lucid.hadoop/hadoop-job/hadoop-lws-job-2.0.0-rc2-0.jar com.lucidworks.hadoop.ingest.IngestJob -Dlww.commit.on.close=true -DcsvFieldMapping=0=id,1=text -cls com.lucidworks.hadoop.ingest.CSVIngestMapper -c hdp1 -i /tmp/neethu/solr/mydata.csv -of com.lucidworks.hadoop.io.LWMapRedOutputFormat -s https://localhost:8983/solr/
错误信息是:
SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
SLF4J: Defaulting to no-operation (NOP) logger implementation
SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
15/03/12 15:52:27 INFO Configuration.deprecation: mapred.map.tasks.speculative.execution is deprecated. Instead, use mapreduce.map.speculative
Solr server not available on: https://localhost:8983/solr/
每当我复制粘贴我的浏览器中的网址https://localhost:8983/solr/时,我都无法查看solr管理页面。它说This webpage is not available
我认为这可能是我收到上述错误的原因。可以告诉我为什么我无法在浏览器上查看solr管理页面。我在这方面做了很多尝试。