After setting password with this command:
mysqladmin.exe --user=root password <my_password>
I see 3 rows in user table for "root" user: https://i.sstatic.net/Y4Rkd.jpg and root@localhost has password, while [email protected] and root@::1 do not have password.
Does it mean that I need to set password 3 times for each of these rows? i.e.:
mysqladmin.exe --user=root host=localhost password <my_password>
mysqladmin.exe --user=root host=127.0.0.1 password <my_password>
mysqladmin.exe --user=root host=::1 password <my_password>
Is this normal?