Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 오라클
- Eclipse
- 주식 청약 일정
- 맥
- Stock
- 7월 공모주 청약 일정
- codeigniter
- MYSQL
- 공모주
- linux
- jquery
- SQL
- 주식
- JavaScript
- php
- 공모주 청약
- html
- 6월 공모주 청약 일정
- 코드이그나이터
- 공모주 청약 일정
- 자바스크립트
- css
- 자바
- 주식 청약
- IPO
- java
- 제이쿼리
- Stock ipo
- Oracle
- 리눅스
Archives
- Today
- Total
개발자의 끄적끄적
[sql/mysql] The user specified as a definer ('root'@'%') does not exist 해결방법 본문
개발/sql
[sql/mysql] The user specified as a definer ('root'@'%') does not exist 해결방법
효벨 2021. 3. 18. 03:00728x90
반응형
[sql/mysql] The user specified as a definer ('root'@'%') does not exist 해결방법
mysql 을 연동하여
프로젝트를 진행하던중 여러가지 오류들이 발생하기 마련입니다.
그중에 하나인 권한 관련 오류입니다.
쿼리문을 실행하고 나니 아래와 같은 에러메세지가 나오는 경우,
The user specified as a definer ('root'@'%') does not exist
권한이 없어서 문제가 발생되는 것이므로,
mysql 커맨드로 접속해서 아래와 같이 한줄 실생하면 적용이 완료됩니다!
grant all on *.* to 'root'@'%' identified by 'password' with grant option;
그리고 다시 실행해보면 정상적으로 동작하는것을
알수 있습니다!
참고들 하세요!
반응형
'개발 > sql' 카테고리의 다른 글
[sql/mysql] 최대 필드 갯수와 최대 용량 (0) | 2021.03.22 |
---|---|
[sql/mysql] 암호화 복호화 방법 / AES_ENCRYPT, AES_DECRYPT 사용법 및 예제 (0) | 2021.03.21 |
[sql/mysql] 맥 homebrew 로 설치된 mysql 삭제 방법 (0) | 2021.02.26 |
[sql/mysql] mysqli::real_connect(): The server requested authentication method unknown to the client [caching_sha2_password] 해결 방법 (0) | 2021.02.25 |
[sql/mysql] 맥 zsh: command not found: mysql 해결 방법 (0) | 2021.02.25 |
Comments