목차
목차
계정 생성
CREATE USER 'user'@'%' IDENTIFIED WITH mysql_native_password by '1234';
Your password does not satisfy the current policy requirements 오류 발생시
비밀번호 변경
ALTER USER 'user'@'%' IDENTIFIED WITH mysql_native_password by '1234';
계정에 대한 모든 권한 부여
GRANT ALL PRIVILEGES ON *.* TO 'user'@'%' WITH GRANT OPTION;
반응형
'database > Mysql' 카테고리의 다른 글
hombrew를 이용한 mysql 설치 (0) | 2023.10.08 |
---|---|
[mysql] 'Your password does not satisfy the current policy requirements' 오류 해결 방법 (0) | 2023.08.29 |
MySQL 사용법2 (0) | 2020.05.30 |
MySQL 사용법1 (0) | 2020.05.30 |
계정 생성
CREATE USER 'user'@'%' IDENTIFIED WITH mysql_native_password by '1234';
Your password does not satisfy the current policy requirements 오류 발생시
비밀번호 변경
ALTER USER 'user'@'%' IDENTIFIED WITH mysql_native_password by '1234';
계정에 대한 모든 권한 부여
GRANT ALL PRIVILEGES ON *.* TO 'user'@'%' WITH GRANT OPTION;
반응형
'database > Mysql' 카테고리의 다른 글
hombrew를 이용한 mysql 설치 (0) | 2023.10.08 |
---|---|
[mysql] 'Your password does not satisfy the current policy requirements' 오류 해결 방법 (0) | 2023.08.29 |
MySQL 사용법2 (0) | 2020.05.30 |
MySQL 사용법1 (0) | 2020.05.30 |