MySQL en Centos
Dar acceso remoto al usuario root, mejor dicho a otro usuario para no usar root ISO270001:
# telnet 142.18.1.55 3306
Error: DHost '142.19.11.5' is not allowed to connect to this MySQL serverConnection closed by foreign host.
# mysql -u root -p
mysql> grant all privileges on *.* to minombre@'%' identified by 'clavesupersegura' with grant option;
mysql> FLUSH PRIVILEGES;
mysql> exit
# telnet 142.18.1.55 3306
Error: DHost '142.19.11.5' is not allowed to connect to this MySQL serverConnection closed by foreign host.
# mysql -u root -p
mysql> grant all privileges on *.* to minombre@'%' identified by 'clavesupersegura' with grant option;
mysql> FLUSH PRIVILEGES;
mysql> exit
Comentarios
Publicar un comentario
Incluye información que aporte al tema