Solrのセキュリティー レプリケーション
トピック作成者:ks-solruserml-bot (2024/08/06 21:51 投稿)
2
(The bot translated the original post https://lists.apache.org/thread/6vtxgzjn643c9dmfst6m3t0qdr74d55l into Japanese and reposted it under Apache License 2.0. The copyright of posted content is held by the original poster.)
こんにちは、皆さん
セキュリティ設定を調整して、読み取り専用ユーザーが管理パネルにアクセスできるようにし、ドキュメントの更新やコレクションの作成・編集はできないようにしました。ただし、現在そのユーザーがコアのレプリケーション画面で「レプリケーションを無効にする」ボタンをクリックしてレプリケーションを無効にできてしまいます。特定のユーザーまたはロールに対してこの機能を無効にする方法についてご存じの方はいらっしゃいますか?
ありがとうございます!
Paul
{
"authentication": {
"blockUnknown": true,
"class": "solr.BasicAuthPlugin",
"credentials": {
"solr-admin": "IV0EHq1OnNrj6gvRCwvFwTrZ1+z1oBbnQdiVC3otuq0= Ndd7LKvVBAaZIF0QAVi1ekCfAJXr1GGfLtRUXhgrF8c=",
"solr-read": "IV0EHq1OnNrj6gvRCwvFwTrZ1+z1oBbnQdiVC3otuq0= Ndd7LKvVBAaZIF0QAVi1ekCfAJXr1GGfLtRUXhgrF8c="
},
"forwardCredentials": false,
"": { "v": 0 }
},
"authorization": {
"class": "solr.RuleBasedAuthorizationPlugin",
"user-role": {
"solr-admin": ["admin"],
"solr-read": ["readonly"]
},
"permissions": [
{
"name": "update",
"role": ["admin"],
"index": 1
},
{
"name": "read",
"role": ["admin", "readonly"],
"index": 2
},
{
"name": "security-edit",
"role": ["admin"],
"index": 3
},
{
"name": "security-read",
"role": ["admin"],
"index": 4
},
{
"name": "core-admin-edit",
"role": ["admin"],
"index": 5
},
{
"name": "collection-admin-edit",
"role": ["admin"],
"index": 6
},
{
"name": "config-edit",
"role": ["admin"],
"index": 7
},
{
"name": "config-read",
"role": ["admin"],
"index": 8
},
{
"name": "schema-edit",
"role": ["admin"],
"index": 9
},
{
"name": "filestore-write",
"role": ["admin"],
"index": 10
},
{
"name": "package-edit",
"role": ["admin"],
"index": 11
},
{
"name": "all",
"role": ["admin", "readonly"],
"index": 12
}
],
"": { "v": 0 }
}
}
トピックへ返信するには、ログインが必要です。