美文网首页
Solr 5安装运行

Solr 5安装运行

作者: waynedeng | 来源:发表于2016-01-30 21:00 被阅读86次

    Solr 5 的启动方式与前面的版本有了较大的不同,Solr5自带了相应的bin和注册为service的方式,大大简化了Solr的使用和部署。

    首先在http://www.apache.org/dyn/closer.lua/lucene/solr/5.4.1 ,下载最新的Solr,解压出来至/opt/solr-5.4.1。

    root@u14:/opt/solr-5.4.1# ll bin/
    总用量 148
    drwxr-xr-x 3 root root  4096  1月 27 14:21 ./
    drwxr-xr-x 9 root root  4096 12月  4 23:19 ../
    drwxr-xr-x 2 root root  4096 12月  4 23:18 init.d/
    -rwxr-xr-x 1 root root 10647 12月  3 09:03 install_solr_service.sh*
    -rwxr-xr-x 1 root root  1255 12月  3 09:03 oom_solr.sh*
    -rwxr-xr-x 1 root root  7754 12月  3 09:03 post*
    -rwxr-xr-x 1 root root 47969 12月  3 09:03 solr*
    -rwxr-xr-x 1 root root 43203 12月  3 09:03 solr.cmd*
    -rwxr-xr-x 1 root root  4487 12月  3 09:03 solr.in.cmd*
    -rwxr-xr-x 1 root root  4953 12月  3 09:03 solr.in.sh*
    

    Solr 5需要比较高版本的JDK的支持,首先我们指定Solr使用的JDK路径:

    export SOLR_JAVA_HOME=/opt/jdk1.8.0_66/
    

    Solr启动(指定端口8080)

    ./bin/solr start -p 8080
    

    前端运行

    ./bin/solr start -f
    

    停止运行

    bin/solr stop -p 8080
    bin/solr stop -all
    

    运行状态检查

    bin/solr status
    

    Solr命令帮助

        ./bin/solr -help
    

    创建Core,类似于不同的数据库

    bin/solr create -c <name>

    相关文章

      网友评论

          本文标题:Solr 5安装运行

          本文链接:https://www.haomeiwen.com/subject/zptskttx.html