Tagged Questions

Error 1044: Access denied for user: '%s@127.0.0.1' to database '%s'

learn more… | top users | synonyms

4
votes
10answers
8k views

Does mysqldump --password really do what it says?

I'm trying to use mysqldump to dump a schema, and it mostly works but I ran into one curiosity: the -p or --password option seems like it is doing something other than setting the password (as the man ...
3
votes
5answers
6k views

Mysql password hashing method old vs new

I'm trying to connect to a mysql server at dreamhost from a php scrip located in a server at slicehost (two different hosting companies). I need to do this so I can transfer new data at slicehost to ...
2
votes
5answers
533 views

PHP Script to Backup MySQL Database

I'm trying to write a PHP script to backup a MySQL database: if ( $db_resource = mysql_connect($db_server, $db_username, $db_password, $db_newlink) ) { if ( mysql_select_db( $db_name, ...
1
vote
1answer
40 views

Access denied in MySQL, even though GRANTS looks right

I'm trying to create a stored proc in MySQL. When I try and run it, I get the error: Access denied for user: '<myuser>' to database '<mydb>' However when I look at the GRANTS for this ...
1
vote
1answer
376 views

How can I run with root@localhost privileges in MySQL?

I'm trying to run a GRANT ALL statement: GRANT ALL ON daisyrepository.* TO daisy@localhost IDENTIFIED BY 'password_here'; I've ran this statement on the server itself using Remote Desktop using: ...
1
vote
1answer
719 views

Unable to import old database after reinstall (permission issue with information_schema)

I have recently re-installed my dev. computer. So what I did was make an export in phpmyadmin into an .sql file and backedup all the site files. Something that normally should be enough? Now my ...
0
votes
1answer
31 views

Debugging a mysql 1044 error

What is the best way to figure out the cause of a mysql 1044 error? ERROR 1044 (42000): Access denied for user 'web'@'%' to database some_db
0
votes
2answers
193 views

Access denied to mysql database

I created a database named auth yesterday in mysql. Today, I went to access it by USE auth; but I got this output ERROR 1044 (42000): Access denied for user ''@'localhost' to database 'auth' I ...
0
votes
1answer
296 views

Using variable to invoke MySQL in shell script

I'm creating a script that can be deployed to multiple administrators who would be able to run it with their own credentials. I'm getting an Access Denied error from mysql, however. It seems to ...
0
votes
1answer
771 views

MySQL permissions — can't create functions even with the 'CREATE ROUTINE' grant

When connecting to my server (from a different machine) I get Error Code: 1044 Access denied for user 'username'@'%' to database 'dbname' when I try to create a function. But when I look at my ...
0
votes
1answer
1k views

Granting the create view privilege in mysql using cpanel/myphpadmin

I am using cpanel and I wanted to grant a user create view privileges. When I created the user and database in cpanel it did not have an option for that. So I tried to do it in phpmyadmin using ...
0
votes
2answers
93 views

Problem connecting to external mysql database

My problem is this command produces an error when I tried to connect from our server to another external server : mysql -h db.hostname.com -u username -pP@ssword database_name And this is the error ...
0
votes
1answer
230 views

Lock out of mysql db thru webmin!

[root@cp ~]# mysql> CREATE DATABASE foo; [root@cp ~]# mysql> GRANT ALL ON foo.* TO root@'my home ip' IDENTIFIED BY 'aron1252'; [root@cp ~]# mysql> update user set Host='my home ip' where ...
0
votes
1answer
226 views

I can't set the root password for MySQL

I've just set up a LAMP server using SuSE Server 10. I want to set the root password for MySQL, so I entered the following in the terminal: mysqladmin -u root password MyPassword and the output is: ...
0
votes
1answer
124 views

MySQL import database fails

I have 2 MySQL databases 1_029f4ab_0 and 1_029f4ab_1 I want to copy the contents of 1_029f4ab_0 into 1_029f4ab_1 The structure of both databases are identical 1) I EXPORTED a wordpress database ...
0
votes
6answers
672 views

Can't set permissions on MySQL user

I am trying to set the permissions for a MySQL user using the following command. GRANT ALL ON joomla.* to user@localhost; I have tried so many versions but they all return: ERROR 1044 (42000): ...
0
votes
1answer
1k views

mysql import trouble using XAMP

originally i was using easyPHP (windows) then i switch to mac and used MAMP. i archive my db every once in a while and right before i reformatted. The export was made by going into the root of ...