配置iptables
修改 /etc/sysconfig/iptables 在 filter 中加入以下内容,然后reload
-A INPUT -p tcp -m state --state NEW -m tcp --dport 8983 -j ACCEPT
-A INPUT -p tcp -m state --state NEW -m tcp --dport 7574 -j ACCEPT
管理界面
在本地使用 http://localhost:8983/solr/ ,或远程使用 http://ip:8983/solr/ 访问管理界面
Image_201509091621414.png
Tip: 也可以使用 7574 进行访问
Image_201509091628205.png
当前拓扑
这是当前的拓扑
Image_201509091630127.png
添加数据
使用 bin/post 可以方便的添加数据
root@h102 solr-5.3.0# bin/post -h
Usage: post -c <collection> OPTIONS <files|directories|urls|-d "...",...>
or post -help
collection name defaults to DEFAULT_SOLR_COLLECTION if not specified
OPTIONS
=======
Solr options:
-url <base Solr update URL> (overrides collection, host, and port)
-host <host> (default: localhost)
-p or -port <port> (default: 8983)
-commit yes|no (default: yes)
Web crawl options:
-recursive <depth> (default: 1)
-delay <seconds> (default: 10)
Directory crawl options:
-delay <seconds> (default: 0)
stdin/args options:
-type <content/type> (default: application/xml)
Other options:
-filetypes <type>[,<type>,...] (default: xml,json,csv,pdf,doc,docx,ppt,pptx,xls,xlsx,odt,odp,ods,ott,otp,ots,rtf,htm,html,txt,log)
-params "<key>=<value>[&<key>=<value>...]" (values must be URL-encoded; these pass through to Solr update request)
-out yes|no (default: no; yes outputs Solr response to console)
Examples:
root@h102 solr-5.3.0#
本文系转载,前往查看
如有侵权,请联系 cloudcommunity@tencent.com 删除。
本文系转载,前往查看
如有侵权,请联系 cloudcommunity@tencent.com 删除。