Удаленный доступ к mysql

Уважаемые други!

Продскажите, пожалуйста, в чем я не прав?
1. Установил mariadb
2. Создал БД sudo mysql_install_db --user=mysql --basedir=/usr --datadir=/var/lib/mysql
3. Запустил демон sudo systemctl start mysqld
4. sudo mysql_secure_installation
5. Перезапустил демон sudo systemctl restart mysqld
Сделал аналогичные действия на другом хосте.
Дальше создал пользователей, раздал гранты
CREATE USER 'user'@'hostname' IDENTIFIER BY 'password';
GRANT ALL PRIVILEGES ON *.* TO 'user'@'hostname' WITH GRANT OPTION;
GRANT ALL PRIVILEGES ON *.* TO 'user'@'hostname' IDENTIFIER BY 'password' WITH GRANT OPTION;

Беда при попытке на хосте 1 открыть БД на хосте 2.
[[email protected] ~]$ mysql -u anton -p -h AntonStacionPC
Enter password:
ERROR 1130 (HY000): Host 'KsushaNotebook.localdomain' is not allowed to connect to this MariaDB server
[[email protected] ~]$ 
[[email protected] prog]$ mysql -u anton -p
Enter password:
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 8
Server version: 10.1.14-MariaDB MariaDB Server

Copyright (c) 2000, 2016, Oracle, MariaDB Corporation Ab and others.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

MariaDB [(none)]> SELECT Host, User FROM mysql.user;
+-----------------+--------+
| Host            | User   |
+-----------------+--------+
| 127.0.0.1       | root   |
| ::1             | root   |
| antonstacionpc  | anton  |
| antonstacionpc  | ksusha |
| antonstacionpc  | root   |
| antonstacionpc  | victor |
| ksushanotebook  | anton  |
| ksushanotebook  | ksusha |
| ksushanotebook  | victor |
| localhost       | anton  |
| localhost       | root   |
| victorstacionpc | anton  |
| victorstacionpc | ksusha |
| victorstacionpc | victor |
+-----------------+--------+
14 rows in set (0.00 sec)

MariaDB [(none)]>
 
Зарегистрироваться или войдите чтобы оставить сообщение.