LoginSignup
0
0

More than 5 years have passed since last update.

Solr 6.0.0をインストールしてみた

Last updated at Posted at 2016-04-08

ネタ元

ミラーサイトとか

実際にインストールしてみる

  • 環境

    • centos 6.7 (vagrant box = bento/centos-6.7)
  • スクリプト

provision.sh
solr() {

  : "get and install apache solr" && {
  TMP_DIR='/var/tmp'
  VERSION='6.0.0'

  cd ${TMP_DIR}
  wget http://ftp.tsukuba.wide.ad.jp/software/apache/lucene/solr/${VERSION}/solr-${VERSION}.tgz
  tar zxvf ${TMP_DIR}/solr-${VERSION}.tgz
  sh ${TMP_DIR}/solr-${VERSION}/bin/install_solr_service.sh solr-${VERSION}.tgz
  ln -s ${V_DIR}/template/solr/etc/solr.conf  /etc/solr.conf
  service solr restart
  }
}

snapshot

  • webは5.5から変更はしてない模様
  • 機能はこれから使ってみます!

apsolr.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0