I get this error "access denied for user 'root'@'localhost' (using password no)" to which i've found a temporary solution to. I do in the terminal:
- sudo service mysql stop (Enter my password)
- (Then I navigate to usr/bin) and type: sudo mysqld_safe --skip-grant-tables
- (Open a new Terminal and type): mysql use mysql; UPDATE user SET password=PASSWORD('I_enter_my_new)password') WHERE user= 'root'; exit sudo service mysql start (then I enter my password)
This works fine only until I shut down my pc and log back in again . I would like a permanent solution to this please if anyone has one.