일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- @PreAuthorize("isAuthenticated()")
- 친절한 SQL 튜닝
- 인텔리제이 Web 애플리케이션
- 함수
- SpringSecurity 로그아웃
- 자바의정석
- 연산자
- 반복문
- SQL
- 상속
- 오버라이딩
- 식별자
- StringBuffer
- 예약어
- java
- 객체지향
- SQL튜닝
- 비교 연산자
- spring 게시판 삭제
- SpringSecurity 로그인
- 산술 연산자
- join
- 배열
- 객체
- 친절한 SQL
- 이클립스 설치
- SQL 튜닝
- 논리 연산자
- 오버로딩
- 스프링시큐리티 로그아웃
Archives
- Today
- Total
gi_dor
MySQL dump 파일 Import 본문
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 |