Ciao a tutti,
sto installando MySQL su una macchina Linux, seguendo le procedure di installazione trovate su una guida :
shell> groupadd mysql
shell> useradd -g mysql mysql
shell> cd /usr/local
shell> gunzip < /PATH/TO/MYSQL-VERSION-OS.tar.gz | tar xvf -
shell> ln -s FULL-PATH-TO-MYSQL-VERSION-OS mysql
shell> cd mysql
shell> scripts/mysql_install_db --user=mysql
shell> chown -R root .
shell> chown -R mysql data
shell> chgrp -R mysql .
shell> ./bin/mysqld_safe --user=mysql &
Il problema è che lanciando questo ultimo comando continua a darmi questo errore
-bash: ./bin/mysqld_safe: No such file or directory
non consentendomi di portare a termine l'installazione.
Sapete come posso risolverlo?
Grazie
Giulia