How to reset grafana's admin password (installed by helm ...
stackoverflow.com › questions › 59838690Jan 21, 2020 · This answer is useful. 12. This answer is not useful. Show activity on this post. Ok found. Best way is to run grafana-cli inside grafana's pod. kubectl exec --namespace default -it $ (kubectl get pods --namespace default -l "app=grafana,release=grafana" -o jsonpath=" {.items [0].metadata.name}") grafana-cli admin reset-admin-password yourNewPasswordHere INFO [01-21|10:24:17] Connecting to DB logger=sqlstore dbtype=sqlite3 INFO [01-21|10:24:17] Starting DB migration logger=migrator Admin ...
How do i reset admin password? - HowTo - Grafana Labs ...
community.grafana.com › t › how-do-i-reset-adminMar 07, 2017 · I forgot the admin password is there a way to reset it? There is sadly not built in way to easily do this. The below instructions should work for sqlite3. If you use MySQL or Postgres the SQL command should also work. $ sudo sqlite3 /var/lib/grafana/grafana.db sqlite> update user set password = '59acf18b94d7eb0694c61e60ce44c110c7a683ac6a8f09580d626f90f4a242000746579358d77dd9e570e83fa24faa88a8a6', salt = 'F3FAxVm33R' where login = 'admin'; sqlite> .exit.