我可以使用基本身份验证(使用内部用户数据库)运行开放发行版,现在我需要使用JWT令牌对Kibana仪表板进行身份验证。
Elasticsearch配置:
basic_internal_auth_domain:
http_enabled: false
transport_enabled: true
order: 4
http_authenticator:
type: basic
challenge: true
authentication_backend:
type: intern
proxy_auth_domain:
http_enabled: false
transport_enabled: false
order: 3
http_authenticator:
type: proxy
challenge: false
config:
user_header: "x-proxy-user"
roles_header: "x-proxy-roles"
authentication_backend:
type: noop
jwt_auth_domain:
enabled: true
http_enabled: true
transport_enabled: true
order: 0
http_authenticator:
type: jwt
challenge: false
config:
signing_key: "EdzdXd5weiuSVFyddfjhjhfjjchJGRrZmpkayZPUA=="
jwt_header: "Authorization"
jwt_url_parameter: "token"
roles_key: "roles"
subject_key: "sub"
authentication_backend:
type: noop
Kibana配置:
server.name: kibana
server.port: 5601
server.host: "127.0.0.1"
elasticsearch.url: https://127.0.0.1:9200
elasticsearch.ssl.verificationMode: none
elasticsearch.username: kibanaserver
elasticsearch.password: kibanaserver
elasticsearch.requestHeadersWhitelist: ["securitytenant","Authorization"]
opendistro_security.auth.type: "jwt"
opendistro_security.jwt.url_param: token
opendistro_security.multitenancy.enabled: true
opendistro_security.multitenancy.tenants.preferred: ["Private", "Global"]
opendistro_security.readonly_mode.roles: ["kibana_read_only"]
此后,当我打开http://localhost:5601?token=dfkhdfjdfhdjfhdhfkhdjfhjdhfjdhffdjhfdjhf时,身份验证失败,elasticsearch日志显示此消息-
[c.a.o.s.h.HTTPBasicAuthenticator] [node-1]没有“基本授权” 标头,发送401和“ WWW-Authenticate Basic”
我已经仔细阅读了文档,但是现在互联网上的资料很少,对于我猜的大多数人来说,它仍处于POC阶段。有什么建议吗?
答案 0 :(得分:0)
正在寻找答案的人-我的JWT令牌错误,请确保您根据服务器时间而非本地时间配置“ iat”,“ nbf”和“ exp”。