Ho provato a installare il server mysql un paio di volte e sto riscontrando problemi. Prima di tutto, quando installo mi dà un messaggio che si sta configurando e si blocca. Non riesco a uscire da ctl + c, quindi riavvio il server e provo ad accedere al db con
sudo mysql -u root -p
Inserisco la mia password e poi ottengo
ERRORE 2002 (HY000): impossibile connettersi al server MySQL locale tramite socket '/var/run/mysqld/mysqld.sock' (2)
Riavvio del server:
$ sudo /etc/init.d/mysql start
Rather than invoking init scripts through /etc/init.d, use the service(8)
utility, e.g. service mysql start
Since the script you are attempting to invoke has been converted to an
Upstart job, you may also use the start(8) utility, e.g. start mysql
Provo questo:
$ aptitude search mysql | grep ^i
i A libdbd-mysql-perl - Perl5 database interface to the MySQL data
i libmysql-java - Java database (JDBC) driver for MySQL
i A libmysqlclient16 - MySQL database client library
i mysql-client-5.1 - MySQL database client binaries
i A mysql-client-core-5.1 - MySQL database core client binaries
i mysql-common - MySQL database common files, e.g. /etc/mys
i mysql-embedded - MySQL - embedded library
i mysql-server-core-5.1 - MySQL database server binaries
Quando cerco la cartella per vedere se esiste il file * .sock:
'/var/run/mysqld/mysqld.sock'
non è così. Provo anche questo:
$ service mysql status
status: Unable to connect to system bus: Failed to connect to socket /var/run/dbus/system_bus_socket: No such file or directory
Qualche idea? Sulle mie altre macchine l'installazione di mysql è stata semplicissima, non sono sicuro di quale sia il problema.