Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the default username and password for Grafana login page?

what is default username and password for Grafana for http://localhost:3000/login page ? attaching a home page screenshot also.enter image description here I want to watch mySql database for through it.

like image 860
Jabongg Avatar asked Jan 04 '19 13:01

Jabongg


People also ask

What is my Grafana username and password?

Before starting Grafana for the first time, set the administration user and password in /etc/grafana/grafana. ini . If you don't, the default password is admin .

Where is Grafana password stored?

it's stored in the grafana database which can be sqlite3 database (default, stored in /var/lib/grafana/grafana.


1 Answers

By looking up the docs we can find that the magic combo is admin as username and admin as password.

However if you changed some configuration file you should be able to find it there. The default config file can be found here: $WORKING_DIR/conf/defaults.ini and can be overridden using the --config parameter

The item in the config you're looking for should be in the section:

[security] admin_user = admin admin_password = admin 
like image 124
Baklap4 Avatar answered Oct 12 '22 12:10

Baklap4