0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Apache Solrをbuildする

Posted at

Solrをビルトした時のメモ

ちょっと、Solrをビルドする必要ができたので、調べた時のメモ

環境設定

環境はUbuntu 22.04を使ってやっていく
まずは必要パッケージのアップデートとインストールなど

javaとビルトツールとしてgradleを使っているのでインストールする

sudo apt update
sudo apt install openjdk-17-jdk
sudo apt install gradle

コードの取得〜ビルド

Solrでは、gradlewというコマンドをgradleのラッパーとして使っている
それのassembleを実行することでビルドができる

git clone https://github.com/apache/solr.git

#ビルドの実行
./gradlew assemble

#ビルドが成功すると以下の場所にビルドされたファイルができる
cd solr/packaging/build/VERSION
#起動する
bin/solr start -c

その他

# いわゆるhelp
./gradlew help

# buildなので利用できるオプションの表示をする
./gradlew tasks


# テストの実行
./gradlew check

この辺を読んでおく
github/solr/dev-docs

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?