개발/DB
-
[MySQL] OSError: mysql_config not found개발/DB 2021. 8. 18. 20:24
OSError: mysql_config not found mysql_config --version mariadb_config --version mysql_config --libs ----------------------------------------Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-jvxxlu7h/mysqlclient/장고 개발 환경 세팅 중 위와 같은 오류가 발생했다.이 전에 mysql-server를 설치해놓은 상태인데 에러가 나서 당황했다.파이썬에서 사용할 관련 패키지가 설치되어있지 않아 발생하는 오류라고 한다.$ which mysql_config$ pip3 inst..
-
MySQL 명령어개발/DB 2021. 8. 15. 23:33
로그인 $ mysql -u 유저_ID -p DB 사용 > use _DB명_ 테이블 정보 > desc _테이블명_ 패스워드 변경 alter user '유저명'@'호스트' identified with mysql_native_password by '비밀번호'; alter user 'root'@'localhost' identified with mysql_native_password by '1111'; 유저 생성 create user 'userid'@'%' identified by 'userpw'; //외부 접근 허용 create user 'userid'@'localhost' identified by 'userpw'; //내부 접근 데이터베이스 권한 부여 모든 권한 부여 GRANT ALL privileges ON..