1. 程式人生 > >mysql 新增使用者並授權訪問指定資料庫,同時限制登入為指定IP段

mysql 新增使用者並授權訪問指定資料庫,同時限制登入為指定IP段

記錄下以備查。

create user 'user'@'192.168.104.%' identified by '******';
create database database;
grant all privileges on `database`.* to 'user'@'192.168.104.%' with grant option;