Ver Mensaje Individual
  #1 (permalink)  
Antiguo 08/11/2012, 07:56
Montes28
 
Fecha de Ingreso: septiembre-2010
Mensajes: 1.853
Antigüedad: 14 años, 3 meses
Puntos: 6
configurar acceso remoto a mysql

hola amigos espero me puedan ayudar

necesito habilitar el acceso remoto para el usuario root

lo estoy haciendo de la siguiente manera


Código SQL:
Ver original
  1. mysql>GRANT ALL PRIVILEGES ON *.* TO 'root'@'%'IDENTIFIED BY 'clave' WITH GRANT OPTION;
  2. mysql> FLUSH PRIVILEGES;
  3. mysql> exit

y en el archivo /etc/my.cnf tengo lo siguiente

[mysqld]
datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock
user=mysql
# Default to using old password format for compatibility with mysql 3.x
# clients (those using the mysqlclient10 compatibility package).
old_passwords=1


#bind-address = 192.168.102.7
bind-address = 127.0.0.1


# Disabling symbolic-links is recommended to prevent assorted security risks;
# to do so, uncomment this line:
# symbolic-links=0

[mysqld_safe]
log-error=/var/log/mysqld.log
pid-file=/var/run/mysqld/mysqld.pid


despues reinicie mysql

que estoy haciendo mal?