I'm having issues getting mysql to successfully install. Specifically being able to set or change the
password.
apt-get install mysql-server mysql-common mysql-client
During installation I get the following prompt:
While not mandatory, it is highly recommended that you set a password
for the MySQL administrative "root" user.
If that field is left blank, the password will not be changed.
New password for the MySQL "root" user:
At that prompt I type in my password:
nosoup4uThe next prompt is:
Repeat password for the MySQL "root" user:
At that prompt I type in my password, again:
nosoup4uOnce the installation is finished I try to login to mysql:
root@sheevaplug:/var/log# mysql -u root
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)
As expected, there is a password set.
So I try to login using the password I set during installation.
root@sheevaplug:/var/log# mysql -u root -p
Enter password: nosoup4u
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)
Has anyone been able to successfully install mysql on the sheevaplug?
I'm starting to think this might be file permissions or something specific to the file structure.
I'm looking for advice or guidance.