프로그래밍/SQL

MySQL에 DB를 생성하고 사용자를 추가하여 할당하는 방법

빨강토끼 2012. 3. 28. 09:21

> mysqladmin - u root -p create 생성할DB명


> mysql -u root -p

mysql> grant select, insert, update, delete, create. drop
      ->on 생성한DB명.* to '생성할유저명'@'localhost' identified by '사용할암호'

mysql> grant select, insert, update, delete, create. drop
      ->on 생성한DB명.* to '생성할유저명'@'%' identified by '사용할암호'


'%' 는 모든 외부연결을 허용합니다.