1 使用具有数据库管理权限的用户登陆MySQL,如root@localehost用户$ mysql -uroot -p'root_password'2 在mysql中创建用户名和密码mysql> create user 'new_username'@'%' IDENTIFIED BY 'new_password'
;3 配置权限mysql> grant all privileges on *.* TO 'new_username'@'%' with grant option;4 提交并立即生效mysql> commit;mysql> flush privileges;5 退出mysqlmysql> quit完成