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.
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