180 questions
1 vote
0 answers
29 views
I connected apache 4433,8012 and mysql 8012 but phpmyadmin says I don't have enough permissions [duplicate]
I connected apache 4433,8012 and mysql 8012 but phpmyadmin says I don't have enough permissions. I just tried to open phpmyadmin with xampp but phpmyadmin says i don't have enough access rights even ...
0 votes
1 answer
1k views
mysql.connector.errors.ProgrammingError: 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)
I'm trying to connect database for my login page, using Xampp server (myphpadmin) The python code as follows: run.py from application import app if __name__=="__main__": app.run(host ='...
3 votes
2 answers
3k views
<Mac M1> Mysql ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)
I've tried everything I've even uninstalled and installed versions MySQL 8.0.0 all the way up to 8.0.28. I'm on a Mac M1 Here's what I've tried: mysql -u root -p Applied Password from the install* ...
2 votes
1 answer
4k views
mysql-connector-python error 1045 (28000): Access denied for user using password: YES
I am having trouble connecting to a mysql / mariadb database. I am getting the following error in jupyter lab: ProgrammingError: 1045 (28000): Access denied for user 'xx'@'yy' (using password: YES) ...
0 votes
1 answer
733 views
Cannot connect to database server-MySQL problem
I tried everything to solve this problem but it's still not solved. I keep getting this error: ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO) I'm pretty sure I'm ...
0 votes
0 answers
199 views
MYSQL database connection in my Mac isn't succeeding [duplicate]
I’m using a Mac Book Pro with big sur os. I’m using MySQL as my database service and XAMPP as my local host. Below is how I tried to establish the database connection using php. <?php $username = &...
1 vote
1 answer
603 views
Cannot connect to MySQL in Python program
I am trying to establish a connection with a MySQL database in a python program import mysql.connector cnx = mysql.connector.connect( host='localhost', user='admin', password='admin1234', ...
8 votes
7 answers
20k views
MySQL Running SQL Script error - [WinError 32] The process cannot access the file because it is being used by another process:
I am getting an error while running a SQL script to load data. Error is pasted below: Preparing... [WinError 32] The process cannot access the file because it is being used by another process: 'C:\\...
0 votes
0 answers
1k views
pymysql.err.OperationalError: (1045, "Access denied for user 'admin'@'xx.153.63.4' (using password: YES)")
I am new in MySQL. I also checked other questions related with this one I couldn't solve it. This is my command: C:\Users\username\temp\Excercise\RDSQuery>python handler.py And this is result I ...
0 votes
2 answers
6k views
Zabbix Server Connection to Database failed (ERROR Z3001 [1045]
I got a Problem with my Zabbix Server. He was running the days ago, and then the dashboard shows up: Zabbix Server is running --> Value NO And: Zabbix server is not running the information ...
0 votes
1 answer
419 views
ERROR 1045 - A big problem with the access to my mysql db
I was trying to execute "python manage.py migrate" in my project directory made in django. The output was: django.db.utils.OperationalError: (1045, "Access denied for user 'root'@'...
0 votes
0 answers
676 views
ERROR 1045 (28000): Access denied for user 'root'@'%' for mysql
I have two servers(RHEL) and both of them have mysql installed and configured(5.7.23-enterprise-commercial). When I am login to mysql in first server and tried this: mysql> SHOW GRANTS FOR 'root'@'...
1 vote
4 answers
13k views
Cannot connect to MySQL Database using the WAMP server
I am new to programming and I'm totally stuck, so I thought I will ask experienced programmers for help. I created a SQL database called "books" using phpMyadmin on WAMP server. The database and its ...
0 votes
1 answer
307 views
I'm not able to connect to mysql server ERROR 1045 (28000)
I installed MySql server for a class, when I attempt to connect to the server the following error message appear: PS C:\WINDOWS\system32> mysql -u root -p Enter password: hinreIsThePassword ERROR ...
2 votes
1 answer
5k views
How to solve My SQL ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)
I know there are already similar questions and I tried each of the solutions but somehow nothing seems to help. Maybe anyone has an idea what is going on. I am very new to the programming world and ...