Home >Database >Mysql Tutorial >linux mysql jdbc 权限问题_MySQL

linux mysql jdbc 权限问题_MySQL

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-01 13:59:361100browse

首先进入  mysql  并以  root  登陆,随后输入如下内容。 
 mysql>  GRANT  ALL  PRIVILEGES  ON  [dbname].*  to  '[user]'@'[hostname]'   


      identified  by  '[password]'; 
  


异常: 
 
  当运行  DateTest  时屏幕提示  “Server  configuration  denies  access  to  data  source” 
 
解决方法: 
 
  首先进入  mysql  并以  root  登陆,随后输入如下内容。 
 
 
  mysql>  GRANT  ALL  PRIVILEGES  ON  [dbname].*  to  '[user]'@'[hostname]'   
      identified  by  '[password]'; 
  
 
  (注意:这里将  dbname  替换成你的数据库名称,在  DateTest  中是  test;将  user  替换成你的用户名,笔者的是  root;将  hostname  替换成  java  程序运行时所在的机器,笔者是在本机运行,即为'localhost';将  password  替换成你mysql中用户的密码,笔者的没有密码,即为''。) 

Statement:
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