* MySQLユーザ管理 [#v13ac707]

** システムデータベース選択 [#t67b51db]
 use mysql

** 確認 [#d7dfcf43]
 SELECT host, user, password, grant_priv FROM user;

** 追加 [#pd218b97]
スーパーユーザの追加(ローカルホストからの接続)
 grant all privileges on *.* to taro@localhost with grant option;
スーパーユーザの追加(任意の他ホストからの接続)
 grant all privileges on *.* to taro@'%' with grant option;
パスワード付きのスーパーユーザの追加
 grant all privileges on *.* to taro@'%' identified by 'PASS' with grant option;
** 削除 [#eb91fc9b]
 DELETE FROM user WHERE user = 'taro';

トップ   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS