MySQLユーザ管理

システムデータベース選択

 use mysql

確認

 SELECT host, user, password, grant_priv FROM user;

追加

スーパーユーザの追加(ローカルホストからの接続)

 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;

削除

 DELETE FROM user WHERE user = 'taro';

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