ERROR 1045 (28000): Access denied for user '%s'@'%s' (using password: %s)

learn more… | top users | synonyms

0
votes
1answer
38 views

Mac MAMP mysql error 1045 (2800)

I see that this is a very common question throughout stack overflow. However, the answers to those questions have not helped much. I am still having the same errors I am new to MySQL. I'm going off a ...
0
votes
1answer
76 views

Access denied for user 'user'@'localhost' (using password: yes)

I'd found too many questions related to this problem still I'm having the same problem. I've installed MySQL Server from MYSQL::Download MYSQL Installer. Also, I've running xampp on my localhost. ...
-1
votes
0answers
37 views

Can only connect to mysql via “mysql -u root -h 127.0.0.1 -p” [closed]

im sorry if theres such thread already, all i found was "i forgot my credentials and cant log in", cause this is giving me the exact same error code, when i do as follows: Attempt 1: "mysql -u root ...
1
vote
1answer
72 views

Give non-root user access to log into phpMyAdmin

I'm attempting to give a non-root mysql user access to log into phpMyAdmin and only see the DB they have access to. I've already looked at the following articles and tried their advice: ...
0
votes
1answer
797 views

MySQL Error 1045, “Access denied for user 'user'@'localhost' (using password: YES)”

This question seem to be asked a lot however I cannot find a definitive answer. I am making some webapp tests using MySQL, and at the beginning I used the 'root' user (with a non-empty password). My ...
0
votes
0answers
89 views

local host phpmyadmin access error 1045

I have xampp set up on my Mac. Except that when I try to access phpmyadmin I receive the following error: 1045 - Access denied for user 'root'@'localhost' (using password: NO) I have researched some ...
0
votes
1answer
390 views

Error 1045: Access denied for user 'web_app_user'@'localhost' (using password: YES) [closed]

