[mysql] create user
CREATE DATABASE airflow;
CREATE USER 'admin'@'%' IDENTIFIED BY 'admin';
GRANT ALL PRIVILEGES ON airflow.* TO admin@'%';
https://bcdragonfly.tistory.com/27
[Django] _mysql' is not defined 호환에러 해결하기
[파이썬 장고] _mysql' is not defined 호환에러 해결하기 [Django] _mysql' is not defined 호환에러 해결하기 [Python Django] _mysql' is not defined 호환에러 해결하기 #ERROR version_info, _mysql.version_info, _mysql.__file__ NameE
bcdragonfly.tistory.com
https://jeeu147.tistory.com/133
[Python] No module named 'MySQLdb' 해결법
안녕하세요. 오늘은 No module named 'MySQLdb' 해결법에 대해 알아보려고 합니다. 해당 오류는 파이썬 프레임워크 Flask(플라스크) or Django(장고)에서 mysql로 연결하고자 할 때 나는 에러입니다. 인터넷에
jeeu147.tistory.com
How do I specify the password in the MYSQL connection URL?
I'm currently using this connection URL for MYSQL mysql://root:macbookair@localhost:3306/test_db and getting this error. [INFO] require: ./mysql [INFO] connecting [ERROR] Error: ER_ACCESS_DENIED...
stackoverflow.com
https://cjh5414.github.io/mysql-create-user/
Mysql 사용자 추가, 제거 및 권한 부여
Jihun's Development Blog
cjh5414.github.io