Eu sou um novato aqui, então por favor, tenha paciência comigo.
Estou usando o ubuntu 14.04.
Eu tentei entrar no mysql com o seguinte comando:
mysql -u root -p
e recebi a seguinte mensagem:
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
Digitei então:
sudo apt-get install mysql-client-core-5.6
Após a instalação, tentei conectar-me ao mysql novamente usando:
mysql -u root -p
Eu recebi a mensagem de erro:
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2)
Depois de pesquisar online, descobri que precisava instalar o servidor mysql e escrevi no seguinte comando
sudo apt-get install mysql-server
Eu recebi a mensagem:
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.
Eu estive procurando on-line durante a última hora por uma solução, mas outras pessoas que tiveram um erro semelhante, mas tiveram de atualizar o mysql e, portanto, a solução foram ineficazes para mim.