如何使用 MONGO-CONNECTOR 集成 MONGODB 和 SOLR

如何使用 MONGO-CONNECTOR 集成 MONGODB 和 SOLR
  • 像这样,我用 replSet mod 启动了我的 mongod
mongod --dbpath=/home/local/ASSYST-COC/so/mongo  --replSet myrep --auth 
  • mongo 已启动

    mongo -u root -p root --authentication数据库管理员

  • 在 mongo 中我已经有了带有一些集合的 dbs 4.启动了 solr

    java -jar start.jar(版本4.7)

  • 接下来 mongoconnector 启动

    sudo python /usr/lib/python2.7/site-packages/mongo-connector/mongo_connector.py -m localhost:27017 -t http://localhost:8983/solr -o /usr/lib/python2.7/site-packages/mongo-connector/config.txt -a root -p root -n smmc-dart.testcase -d /usr/lib/python2.7/site-packages/mongo-connector/doc_managers/solr_doc_manager.py

mongo 连接器在终端启动后显示如下内容。

 2014-04-07 16:11:19,865 - INFO - Beginning Mongo Connector
 2014-04-07 16:11:21,335 - INFO - Starting new HTTP connection (1): localhost
 2014-04-07 16:11:21,469 - INFO - Finished 'http://localhost:8983/solr/update/?     commit=true' (post) with body 'u'<commit ' in 0.159 seconds.
 2014-04-07 16:11:21,475 - INFO - MongoConnector: Empty oplog progress file.
 Exception in thread Thread-1:
 Traceback (most recent call last):
  File "/usr/lib/python2.7/threading.py", line 530, in __bootstrap_innerself.run()
  File "/usr/lib/python2.7/site-packages/mongo-connector/mongo_connector.py", line 204, in run
repl_set = prim_admin.command("replSetGetStatus")['set']
File "/usr/lib/python2.7/site-packages/pymongo/database.py", line 396, in command msg, allowable_errors)
 File "/usr/lib/python2.7/site-packages/pymongo/helpers.py", line 147, in _check_command_response
 raise OperationFailure(msg % errmsg, code)
 OperationFailure: command SON([('replSetGetStatus', 1)]) failed: unauthorized

2014-04-07 16:11:22,489 - INFO - Finished `http://localhost/solr/update/?  commit=true` (post) with body 'u'<commit ' in 0.018 seconds.

Solr 中没有任何更新,我在 Solr Web 控制台界面中检查了这一点。

我需要做什么吗?

相关内容