ER_ACCESS_DENIED_ERROR when connecting to Mysql database [closed] - mysql

Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 5 years ago.
Improve this question
hello, i am trying to connect to my Mysql database but i get this error : MySQL error: Error: ER_ACCESS_DENIED_ERROR: Access denied for user 'hulken3'#'localhost' (using password: YES)
I have given this user "hulken3" all privileges but it's still not working,

You may need to give privilege to new user, so connect as root user and grant permission. Hope information in below site, gives you instruction on how to do that
http://dev.mysql.com/doc/refman/5.5/en/adding-users.html

My problem was that my Domain provider was blocking connections to the Mysql database. Thanks for your answers!

Related

I am getting errors while fetching APIs from FE regarding MySQL database connection [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 2 days ago.
Improve this question
I ran following commands in MySql command line
grant all privileges on . to root#localhost;
flush privileges;
but it didn't work
How to grant all permissions to all users no need of thinking about security I just want to start this project immediately on my local machine
And in console onclick the signup button this error occuring(img 2)
I am tried several command to grant permission I don't succeed.

Centos mysql access remote [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 7 years ago.
Improve this question
I could before login with the username : username, and no password.
then it stopped working, created another account, so it worked for a while. Then it randomly stopped.
Now the users are ( from ssh)
i tired to login with the user root, omg, username ( host %), and also tried on root and testacc on the ip adresses. but nothing works. ( i am 100% sure i was using the right passwords)
I get this while trying to connect with one of the users:
Q: How can i make this work? why wont it work out of suddenly? and could someone tell me more about how this acually works?
You need to GRANT access from outside in mysql.
Go to mysql server and login as root user.
Run GRANT ALL ON db_name.* TO 'user'#'81.167.51.107' IDENTIFIED BY 'password' for access from particular IP address or GRANT ALL ON db_name.* TO 'user'#'%' IDENTIFIED BY 'password' for any IP address.

What does a mysql server id look like? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about programming within the scope defined in the help center.
Closed 8 years ago.
Improve this question
I am trying to connect to mysql server on one.com's phpmyadmin.
I am using dreamweaver setting up (atleast trying) mysql connection, but i don't know what to put in the 'mysql server' box.
Any help please?
Thanks in advance!
An ip address (192.168.xxx.xxx) or server name.
It's either the hostname (eg. localhost or mysql.example.com) or the IP of the server (eg. 127.0.0.1). You can find example values in the documentation:
MySQL Server: mysql1.myDomain.com
User Name: dbuser
Password: myPassword

Mysql remote connection [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I have two mysql db . One is 10.0.3.129, another is 10.0.3.139. I want to connect 10.0.3.129 from 10.0.3.139. Could someone tell me what should I do with 10.0.3.139 and 10.0.3.129 ? ? Thank you .
Make sure that MySQL port is open for connection from 10.0.3.139 to 10.0.3.129, verify using
telnet 10.0.3.129:<MySQL port> where you have configured your server.
Create a MySQL user in 10.0.3.139 like:
Create MySQL user in server by executing this query
CREATE USER 'test'#'10.0.3.139' IDENTIFIED BY 'test123';
and given proper permission to this user by using GRANT syntax.
Now try to connect using MySQL command line or any GUI tool from 10.0.3.139, it should work.

Setting mysql server name with and without www [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I am using a mysql server on my linux ubuntu 10.04.
Everything is working fine, when I use example.com as the mysql server name.
When I use www.example.com as the mysql server name, the connection does not work. Where can I change the settings.
The URL of my website is working with www and without.
Is the mysql server name a setting in the mysql configuration or is it the hostname of my domain?
You can check your MySQL servers users table. When you see the user, edit it and set this value for the host he/she can connect to:
%example.com
The % is a wildcard for everything in front of "example.com". The second alternative is to add a new user<->host combination via CREATE USER http://dev.mysql.com/doc/refman/5.1/en/create-user.html
BUT ATTENTION: You should never, never, never connect to your MySQL from outside localhost. And if so, use an SSH Tunnel to do so.