Windows中solr启动

原链接https://blog.csdn.net/yanlove_jing/article/details/49784711



【Windows中solr启动】0,solr的下载地址http://www.apache.org/dyn/closer.lua/lucene/solr/5.3.1
Windows中solr启动
文章图片




1
,Windows中solr启动
文章图片

先查看本地的环境变量是否是 1.7+的jdk,如果不是则下载并修改环境变量


Windows中solr启动
文章图片






3,执行echo %JAVA_HOME%查看当前的环境变量如果不是1.7+修改后要重启计算机才能生效。


4,安装第一张图片继续启动
5,http://localhost:8983启动见到solr首页


'pwd' 不是内部或外部命令,也不是可运行的程序
或批处理文件。

6.d:盘运行solr
C:\Users\sayha>echo %JAVAZ_HOME%
%JAVAZ_HOME%


C:\Users\sayha>d:


D:\solr\solr-7.1.0>cd D:\solr\solr-7.1.0


D:\solr\solr-7.1.0>cd
D:\solr\solr-7.1.0


D:\solr\solr-7.1.0>cd bin


D:\solr\solr-7.1.0\bin>solr.cmd start
Waiting up to 30 to see Solr running on port 8983
Started Solr server on port 8983. Happy searching!


D:\solr\solr-7.1.0\bin>solr create -c solrcoreName
WARNING: Using _default configset. Data driven schema functionality is enabled by default, which is
NOT RECOMMENDED for production use.
To turn it off:
curl http://localhost:8983/solr/solrcoreName/config -d '{"set-user-property": {"update.autoCreateFields":"false"}}'


Created new core 'solrcoreName'


D:\solr\solr-7.1.0\bin>


    推荐阅读