MySQL创建用户、授权等
时间:2014-07-13 22:15:30
收藏:0
阅读:201
用于MySQL5.6命令行执行成功:

create database wp_people; create user wp_people@‘localhost‘ identified by ‘yrwb‘ ; use mysql; update user set Password=PASSWORD("yrwb") where user=‘wp_people‘; grant all privileges on wp_people.* to wp_people@localhost identified by ‘yrwb‘; flush privileges;
评论(0)