首頁 > 資料庫 > mysql教程 > Mysql如何設定使用者指定ip位址操作資料庫

Mysql如何設定使用者指定ip位址操作資料庫

coldplay.xixi
發布: 2020-09-28 11:25:47
原創
4133 人瀏覽過

Mysql設定使用者指定ip位址操作資料庫的方法:使用grant函數,語法為【grant priv_type on mysql.user to 'user'@'host' identified by 'password' with】。

Mysql如何設定使用者指定ip位址操作資料庫

Mysql設定使用者指定ip位址操作資料庫的方法:

語法:

grant priv_type on mysql.user to 'user'@'host' identified by 'password' with grant option;
登入後複製
  • priv_type:代表允許操作資料庫的權限

  • user:代表資料庫使用者名稱

  • host:代表IP位址

  • password:代表設定的密碼

刷新user权限表:flush privileges;
登入後複製

三、案例

1、設定所有資料庫、所有表格、任意ip可以連接資料庫,授權給使用者名稱ping並設定密碼為123456

grant all on *.* to 'ping'@'%' identified by '123456';
flush privileges;
登入後複製

2、授權表cloud的記錄修改權限給連接ip位址是192.168.100.1和使用者名稱是ping並且密碼為123456

grant update(name,sex) on cloud to 'ping'@'192.168.100.1' identified by '123456';
flush privileges;
登入後複製

 

四、查看資料庫權限表

mysql> select * from mysql.user where host='localhost'\G;
*************************** 1. row ***************************
                 Host: localhost
                 User:
             Password:
          Select_priv: N
          Insert_priv: N
          Update_priv: N
          Delete_priv: N
          Create_priv: N
            Drop_priv: N
          Reload_priv: N
        Shutdown_priv: N
         Process_priv: N
            File_priv: N
           Grant_priv: N
      References_priv: N
           Index_priv: N
           Alter_priv: N
         Show_db_priv: N
           Super_priv: N
Create_tmp_table_priv: N
     Lock_tables_priv: N
         Execute_priv: N
      Repl_slave_priv: N
     Repl_client_priv: N
     Create_view_priv: N
       Show_view_priv: N
  Create_routine_priv: N
   Alter_routine_priv: N
     Create_user_priv: N
           Event_priv: N
         Trigger_priv: N
             ssl_type:
           ssl_cipher:
          x509_issuer:
         x509_subject:
        max_questions: 0
          max_updates: 0
      max_connections: 0
 max_user_connections: 0
登入後複製

#更多相關免費學習推薦:mysql教學

(影片)
######

以上是Mysql如何設定使用者指定ip位址操作資料庫的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板