Olá, eu criei um banco em uma máquina separada para acessar remotamente e simular um ambiente corporativo, porém não consigo acessar.
Ele me trás o seguinte erro: Cannot Connect to Database Server Your connection attempt failed for user 'root' to the MySQL server at ip_remoto:3306: Access denied for user 'root'@'10.200.0.1' (using password: YES)
Pesquisando na internet eu vi que meu usuário do banco precisa liberar acesso, porém quando eu conecto localmente no servidor com o root e tento liberar o acesso, ele me trás outro erro.
mysql> GRANT ALL PRIVILEGES ON .* TO 'root'@'10.200.0.1' WITH GRANT OPTION; ERROR 1410 (42000): You are not allowed to create a user with GRANT mysql> GRANT ALL PRIVILEGES ON *. TO 'root'@'%' WITH GRANT OPTION; ERROR 1410 (42000): You are not allowed to create a user with GRANT
Tentei liberar o acesso dessas duas formas sem sucesso. Poderia me dar alguma ajuda por favor?
mysql> show variables like '%version%'; +--------------------------+------------------------------+ | Variable_name | Value | +--------------------------+------------------------------+ | immediate_server_version | 999999 | | innodb_version | 8.0.16 | | original_server_version | 999999 | | protocol_version | 10 | | slave_type_conversions | | | tls_version | TLSv1,TLSv1.1,TLSv1.2 | | version | 8.0.16 | | version_comment | MySQL Community Server - GPL | | version_compile_machine | x86_64 | | version_compile_os | Linux | | version_compile_zlib | 1.2.11 | +--------------------------+------------------------------+