Example: ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)
18
votes
6answers
14k views
brew install mysql on mac os
I'm trying to setup up mysql on mac os 10.6 using Homebrew by brew install mysql 5.1.52
everything goes well and I am also successful with the mysql_install_db.
However when i try to connect to the ...
6
votes
4answers
5k views
How can I restore the MySQL root user’s full privileges?
I accidentally removed some of the privileges from my MySQL root user, including the ability to alter tables. Is there some way I can restore this user to its original state(with all privileges)?
...
6
votes
4answers
11k views
MySQL - ERROR 1045 - Access denied
In some way I have managed to get this error when I try to access into MySQL via the command line:
[root@localhost ~]# mysql -u root -p
Enter password:
ERROR 1045 (28000): Access denied for user ...
4
votes
2answers
478 views
Proper permissions for “SHOW TABLE STATUS” in MySQL
I can insert, update, delete, etc. to a table in my MySQL database but I cannot show the table status. Does anyone know which privilege(s) is needed to do this?
Here is my error message:
Access ...
4
votes
2answers
252 views
underscore in php db variable causing problems
I store all of my login information for databases in files outside of the public tree in variables such as
$hostname = '172.0.0.0';
$dbname = 'myname_mydbname';
$username = 'myname_user';
$pw = ...
4
votes
4answers
2k views
how to 'load data infile' on amazon RDS?
not sure if this is a question better suited for serverfault but I've been messing with amazon RDS lately and was having trouble getting 'file' privileges to my web host mysql user.
I'd assume that a ...
3
votes
1answer
1k 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:~ ...
3
votes
4answers
197 views
Connecting to MySQL on a different server
I have two servers (virtual machines - I can remotely connect to these) - server 1, and server 2.
On server 1 I keep my webpages, and on server 2, I keep the databases.
I am currently trying to ...
3
votes
1answer
243 views
Grant database user folder access
I'm trying to create a csv export of data from mysql using the following query:
SELECT * INTO OUTFILE '/tmp/result.csv'
FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"'
ESCAPED BY '\\'
LINES ...
3
votes
1answer
375 views
capistrano deploy: Access denied for user 'root'@'localhost' (using password: YES) (Mysql::Error)
I tried to deploy ror application on production server then got this error:
Access denied for user 'root'@'localhost' (using password: YES) (Mysql::Error)
but when i ran command:
rake db:migrate ...
3
votes
2answers
4k views
How to remove MySQL root password
I want to remove the password for user root in localhost. How can I do that? By mistake I have set the password of root user. That's why phpmyadmin is giving an error:
#1045 - Access denied for user ...
3
votes
3answers
1k views
access denied for load data infile in MySQL
I use MySQL queries all the time in PHP, but when I try LOAD DATA INFILE, I get the following error #1045 - Access denied for user 'user'@'localhost' (using password: YES)
Does anyone know what this ...
3
votes
3answers
2k views
Mysql permission errors with 'load data'
I am running into a permission error when trying to load data from a flat file database dump into a new table. I know that the schema of the file and my table is the same and I tried tweaking the ...
2
votes
3answers
328 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 ...
2
votes
2answers
697 views
Heroku db:push Sequel::DatabaseConnectionError -> Mysql::Error: Access denied for user 'reg'@'localhost ' (using password: NO)
I have a problem using the heroku db:push command to transfer a MySQL database to heroku. I've tried using the same command for another app with a sqlite3 database and everything went fine.
...
2
votes
4answers
7k views
Access denied for user 'root'@'localhost' (using password :YES) joomla install on windows 7 with web platform installer
I was trying to install Joomla on my machine .. so i ran the microsoft web platform and choose joomla Mysql and other tools went well .. BUT joomla it self isn't installed giving the following error :
...
2
votes
2answers
165 views
Why am I getting 'access denied for user' error in php?
I am running this code:
include '../includes/connection.php';
$conn = dbConnect('backup');
$tableName = 'orders';
$backupFile = '../backup/db-backup(' . $date . ').sql';
$query = "SELECT * ...
2
votes
2answers
372 views
Beginner MYSQL Error - Access Denied
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: N
O)
I've tried EVERYTHING, I've read through pages of answers and no-one seems to know the right one.
When i try to ...
2
votes
3answers
102 views
Problem starting up mySQL
I just downloaded PHP and I tried running mySQL with the command:
C:\Program Files\EasyPHP-5.3.2i\mySQL\bin\mysql.exe
And I got the error:
ERROR 1045 (28000): Acess denied for user ...
2
votes
3answers
231 views
mysql client connection hostname question
Have a question that I can't seem to find an answer for. I am trying to connect to a remote database. I type in the following to my Ubuntu shell:
mysql -u test -h mysql.domain.com -p
mysql asks ...
1
vote
1answer
134 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
128 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 ...
1
vote
4answers
401 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')) ...
1
vote
3answers
249 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 ...
1
vote
2answers
807 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 = ...
1
vote
2answers
577 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
219 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 ...
1
vote
1answer
410 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 ...
1
vote
2answers
401 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 ...
1
vote
1answer
392 views
MySql ERROR 1045 (00000): Access denied - different MySQL versions
I need to get an old MySQL Client (4.1) to connect to an even older MySQL Server (3.23).
The goal is to do a Java/JDBC connect to the old Linux/MySQL 3.23 database, in order to update text ...
1
vote
1answer
637 views
mysql_real_escape_string and Access denied for user 'ODBC'@'localhost'
I understand I need to connect to the db in order for mysql_real_escape_string to work, but not quite sure how.
I use this function to insert rows in tables.
function insert_db($conn, $table_name, ...
1
vote
2answers
302 views
Connecting to MySQL from a VB6 application
I am trying to connect to a local MySQL database from a VB6 application. Having read the answer given in this question, Connecting VB to MySQL I have set up my connection thus...
Private ...
1
vote
1answer
958 views
How to access remote mysql host on Ubuntu inside VMware?
I'm running Ubuntu 10.10 inside VMware fusion on Mac OSX Snow Leopard. Inside ubuntu, I'm attempting to use command-line mysql to connect to a database hosted on a separate web server. For some ...
1
vote
4answers
680 views
mysql_real_escape_string() A link to the server could not be established
I get this error when I try to use mysql_real_escape_string().
Access denied for user 'ODBC'@'localhost' (using password: NO)
I don't understand why I must be connected to the db to check if the ...
1
vote
1answer
1k views
MySQL command line won't open?
I just installed the latest version of MySQL. Until Now I had it on Windows XP but I wanted to install this on another computer with Windows 7.
Even after configuring everything correctly, the MySQL ...
1
vote
2answers
421 views
How to reset mysql root password?
I have a little problem with my phpmyadmin, in fact I accidentally delete multiple user accounts.
Since it is impossible to connect without the error:
# 1045 - Access denied for user 'root' @ ...
1
vote
5answers
216 views
PHP cant connect to MySQL
$link = mysql_connect('localhost', $username, $password);
if (!$link)
{
die('Could not connect: ' . mysql_error());
}
I get this error:
Could not connect: Access denied for user ...
1
vote
1answer
648 views
Mysql Master Master Replication
Server1: xxx.xxx.xxx.xxx
server-id=1
binlog-do-db=sample
master-host = xxx.xxx.xxx.xxx
master-user = someuser
master-password = somepassword
master-connect-retry = 60
relay-log = ...
1
vote
2answers
83 views
MySQL: creating a new user/trying to access the database
My problem is:
I had created a new user:GRANT ALL PRIVILAGES ON sampdb.* TO 'monty'@'' IDENTIFIED BY 'pass'
This user had appiared in two databases: mysql.user(with no privilages at all) and ...
1
vote
1answer
1k views
Cannot create PoolableConnectionFactory (Access denied for user ''@'localhost'
I have been trying to set up a DatabaseConnectionPool for a web app for the last couple of days with no success. I have read the relevant sections of the Tomcat docs and a great deal around the ...
1
vote
1answer
275 views
MySQL permission denied from local but can connect remotely
I am trying to connect to my mysql database on a remote server (via ssh) through the command:
mysql -u me -h mydomain.com -p
But it fails with a ERROR 1045 (28000): Access denied for user.. error
...
1
vote
2answers
297 views
MySQL Grant Problem
Why might the following grant statement fail to work?
grant all on kylie.* to 'kylie'@'localhost' identified by 'foo';
Here's the complete output.
$ mysql -A
Welcome to the MySQL monitor. ...
1
vote
4answers
265 views
Why do I get “Access denied for user 'root'@'myhostname” when connecting to my database in PHP?
I have set up an Apache server on mandriva linux 2010.1. But the problem is whenever I'm trying to connect with the database, it's giving me the following error:
Error:Database error: ...
1
vote
5answers
150 views
How to Connect to a Mysql database using PHP?
<?php
mysql_connect("localhost", "username", "password") or die(mysql_error());
echo "Connected to MySQL<br />";
?>
This is the code I am using to check if I am able to connect to Mysql.
...
1
vote
1answer
238 views
mysql_connect()
I am trying to connect to mysql and am getting an error.
I put my servers ip address in and used port 3306 whihch post should be used?
<?php
$connection = mysql_connect("serer.ip:port", "user", ...
1
vote
2answers
77 views
MySQL will connect on the command line with u/p but not mysqldump
It's driving me mad!
I can connect to my server's MySQL via Terminal using:
mysql -u admin -p and then password fine.
Trying the same with:
mysqldump --user admin --password=mypassword ...
1
vote
2answers
205 views
How to change root password to an empty one?
How can I change the root password to an empty one in MySql?
The following gives "Access denied for user 'root'@'localhost' (using password: YES)" error. I'm sure I've typed my password correct (it's ...
1
vote
2answers
2k views
Getting “Access denied for user 'root'@'localhost' (using password: NO)” in production mode and no errors getting logged
I deployed my Rails app and am getting 500 Errors on all pages. My production.log isn't showing anything (which is a problem), but I did a 'script/console production' and tried to run a simple query ...
1
vote
4answers
187 views
Warning: mysql_connect(): Access denied for user '‎‎u1'?
This is extremely basic and I apologize for asking such a rookie question.
But I a getting this error:
Warning: mysql_connect(): Access denied for user '‎‎u1'@'172.16.3.139' (using password: ...
1
vote
1answer
139 views
Logging in to MySQL via command line with unusual password
In MySQL, I have a user with a password that has a "<" in it.
CREATE USER me IDENTIFIED BY 'ab>cd';
I can log perfectly in using this username and password using the MySQL Query Browser. ...