MySQLユーザ管理

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

 use mysql

ユーザ確認

 SELECT host, user, password, grant_priv FROM user

ユーザ追加

ローカルホスト(192.168.0.0./24)から、foo_dbデータベースへの接続できるユーザ

 grant all privileges on foo_db.* to taro@localhost
 grant all privileges on foo_db.* to taro@'192.168.0.0/255.255.255.0'

任意のホストから、すべてのデータベースへの接続できるユーザ

 grant all privileges on *.* to taro@'%'

パスワード付きのユーザ

 grant all privileges on *.* to taro@'%' identified by 'PASS';

ユーザ追加できる権限を与えたい場合は、「WITH GRANT OPTION」を付ける。 http://dev.mysql.com/doc/refman/5.1/ja/adding-users.html

アクセス制御

http://dev.mysql.com/doc/refman/5.1/ja/connection-access.html

ユーザ削除

 DELETE FROM user WHERE user = 'taro';

ユーザパスワード更新

 SET PASSWORD FOR 'bob'@'%.loc.gov' = PASSWORD('newpass');

UPDATE文を使ってもよい。

mysqladminコマンドを使って

シェルで

 mysqladmin -u root password 'new-password'
 mysqladmin -u root -h taro password 'new-password'

参考


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