mysql에서 비밀번호를 변경할 때 일반적으로 쓰는 명령어
update user set password=password('q1w2e3') where user='root';
근데 이게
ERROR 1054 (42S22): Unknown column 'password' in 'field list'
에러가 발생할때가 있다..
이때는 password 대신 authentication_string 필드가 존재한다.
따라서
update user set authentication_string=password('q1w2e3') where user='root';
로 시도해본다.
'Develop Issue > Database' 카테고리의 다른 글
mysql 외부접속이 안될 때 해결방법 (예외적인 상황까지) (0) | 2019.03.05 |
---|