Can't access MySQL in command line through user created in phpMyAdmin - mysql

I'm using Mamp to enter phpMyAdmin, and I created a user. I tried to access MySQL through the command line using: mysql -u testing -p, then entering the password. I get Access denied for user 'testing'#'localhost' (using password: YES). I also can't access through root. Any help would be appreciated.

You must login with root user and change resting user previlege. your can see this post
MySQL: Access denied for user 'test'#'localhost' (using password: YES) except root user

Related

I cant connect mysql

When I try to enter the root user from MySQL Workbench and manually enter it, I get the following error:
your connection attempt failed for user root to the mysql server
Access denied for user 'root'#'localhost' (using password: YES)
I am using mysql -u root code when I want to connect to MySQL via cmd and I get an error in it:
mysql: Unknown operating system character set 'cp857'.
mysql: switch to the default character set of 'utf8mb4'.
ERROR 1045 (28000): Access was denied for the user 'root'#'localhost' (using password: No)
I get a similar error when I try to log in using a password, the only thing that changes is (using password: YES).
What had I better do?
Issue with your password so simply change mysql root password.
here command
mysql -u root
then
mysqladmin -u root password [newpassword]
may help you this.
thanks

MySQL can't connect

I try to access MySQL but I can't. I wrote skip-grant-tables in the mysql configuration and restart it but it still doesn't work.
$ mysql -u root -p
ENTER PASSWORD: *****
ERROR 1045 (28000): Access denied for user 'root'#'localhost' (using password: YES)
I also try to connect phpmyadmin but I can't
Cannot log in to the MySQL server
and
mysqli_real_connect(): (HY000/1045): Access denied for user 'root'#'localhost' (using password: YES)
Error meaning:
SQLSTATE[28000] [1045] Access denied for user 'user'#'localhost'
(using password: YES)
Possibilities:
Typo in password
Accessing from the wrong host
User doesn’t exist
But in your scenario, I don't see a chance for case 3. But cases 1 and 2 are possible.
Can you check if your password is correct, i,e. no typo in your password.
If you have a wrong password you can reset the admin/root password by starting the MySQL in safe mode.
UPDATE user SET password=PASSWORD("new_password") WHERE User='root';
In the second case, the reason is MySQL allows user access only from hosts defined in the MySQL user table.
it can be resolved by starting the MySQL in safe mode and
UPDATE user SET host='hostname' WHERE user='username';

Cannot connect to mysql datavbase ERROR Access denied for user... (using password: YES)

Running a php script or trying to connect via terminal (locally) I get the same error
Access denied for user... (using password: YES)
mysql -u username -p'password' -h ip db_name
It passes to the server but get's blocked because of password although correct value was provided.
I've tried several fixes associated to this scenario but to no avail.
When a tried to execute some queries which could provide extra info for the fix, I get
1142 - SELECT command denied to user ... for table 'user'
I've assigned username, password and all privileges in cPanel MySql databases section (for the database) but am unable to connect using the created user as if a root user is blocking access to the database.
Am on GoDaddy host.
These are the only actions that I can preform on my database

MySQL said: Access denied for user 'root'#'localhost' (using password: NO)"

I am trying to create a database with Sequel Pro and it keeps coming up with an error "Unable to connect to host because access was denied.
Double-check your username and password and ensure that access from your current location is permitted.
MySQL said: Access denied for user 'root'#'localhost' (using password: NO)"
I have mySQL server running on my Mac. Not sure what I am doing wrong. Any help would be appreciated.
Newer versions of MySQL use a temporary password after setup, and you can use mysqladmin to set it to something permanent.
mysqladmin -u root -p password

Cannot log in to mysql using root

So I'm setting up mysql for the first time.
I read somewhere that I have to run this
mysql -u root -p
To log in as root, in order to be able to create tables/databases using the mysql command line.
When I run this, I get prompted for a password - I hit enter (I thought the default password was blank).
I get this error
ERROR 1045 (28000): Access denied for user 'root'#'localhost' (using password: NO)
What's going on?
If you have a fresh installation of MySql you should be able to issue the following command and it should allow your connection.
xyz#ubuntu$ mysql -u root mysql
You then should set the root password and then create a user with the correct level of access.
look HERE for help connecting.