mysql 建立帳戶讓外網訪問

  1. //首先建立一個數據庫(we_data) ,若是已有數據庫,不須要此操做  
  2. mysql>create database we_data  
  3. //受權frady用戶擁有we_data數據庫的全部權限,但只能在本地訪問。   
  4. >grant all privileges on we_data.* to 'frady'@localhost  identified by '1234';   
  5. //刷新系統權限表   
  6. mysql>flush privileges;   


 

Java代碼  收藏代碼mysql

  1. /*   
  2. 若是想指定部分權限給一用戶,能夠這樣來寫:   
  3. mysql>grant select,update on we_data.* to 'frady'@localhost  identified by '1234';   
  4. //刷新系統權限表。   
  5. mysql>flush privileges;  



想讓frady用戶能夠遠程訪問we_data數據庫 sql

Java代碼  收藏代碼數據庫

  1. grant all privileges on we_data.* to 'frady'@'%' identified by 'youpasswd';  
相關文章
相關標籤/搜索