4
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?

More than 1 year has passed since last update.

solr管理画面に環境バナーを表示させる

Posted at

solrの管理画面(AdminUI)に環境情報を表すバナーを表示させる方法について

対象バージョン

8.2~

設定方法

solr.in.shに初期設定でsolr.enviromentがコメントアウトで記載されています。

#SOLR_OPTS="$SOLR_OPTS -Dsolr.environment=prod"

コメントインして、環境に応じて値を設定します。設定できる値は「prod」、「stage」、「test」、「dev」となります。

SOLR_OPTS="$SOLR_OPTS -Dsolr.environment=dev"

設定した値に応じてバナー色が変わります。

dev stage prod
Solr-Admin_dev.png Solr-Admin_stg.png Solr-Admin_prod.png

バナーの色を変えたい、表示する文字を変えたい場合はlabelcolorオプションで指定できます。
色の指定はCSSカラー色または16進数のカラーコードが使用できます。

SOLR_OPTS="$SOLR_OPTS -Dsolr.environment=dev,label=dev+hoge,color=yellow"

Solr-Admin_devhoge.png

参考

Environment banner in Admin UI

4
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
4
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?