建立資料庫使用者及資料庫,并且賦予權限。
create user ‘wordpress’@’localhost’ identified by ‘wordpress';
create database wordpress default character set utf8 collate utf8_general_ci;
grant all on wordpress.* to ‘wordpress’@’localhost';
更改資料庫的通路權限,允許哪些主機使用哪個使用者名通路哪個資料庫。
update mysql.user set host=’%’ where host=’localhost';
grant all privileges on *.* to ‘root’@’%’ with grant option;
flush privileges;
本文轉自ting2junshui51CTO部落格,原文連結:http://blog.51cto.com/ting2junshui/1729688 ,如需轉載請自行聯系原作者