Running the command python manage.py syncdb I am trying to configure MySQL in Django, and I keep getting this error. Here is my database info: DATABASES = { 'default': { 'ENGINE': ...
0
votes
1answer
21 views

error code registration page

This code is to a registration page looks great, but again I get an error message after you typed the following code (below is the error message). I can not understand what is the error and how it ...
1
vote
1answer
191 views

cannot access mysql from phpmyadmin

I'm working on a dedicated OVH server, after installing everything needed (mysql, apache, php etc.) i've installed phpmyadmin (tried with adminer too) but it cannot access to the database. Each time ...
1
vote
0answers
126 views

mysql restarting

I cannot get into mysql because I get this message: ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO) I can get around that by killing mysql and restarting it ...
0
votes
3answers
1k views

ERROR 1045 (28000): Access Denied for 'root'@'localhost' (using password: YES)

I have been having issues with root password. sudo mysql -u root -p Enter password ERROR 1045 (28000): Access Denied for 'root@localhost' (using pasword: YES) I have been through this ...
0
votes
1answer
987 views

#1045 I can't log in to the MySQL server [closed]

I've tried to log in to phpMyAdmin a million times and have tried changing passwords, roots, disabling/enabling things. Here's what my config.inc.php file looks like. <?php /* * Generated ...
0
votes
0answers
85 views

MySQL error 1045 after installation with the Microsoft webplatform [closed]

I get the 1045 error after the installation of mySQL via the Microsoft webplatform. The mySQL doesn't get my password that I insert earlier. I use the Microsoft Webmatrix if it got to do with ...
1
vote
2answers
2k views

Access denied for user 'user'@'localhost' on MySQL

I'm trying connect me to database MySQL server but the console show me ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES) I don't know why. Please help me. In my file ...
1
vote
1answer
115 views

I can't create a new user in MySQL, and I can't access it

I have MAMP installed on my mac, and perhaps without realizing it, I must've changed something, because whenever I enter into the terminal: /Applications/MAMP/Library/bin/mysql --host=localhost ...
0
votes
1answer
647 views

Terminal mysql -v gives Access Denied Error 1045 (28000)

When I try to check the mysql version using terminal I get the following error. KillBill:~ KillBill$ mysql -v ERROR 1045 (28000): Access denied for user 'KillBill'@'localhost' (using password: NO) ...
0
votes
0answers
705 views

CPANEL #1045 - Access denied for user 'root'@'localhost' (using password: NO) [closed]

I really don't know what happen, but when I look at my site I got the error Unable to connect to database, then I check on my CPANEL and look at my phpmyadmin, then I've got this error >#1045 - Access ...
2
votes
1answer
92 views

can access my sql without using password but cannot access with password

I create a new mysql user by using CREATE USER 'new-username'@'localhost' IDENTIFIED BY 'new-password'; GRANT ALL ON *.* TO 'new-username'@'localhost' WITH GRANT OPTION; And I can access mysql by ...
1
vote
7answers
17k views

MySQL said: Documentation #1045 - Access denied for user 'root'@'localhost' (using password: NO)

i install xampp,but when i try to run it i got error said that like this : Error MySQL said: Documentation 1045 - Access denied for user 'root'@'localhost' (using password: NO) Connection for ...
1
vote
1answer
1k views

MySQL 1045 error - access denied - very stubborn

I have the following situation trying to start MySQL for my Rails 3 project: > mysql > SHOW GRANTS for 'root'@'localhost' ERROR 1044 (42000): Access denied for user ''@'localhost' to database ...
1
vote
5answers
4k views

MySQL Error Access denied for user using password NO

I keep getting this error: Warning: mysql_query() [function.mysql-query]: Access denied for user 'mcabinet'@'localhost' (using password: NO) in ...
0
votes
0answers
221 views

how to grant all revoked privileges for admin

i have accidentally revoked all privileges when i was logged in as admin in mysql. and now it says access denied for all operations. how to reset this? for example, grant all privileges on . to ...
16
votes
6answers
62k views

Access denied for user 'root'@'localhost' while attempting to grant privileges. How do I grant privileges?

My apologies for the length of the post. I've looked at a number of similar questions and so I'm demonstrating that I've checked the basics. Though of course, that doesn't mean I haven't missed ...
0
votes
3answers
715 views

Database Login Failed, Mysql, html, and php

I am trying to work on getting better at making HTML forms using PHP and Mysql databases so I decided to make a little mock-up website to do some experiments and things like that. I decided that the ...
2
votes
1answer
4k views

MySQL access denied 1045 error

I'm getting a very strange error, I've created a user 'testuser' with the following credentials: CREATE USER 'testuser'@'%' IDENTIFIED BY '123456'; GRANT ALL PRIVILEGES ON *.* TO 'testuser'@'%'; ...
1
vote
2answers
357 views

MySQL GRANT to User@'host' not behaving as expected

EDIT: I reinstalled MySQL and this fixed itself. No idea what the issue was. I ran the following commands in MySQL from the command line: 1. REVOKE ALL PRIVILEGES ON MyDB.* FROM user@'%'; 2. DROP ...
0
votes
3answers
2k views

FILE privilege to MySQL session/user

When someone is registerd in my MySQL database, this function must work: mysql_query("SELECT mail FROM users INTO OUTFILE 'test.txt'"); But I get the error ...
0
votes
1answer
1k views

wamp mySQL error

I have recently installed Windows Web Matrix in order to use Joomla but then I was instructed to download wamp instead. However I had problems installing it and then I figured that it was because Web ...
0
votes
3answers
519 views

XAMPP Upgrade - Error #1045 on Creating New User

I'm trying to upgrade my XAMPP from 1.7.3 to 1.7.4 (xampp-win32-1.7.4-VC6-installer.exe). I had already backed up the htdocs & mysql/data folders. I uninstalled XAMPP & deleted the remaining ...
0
votes
3answers
4k views

mysqlimport: Error: 1045, Access denied

Does anyone know why I get this error when running mysqlimport? mysqlimport -u someone -pwhatever --columns=a,b,c,d,e bar /var/tmp/baz.sql mysqlimport: Error: 1045, Access denied for user ...
0
votes
1answer
263 views

php/mysql - access denied despite correct data

i'm having a very strange problem: i've set up a server, defined a db-password, installed phpmyadmin which is working. but when trying to run a php-script which opens a database, i'm getting this ...
0
votes
2answers
2k views

Why do I get an error when using LOAD DATA INFILE?

I'm trying to use SQL to upload a csv file from my laptop to a database, however I get a strange error. The code I am typing into the SQL window in phpMyAdmin is as follows: LOAD DATA INFILE ...
1
vote
4answers
2k views

I'm trying to connect to a mysql database using PHP but it won't work

I've Installed mysql, php, apache using a wamp configuration Where to access localhost is would be http://localhost:81 the PHP script I'm using is if(mysql_connect('localhost', 'root', 'exobytes15')) ...
2
votes
3answers
3k views

Is there any way to catch MySQL and database errors in PHP?

Sometimes I am getting a database error like Warning: mysql_connect() [function.mysql-connect]: Access denied for user 'test'@'101.190.193.83' (using password: YES) Could not connect: Access ...
7
votes
3answers
11k views

MYSQL into outfile “access denied” - but my user has “ALL” access.. and the folder is CHMOD 777

Any ideas? SELECT * INTO OUTFILE '/home/myacnt/docs/mysqlCSVtest.csv' FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '*' LINES TERMINATED BY '\n' FROM tbl_property WHERE managerGroupID = ...
4
votes
3answers
6k views

MySQL reinstalled, but root password still there and I forgot it

I forgot my root password in MySQL 5.1 on Windows 7 I uninstalled and deleted the MySQL directory in Program Files Then I installed 5.5, but get error 1045, saying: Access denied for user: ...
1
vote
1answer
332 views

Phpseclib connect MYSQL server

I want to connect to my remote Mysql server through port forwarding. Unfortunately my hosting provider don't have php_ssh2 installed on the server so I have to work through phpseclib library. So far I ...
0
votes
2answers
653 views

Ruby on Rails having a rough time connecting to MySQL

I'm having a hard time getting Ruby to connect to mySQL. I can get MYSQL to connect using the mySQL workbench, so that's good. Here is the error I'm getting when I try to run DBConsole. ...
1
vote
1answer
565 views

MySQL Grant User Privileges Error

I have a question regarding how to grant privileges MySQL user accounts. I have a MySQL user account, and in my example code I would like to grant privileges to the whole database. When I run the ...
0
votes
1answer
75 views

php connection error?

Could not connect Server: Access denied for user 'markwayt_mar'@'localhost' (using password: YES) When I run PHP index file I get the above error. Anyone have a solution for this?
1
vote
1answer
571 views

Can't access MySQL database in Django VirtualEnv on localhost

I have had a virtualenv for Trunk up and running for a while, but now I am trying to branch, and get things setup on another virtualenv for my 'refactor' branch. Everything looks to be setup ...
0
votes
3answers
2k views

Access denied for user 'someuser'@'localhost' (using password: YES)

I have created a database by name 'somedatabase' in mysql CREATE DATABASE somedatabase; GRANT ALL ON somedatabase.* TO 'someuser'@'localhost' IDENTIFIED BY 'somepassword'; but when i try to access ...
2
votes
3answers
2k views

MySql Python connect

I'm trying to connect python with MySQL, but I get this error: OperationalError: (1045, "Access denied for user 'root'@'localhost' (using password: NO)") I'm trying to solve it for 6 hours and I ...
2
votes
2answers
3k views

PhpMyAdmin password

I get the error #1045 - Access denied for user 'root'@'localhost' (using password: NO) after I accidentaly changed the password in phpmyadmin for root and 127.0.0.1 . the problem is i cannot change ...
0
votes
2answers
758 views

mysql password not working [duplicate]

Possible Duplicate: How to reset mysql root password ? I executed the query UPDATE mysql.users set password= PASSWORD('123456') WHERE users='root' and host='localhost'; flush priviledges; ...
0
votes
3answers
2k views

Error when trying to execute a Python program that uses MySQL

I have a python program which makes use of MySQL database. I am getting following error. It would be very grateful if some one help me out a solution. Traceback (most recent call last): File ...
1
vote
7answers
2k views

access is denied for user 'root'@localhost mysql error 1045

I am new to PHP. I get the following error when executing my application: In phpMyadmin the code is like this $cfg['Servers'][$i]['auth_type'] = 'config'; $cfg['Servers'][$i]['user'] = 'root'; ...
1
vote
2answers
795 views

phpMyAdmin Access denied [closed]

phpMyAdmin give this error. Error MySQL said: 1045 - Access denied for user 'root'@'localhost' (using password: YES) phpMyAdmin tried to connect to the MySQL server, and the server rejected the ...
0
votes
1answer
66 views

New complete install of MySQL on Win7. Didn't prompt for username?

The detailed Oracle setup that followed the beginning installation prompted me for a password, and to reenter that, but never asked what a username should be. So I don't know what mine is. It's 7 ...
3
votes
1answer
2k views

brew install mysql on snow leopard not quite working

I installed mysql via brew, looks like the install went ok. Mysql will not let me set root password, even if I get tricky. Appears as though tables are missing altogether. Detailed output below. jb:~ ...

1 2 3