After reading many threads on different websites, I was able to solve my problem.
I wanted to make one of my dashboards public so that people at my company can see it without logging in.
This dashboard was made using ZABBIX.
First thing:
- Leave Anonymous
open grafana.ini
vim /etc/grafana/grafana.ini
and change the values
[auth.anonymous]
# enable anonymous access
enabled = true
Don’t forget to remove the “;”
Restart Grafana-Server
Copy the access link and send it to people within the company.
If you get a connction refused error, modify the same file grafana.ini
[security]
# disable creation of admin user on first start of grafana
;disable_initial_admin_creation = false
# default admin user, created on startup
;admin_user = admin
# default admin password, can be changed before first start of grafana, or in profile settings
;admin_password = admin
allow_embedding = true
It worked for me.