
16/03/2007, 08:45
|
| | Fecha de Ingreso: abril-2006 Ubicación: Colombia
Mensajes: 648
Antigüedad: 18 años, 11 meses Puntos: 3 | |
Re: Problemon Tal vez te sirva esto
Paremos el mysql:
# service mysql stop
Iniciemos mysql con la opción --skip-grant-tables.
# service mysql start --skip-grant-tables
Conectemos con mysql sin password.
# mysql -u root mysql
Y cambiemos el password.
mysql> UPDATE user SET Password=PASSWORD('nuevacontraseña') WHERE User='root';
Por ultimo hacemos:
mysql> FLUSH PRIVILEGES;
Cerramos y a restartear el servidor mysql.
# service mysql restart
Suerte |