格式:grant select on 数据库.* to 用户名@登录主机 identified by "密码" 例1.增加一个用户user_1密码为123,让他可以在任何主机上登录,并对所有数据库有查询.插入.修改.删除的权限.首先用以root用户连入MySQL,然后键入以下命令: mysql> grant select,insert,update,delete on *.* to wuyou@'%' identified by '123'; mysql> flush pr…
Mysql添加用户使用可以对mysql数据库用户表有操作权限的用户名登陆mysqlinsert into user(Host,User,Password) values('%','name','password');如果work用户没有登陆权限,则killall mysqldshare/mysql/mysql.server startgrant all on *.* to work@'%' identified by "password"; MySQL赋予用户权限的命令的简单格式为gr…
第一步:登陆linux,在终端登陆mysql #mysql -u root -p 第二步:查询系统用户列表并进行添加用户 mysql>select host,user,password from mysql.user; mysql>grant all on *.* to 用户名@"%" identified by "您的密码"或mysql>grant all privileges on *.* to 用户名@域 identified by &quo…
1.本地环境 CentOS Linux release 7.5.1804 (Core) mysql Ver 14.14 Distrib 5.7.22, for Linux (x86_64) using EditLine wrapper 2.以root用户登录Mysql mysql -uroot -proot 3.切换到mysql数据库 use mysql 4.添加用户 //只允许指定ip连接 create user '新用户名'@'localhost' identified by '密码'; /…