I am using 7.17.3v of elk and search guard 53.1.0
https://localhost:9200/_searchguard/authinfo
. while testing this step its showing error as follows
{“error”:“Incorrect HTTP method for uri [/_searchguard/authinfo] and method [GET], allowed: [POST]”,“status”:405}
step 1-Installed Search Guard on Elasticsearch
step 2-installed demo certificate inside Elasticsearch config
/config
step 3- Added the following minimal Search Guard configuration to elasticsearch.yml
:
searchguard.ssl.transport.pemcert_filepath: esnode.pem
searchguard.ssl.transport.pemkey_filepath: esnode-key.pem
searchguard.ssl.transport.pemtrustedcas_filepath: root-ca.pem
searchguard.ssl.transport.enforce_hostname_verification: false
searchguard.ssl.http.enabled: true
searchguard.ssl.http.pemcert_filepath: esnode.pem
searchguard.ssl.http.pemkey_filepath: esnode-key.pem
searchguard.ssl.http.pemtrustedcas_filepath: root-ca.pem
searchguard.allow_unsafe_democertificates: true
searchguard.allow_default_init_sgindex: true
searchguard.authcz.admin_dn:
- CN=kirk,OU=client,O=client,L=test,C=de
searchguard.enable_snapshot_restore_privilege: true
searchguard.check_snapshot_restore_write_privileges: true
searchguard.restapi.roles_enabled: [“SGS_ALL_ACCESS”]
step-4 - the Restarted the node
step 5- https://localhost:9200/_searchguard/authinfo
. while testing this step its showing error as follows
{“error”:“Incorrect HTTP method for uri [/_searchguard/authinfo] and method [GET], allowed: [POST]”,“status”:405}
please help to solve it