System/OS
2013.04.25 12:58

[mysql] mysql user 생성시 ERROR 1364

Views 29398 Votes 0 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
MySQL에서 insert 구문을 통해 user 계정 생성 시 다음과 같은 오류가 생기는 경우.
ERROR 1364 (HY000): Field 'ssl_cipher' doesn't have a default value

Mysql 버전이 높아지면서 보안관련하여 필수항목으로 추가된 컬럼이 누락됐다는 오류이다.
User 생성시 Host, User ,Password, ssl_cipher, x509_issuer, x509_subject 를 입력 해 주어야 한다.
ssl_cipher, x509_issuer, x509_subject 값은 '' 빈값을 입력하면 된다.
mysql> insert into user (Host, User, Password, ssl_cipher, x509_issuer, x509_subject )
-> values('localhost','사용자명',password('비밀번호'),'','','');


MySQL 특정 버전에서 이런 오류가 생기는 경우 
ERROR 1364 (HY000): Field 'authentication_string' doesn't have a default value

MySQL 5.5 버전에서 user 생성시 authentication_string 필드를 추가해야 한다.
특별한 값이 지정되어 있지 않으면 빈 값('')으로 주면 된다.
insert into user (Host, User, Password, ssl_cipher, x509_issuer, x509_subject, authentication_string)
-> values('localhost','사용자명', password('비밀번호'),'','','','');

그리고 Password 필드가 없고 authentication_string 필드가 있을 경우,
authentication_string 필드가 Password 필드를 대체하도록 작성하면 된다.
insert into user (Host, User, authentication_string, ssl_cipher, x509_issuer, x509_subject)
-> values('localhost','사용자명', password('비밀번호'),'','','');



[출처] http://blog.naver.com/taiji567?Redirect=Log&logNo=122081014

?

List of Articles
No. Category Subject Author Date Views
601 Develop [ios] 네트워크 인디케이터(NetworkActivityIndicator) 작동 file hooni 2014.01.24 13485
600 Develop [ios] 동영상 플레이어 샘플 (for Local File) file hooni 2017.02.07 7134
599 Develop [ios] 동영상 플레이어 샘플 (for PIP Player) file hooni 2017.03.15 12922
598 Develop [ios] 동영상 플레이어 샘플 (for Remote Url) file hooni 2017.02.07 8174
597 Develop [ios] 디렉토리 하하하.. hooni 2013.04.23 33518
596 Develop [ios] 로컬에 있는 html 실행하기 hooni 2015.02.10 2192
595 Develop [ios] 로컬에 있는 JS 파일 웹뷰에서 동적으로 실행하기 hooni 2015.02.10 2188
594 Develop [ios] 문자열로 함수 실행하기 (eval 함수처럼) hooni 2015.02.10 1848
593 Develop [ios] 미스터피자(Mr.pizza) 어플 file hooni 2013.04.23 46884
592 Develop [ios] 배경에 Gradient 적용하기 (CAGradientLayer) file hooni 2024.12.14 3344
591 Develop [ios] 배열(NSArray) 연산과 간단한 애니메이션(split images) hooni 2013.10.31 52608
590 Develop [ios] 비동기 블럭 코드 예제 hooni 2014.11.21 1603
589 Develop [ios] 비디오,네트워크,소셜로그인 테스트 file hooni 2017.04.04 2285
588 Develop [ios] 상위 ViewController 가져오기 hooni 2015.10.12 2848
587 Develop [ios] 새로 만들고 있는 DateMemo file hooni 2016.07.12 1904
586 Develop [ios] 설정에서 푸시 알림(APNS) on/off 상태 확인 hooni 2015.04.28 3591
Board Pagination Prev 1 ... 35 36 37 38 39 ... 74 Next
/ 74