Issue: New Install, grafana can't access
# umh-support
t
Issue: New Install, grafana can't access tag and tag_string tables....
I just did a new install on Hetzner - Rocky Linux v9.4
Companion v0.6.6
no tag or tag_string tables are available in grafana
grafanareader doesn't have any Privileges
j
@Ferdinand
f
Found the issue (timing between creating the dfc and executing the postgresql init script). Ill work on an update, but for now you can execute:
Copy code
\c umh_v2

GRANT SELECT ON umh_v2.public.asset TO grafanareader;
GRANT SELECT ON umh_v2.public.tag TO grafanareader;
GRANT SELECT ON umh_v2.public.tag_string TO grafanareader;
in psql as postgres user.
t
I didnt' have an issue with the asset table....just tag an tag_string. Thanks!