Skip to main content

Solve MYSQL Error 1045 (28000): Access denied

Most of mysql users will face with a login error, when they try to login with another user name into mysql db on localhost. I am one of them. Typically, these commands are run:

> GRANT ALL ON *.* TO 'fatih'@'%' IDENTIFIED BY 'istanbul';
> quit;

Then, we try 'mysql -u fatih -p'. This ends with an error : 'ERROR 1045 (28000): Access denied for user 'fatih'@'localhost' (using password: YES)' 

It doesn't seem reasonable at first look and to figure what is going on out, passwords and grants are usually checked as first action. However, both will not work, because granted from '%' behaves unexpectedly if you try to login a mysql db in your computer. Since localhost is resolved to 127.0.0.1 in /etc/hosts file, mysql interprets the login attempt from user 'fatih' as fatih@localhost which doesn't have permission to authenticate.

There are two ways to handle this issue.

Specify another ip address to which any domain name is resolved in /etc/hosts file. Call command 'ifconfig', and pick up eth0 ipv4 address. When you call the command 'mysql -u fatih -p -h 12.12.12.1', you will be able to login. When you run 'select user()' command, you will get 'fatih@12.12.12.1' The point there, there should not be any line which do resolving for this particular ip address in /etc/hosts file.

As second option, you can give grants for a user from specific domain name. In this case, this domain name is localhost.

  • Login mysql shell with root user <root@localhost privilege is defined as default>. 
  • Run mysql command : "grant all privileges on *.* to fatih@localhost identified by 'istanbul';"
  • Quit mysql console, then login with user fatih : 'mysql -u faith -p'. Once you login, if you type select user();, you will see that you have been logged in as fatih@localhost.
A user from other hosts will be able to login if they are granted with '%'. But this will not work if login attempt and mysql server are in the same host. This article is for explaining this ambiguity.

Easy to do, hard to discover ;)


Comments

Popular posts from this blog

Migration from Proxmox to Openstack

I needed to migrate virtual machines in proxmox to openstack. VMs are in raw format. I needed to take some actions for a succesfull migration. I have perform all actions on Ubuntu 12.04 with virt-manager. qemu-kvm is installed. Here is the list of actions that I took: First, close the machine and copy the image file into your Ubuntu. Convert raw image to qcow2 format: qemu-img convert -O qcow2 image1.raw image1.qcow2 You need the image in qcow2 format for compatibility with openstack platform.  Open the converted image in virt-manager. Before opening, edit disk options. Under ' advanced options ' section, select ' qcow2 ' as ' storage forma t '. Start the virtual machine. You should see the login screen soon. (If you don't set storage format, vm will not find a bootable device. )   If everything is ok so far, close the vm. Take qcow2 image and upload it into glance. It may take time depending on size of it. After this process is completed, open a

Integration of MuPDF Project as a Library into an Android Studio Project

I have needed to use MuPDF library in my android project. After some research, I have seen that there are many integration tutorials but, but integrated projects are developed on Eclipse. For projects on AndroidStudio+Gradle, there is no example. I mean there is no specific example which exactly refers to this issue. So, after achieving my goal, I want to share the steps publicly so that it can be reused by others.

Xposed - How to hook a method with primitive-type parameter

Xposed Framework is a great tool to take actions which Android SDK doesn't provide for developers. One of the great hacks that you can do is hooking a method. You can see parameters given to a method, with many other properties of it. There are some tutorials on Internet, but in this tutorials, they show hooking method without parameters or with class parameters. Its code is: findAndHookMethod("com.android.settings.Settings", lpparam.classLoader, "updateHeaderList", List.class, new XC_MethodHook() { @Override protected void beforeHookedMethod(MethodHookParam param) throws Throwable { //your code } });