Home > Database > Mysql Tutorial > mysql 添加用户方法一

mysql 添加用户方法一

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-07 15:34:36
Original
1594 people have browsed it

一、用root登录 二、 GRANT ALL PRIVILEGES ON *.* TO admin@ '%' IDENTIFIED BY 'admin' ; ALL PRIVILEGES 为可以执行的操作,如:select, insert, update, deletc,create 等一系列权限, 如果只允许用户执行,查操作,可以写作: GRANT SELECT ON *.* TO u

一、用root登录

二、GRANT ALL PRIVILEGES ON *.* TO admin@'%' IDENTIFIED BY 'admin';

   ALL PRIVILEGES 为可以执行的操作,如:select, insert, update, deletc,create 等一系列权限,

   如果只允许用户执行,查操作,可以写作:GRANT SELECT ON *.* TO user1@'%' IDENTIFIED BY '123456'; 用户user1 密码123456 可以从任意电脑连接到服务器,只能执行查询操作。

   *.*为可以操作所有数据库与表,如要操作"web"数据库的"user"表,可以写成:web.user 

   admin@'%'为要添加的用户名 admin, @ 后为登录限制 %为可以任意电脑远程使用这个账号连接到服务器上,

   admin@x,y,z,w 此格式为IP限制,如;admin@192.168.1.2 ,只允许从192.168.1.2的机器连接到服务器上,

   BY 'admin' 这是密码,如果要设置为空密码,写作:BY '';即可。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Issues
MySQL stops process
From 1970-01-01 08:00:00
0
0
0
Error when installing mysql on linux
From 1970-01-01 08:00:00
0
0
0
phpstudy cannot start mysql?
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template