30/09/2005, 17:18
|
| | Fecha de Ingreso: septiembre-2005
Mensajes: 30
Antigüedad: 19 años, 1 mes Puntos: 0 | |
Solucion .. pero luego entraras sin password Hola :
mysql> select host,user,password from user;
+-----------+------+------------------+
| host | user | password |
+-----------+------+------------------+
| localhost | root | 67457e226a1a15bd |
| localhost | | |
+-----------+------+------------------+
Entra a tu mysql hasta el mismo lugar donde realizas esta consulta.
Luego ejecuta,
UPDATE user SET password='' WHERE host='localhost' AND user='root';
Saludos |