Mysql如何設定使用者指定ip地址運算元據庫

2020-09-28 12:00:18

Mysql設定使用者指定ip地址運算元據庫的方法:使用grant函數,語法為【grant priv_type on mysql.user to 'user'@'host' identified by 'password' with】。

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如何設定使用者指定ip地址運算元據庫的詳細內容,更多請關注TW511.COM其它相關文章!