https://glpi-install.readthedocs.io/en/latest/timezones.html#grant-access
I am following the guide above that requires me to issue the following command:
GRANT SELECT ON `mysql`.`time_zone_name` TO 'glpi'@'localhost';
ERROR 1133 (28000): Can't find any matching row in the user table
The command fails and only works in the following form:
GRANT SELECT ON `mysql`.`time_zone_name` TO 'glpi'@'localhost' identified by 'password_here';
Is it possible to make this command work in it’s original form without the password?