Soy un novato aquí, así que tengan paciencia conmigo.
Estoy usando ubuntu 14.04.
Intenté ingresar mysql con el siguiente comando:
mysql -u root -p
y recibí el siguiente mensaje:
The program mysql can be found on the following packages:
* mysql-client-core-5.5
* mariadb-client-core-5.5
* mysql-client-core-5.6
* percona-xtrabd-cluster-client-5.5
Luego escribí:
sudo apt-get install mysql-client-core-5.6
Después de instalar esto, intenté conectarme nuevamente a mysql usando:
mysql -u root -p
Entonces recibí el mensaje de error:
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2)
Después de buscar en línea, descubrí que necesitaba instalar el servidor mysql y escribí el siguiente comando
sudo apt-get install mysql-server
Entonces recibí el mensaje:
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
mysql-server : Depends: mysql-server-5.5 but it is not going to be installed
E: Unable to correct problems, you have held broken packages.
Estuve buscando una solución en línea durante la última hora, pero otras personas que tuvieron un error similar pero lo tuvieron al actualizar mysql y, por lo tanto, la solución no fue efectiva para mí.