Reset admin password

Hi,

I found answered issues how to reset the admin password for older fess versions, but it doesn’t work with fess 13.
How is that possible, if the admin password got lost?

Thanks!

The index name is changed in Fess 13.
http://127.0.0.1:9201/.fess_user/user/... -> http://127.0.0.1:9201/.fess_user.user/_doc/...

EDIT:
works with

curl --header "Content-Type: application/json" \
  --request POST \
  --data '
{"password":"8c6976e5b5410415bde908bd4dee15dfb167a9c873fc4bb8a81f6f2ab448a918","surname":"admin","roles":["YWRtaW4=","Z3Vlc3Q="],"name":"admin"}
' "localhost:9200/.fess_user.user/_doc/YWRtaW4="

How about on the version 14.10’s case?

The index name is fess_user.user, not .fess_user.user.

Thank you for your help.
I could do it.