Home > Database > Mysql Tutorial > body text

远程用户连接mysql授权_MySQL

WBOY
Release: 2016-06-01 13:38:38
Original
890 people have browsed it

bitsCN.com


远程用户连接mysql授权

 

授权法:  

 

  在安装mysql的机器上运行: 

 

  1、d:/mysql/bin/>mysql -h localhost -u root 

 

  //这样应该可以进入MySQL服务器 

 

  2、mysql>GRANT ALL PRIVILEGES ON *.* TO 'root'@'%'WITH GRANT OPTION 

 

  //赋予任何主机访问数据的权限 

 

       例如,你想myuser使用mypassword从任何主机连接到mysql服务器的话。 

 

  GRANT ALL PRIVILEGES ON *.* TO 'myuser'@'%'IDENTIFIED BY 'mypassword' WITH GRANT OPTION; 

 

  如果你想允许用户myuser从ip为192.168.1.6的主机连接到mysql服务器,并使用mypassword作为密码 

 

  GRANT ALL PRIVILEGES ON *.* TO 'myuser'@'192.168.1.3'IDENTIFIED BY 'mypassword' WITH GRANT OPTION; 

 

  3、mysql>FLUSH PRIVILEGES 

 

  //修改生效 

 

  4、mysql>EXIT 
 

bitsCN.com
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template