gi_dor

MySQL dump 파일 Import 본문

Tool

MySQL dump 파일 Import

기돌 2023. 9. 1. 14:39
728x90

팀프로젝트 이후  sql 파일 받아서 로컬에 Import

 

1. root 계정으로 접속

 

2. Administration 탭에서 Users and Privileges로 들어가기

3. Add Acount를 클릭

 

 

4. 원하는 계정명과 비밀번호를 입력하고 Apply를 누르면 생성됩니다.

5. Administrative Roles 에서 권한주기

6. Schema Privileges에서 Add Entry로 특정 스키마를 사용하고 싶을 때 

 

7. 연결하기

 

8.  server - Data Import

 9. Import

 

10.  에러 1 ❗

14:15:17 Restoring syusyu (brand)
Running: mysql.exe --defaults-file="C:\Users\Han\AppData\Local\Temp\tmp6dc4rv3c.cnf"  --protocol=tcp --host=127.0.0.1 --user=syusyu --port=3306 --default-character-set=utf8 --comments --database=syusyu < "C:\\Users\\Han\\Desktop\\syusyu_20230829.sql"
ERROR 1049 (42000): Unknown database 'syusyu'

Operation failed with exitcode 1
14:15:17 Import of C:\Users\Han\Desktop has finished with 1 errors

 

ERROR 1049 (42000): Unknown database 'syusyu'

오류는 MySQL 서버에서 syusyu라는 데이터베이스를 찾을 수 없다고 함

 

CREATE DATABASE syusyu;

 

11.  에러 2 ❗

14:18:19 Restoring syusyu (brand)
Running: mysql.exe --defaults-file="C:\Users\Han\AppData\Local\Temp\tmphkfx_61m.cnf"  --protocol=tcp --host=127.0.0.1 --user=syusyu --port=3306 --default-character-set=utf8 --comments --database=syusyu < "C:\\Users\\Han\\Desktop\\syusyu_20230829.sql"
ERROR 1142 (42000) at line 25: REFERENCES command denied to user 'syusyu'@'localhost' for table 'syusyu.member'

Operation failed with exitcode 1
14:18:19 Import of C:\Users\Han\Desktop has finished with 1 errors

 

ERROR 1142 (42000) at line 25: REFERENCES command denied to user 'syusyu'@'localhost' for table 'syusyu.member'
오류는 MySQL 사용자 syusyu 가 권한이 없다고함

 

전체 권한 부여하기

GRANT ALL PRIVILEGES ON syusyu.* TO 'syusyu'@'%';
FLUSH PRIVILEGES;

 

 

13. Import 다시

14:18:19 Restoring syusyu (brand)
Running: mysql.exe --defaults-file="C:\Users\Han\AppData\Local\Temp\tmphkfx_61m.cnf"  --protocol=tcp --host=127.0.0.1 --user=syusyu --port=3306 --default-character-set=utf8 --comments --database=syusyu < "C:\\Users\\Han\\Desktop\\syusyu_20230829.sql"
ERROR 1142 (42000) at line 25: REFERENCES command denied to user 'syusyu'@'localhost' for table 'syusyu.member'

Operation failed with exitcode 1
14:18:19 Import of C:\Users\Han\Desktop has finished with 1 errors




14:20:00 Restoring syusyu (brand)
Running: mysql.exe --defaults-file="C:\Users\Han\AppData\Local\Temp\tmpc_ldrfi2.cnf"  --protocol=tcp --host=127.0.0.1 --user=syusyu --port=3306 --default-character-set=utf8 --comments --database=syusyu < "C:\\Users\\Han\\Desktop\\syusyu_20230829.sql"
14:20:02 Import of C:\Users\Han\Desktop has finished

 

오류 해결후 , 권한 부여  Import 완성

728x90

'Tool' 카테고리의 다른 글

Oracle 설치 및 세팅  (0) 2023.12.04
Node.js 설치 및 적용  (0) 2023.10.23
이클립스 JDK 설치 , 글꼴 설정  (0) 2023.10.23
Oracle SQL Developer - DB Export 하기  (0) 2023.09.04
CmdER HERE 삭제  (0) 2023.06.20