MySQL에 데이타베이스, 사용자추가

기억력이 나빠서.. 할때마다 문서찾기..

그냥 적어 놓으련다.

mysql> CREATE database 디비;
Query OK, 0 rows affected (0.00 sec)

mysql> GRANT all privileges on 디비.* TO 사용자@localhost
> IDENTIFIED BY ‘패스워드’;
Query OK, 0 rows affected (0.00 sec)

1 comment

    • snowffox on 2018년 8월 28일 at 4:37 오후
    • Reply

    아래와 같은 오류가 나는 경우

    mysql> grant all privileges on scanner.* to scanner@localhost identified by ‘scanner’;
    ERROR 1819 (HY000): Your password does not satisfy the current policy requirements

    validate_password를 제거하고 설정해도 된다.

    mysql> uninstall plugin validate_password;
    Query OK, 0 rows affected (0.00 sec)

    mysql> grant all privileges on scanner.* to scanner@localhost identified by ‘scanner’;
    Query OK, 0 rows affected, 1 warning (0.01 sec)

답글 남기기

Your email address will not be published.