DB(DataBase)(5)
-
[mysql] RuntimeError: Unable to execute command chcp.
맨아래 보시면 해결방법 2가지 있습니다. mysql-installer-community-8.0.26.0 mysql-installer-community-8.0.25.0 mysql-installer-community-8.0.24.0 mysql-installer-community-8.0.23.0 Could not acquire management access for administration RuntimeError: Unable to execute command chcp. PATH C:\Windows\system32 를 추가하라고 나온다. 1. PATH 설정을 해보자. 제어판 > 시스템 및 보안 > 시스템 > 고급시스템 설정 실패 이미 C:\Windows\system32 가 있는걸 볼 수 있다. 실패 서비스 ..
2021.08.27 -
[SQLAlchemy 1.4/ 2.0] 정의, 구조 ,사용법
▼▼▼SQLAlchemy 1.4, 2.0 documentation▼▼▼ Migrating to SQLAlchemy 2.0 — SQLAlchemy 1.4 Documentation In SQLAlchemy 1.x, the following statements will automatically commit the underlying DBAPI transaction, but in SQLAlchemy 2.0 this will not occur: The common workaround for custom DML that requires commit, the “autocommit” execution option, will be rem docs.sqlalchemy.org SQLAlchemy1.4 버전이 Python 2..
2021.08.25 -
마이에스큐엘 (MySQL) 설치
윈도우(Window) 1. 아래 링크에서 두번째 다운로드 받는다. https://downloads.mysql.com/archives/installer/ MySQL :: Download MySQL Installer (Archived Versions) Please note that these are old versions. New releases will have recent bug fixes and features! To download the latest release of MySQL Installer, please visit MySQL Downloads. MySQL open source software is provided under the GPL License. downloads.mysql.com 2..
2021.05.22 -
ERROR 2002 (HY000): Can't connect to local MySQL server through socket
MySQL 시작방법 mysql -u root -p ERROR 2002 (HY000): Can't connect to local MySQL server through socket 서버가 꺼저 있다. 시작시켜주자 터미널에(terminal) mysql.server start
2020.08.17 -
[MySQL] 저장 경로 변경 저장위치 변경
1.C:\ProgramData\MySQL\MySQL Server 8.0으로 들어간다 C:\ProgramData\MySQL\MySQL Server 8.0 my.ini 오른쪽 클릭 후 편집 선택 2 my.ini 파일을 선택 후 편집 ctrl + f 누른후 datadir 검색 datadir=저장 할 위치 디렉터리 3. 윈도우 검색에 cmd 입력 후 관리자 권한으로 실행 (또는 윈도우 + r 키 누른 후 cmd 입력) 4. net stop mysql80 5. xcopy "C:\ProgramData\MySQL\MySQL Server 8.0" 저장할 위치 예시: xcopy "C:\ProgramData\MySQL\MySQL Server 8.0" D:\Data /s 6. 커맨드 창에 net start mysql80 7..
2020.07.13