Tema: Problemon
Ver Mensaje Individual
  #5 (permalink)  
Antiguo 21/03/2007, 14:33
Avatar de Isaac Mañe
Isaac Mañe
 
Fecha de Ingreso: enero-2002
Ubicación: Caracas
Mensajes: 396
Antigüedad: 22 años, 3 meses
Puntos: 0
Re: Problemon

Yo tambien tengo el mismo problema trabajando con mi servidor Suse y Mysql:

Probe la opcion mostrada en la intervencion anterior y me dice:
MySQL manager or server PID file could not be found!

Cita:
Iniciado por El Patrón. Ver Mensaje
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