在資料庫層面的安全性也尤為重要,但是往往很多人忽略了相關的設定,這裡以mysql為例
指定ip與使用者訪問資料庫指令:
create user 'user'@'192.168.1.100' identified by '******';
create database tdb;
grant all privileges on tdb.* to 'user'@'192.168.1.100' with grant option;
或者一條指令搞定
grant all privileges on tdb.* to 'user'@'192.168.1.100' identified by '123456' with grant option ;
mysql資料庫指定ip遠端訪問
1.登入 mysql u root p 之後輸入密碼進行登陸 2.許可權設定及說明 2.1新增遠端ip訪問許可權 grant all privileges on to root 192.168.199.99 identified by fefjay with grant option flush p...
mysql資料庫指定ip遠端訪問
1 登入 mysql u root p之後輸入密碼進行登陸 2 許可權設定及說明 新增遠端ip訪問許可權 grant all privileges on to root 192.168.199.99 identified by fefjay with grant option flush privi...
mysql資料庫指定ip遠端訪問
mysql u root p之後輸入密碼進行登陸 grant all privileges on to root 192.168.199.99 identified by fefjay with grant option flush privileges 第一行中,192.168.199.99是阿里...