Error 1044: Access denied for user: '%s@127.0.0.1' to database '%s'
0
votes
0answers
886 views
“Error #1044 - Access denied for user” when importing .sql.zip file with phpMyAdmin
I am using phpMyAdmin to import a .sql.zip database file into a remote host server and am getting the following error message:
error #1044 - Access denied for user
After researching this error, ...
0
votes
1answer
958 views
How we can give permission to a user to create database in phpmyadmin(cPanel)?
I have a database and a user which is created through cpanel(i have added that user to that database and i am able to access that database using that user and its password. i have given all privileges ...
0
votes
3answers
1k views
Avoiding MySQL1044 error
I am trying to learn PHP and MySQL and while I reached a chapter on MySQL I was asked to create a database using this command:
CREATE DATABASE publications;
After I typed it in the mysql console I ...
0
votes
1answer
637 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
1
vote
1answer
517 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
2k 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:
...
0
votes
2answers
712 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
837 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 ...
2
votes
2answers
3k 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
3k 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
3answers
3k 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
147 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
546 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
564 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
275 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 ...
5
votes
5answers
15k 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
6answers
2k 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, ...
0
votes
6answers
2k 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
2k 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 ...
16
votes
10answers
16k 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 ...