MySQLデータベース権限の設定
1168 ワード
CREATE USER test IDENTIFIED BY 'test'
; grant select on .* to @ identified by " "
;grant select,insert,update,delete on *.* to test@"%" Identified by "test"
と入力します.grant select,insert,update,delete on mydb.* to test@localhost identified by "test"
にアクセスするしかない.grant select,insert,update,delete on mydb.* to test@localhost identified by ""
を消去するコマンドを打つことができます.grant select,insert,update,delete,create,drop on mydb.* to test@localhost identified by "test"
を有することを指定する.flush privileges
をリフレッシュします.select host,user from mysql.user
を表示する.