轉
登入mysql
mysql -u root -p
允許本地 ip 訪問 localhost, 127.0.0.1
create user 'test'@'localhost' identified by '123456';
允許外網 ip 訪問
create user 'test'@'%' identified by '123456';
重新整理授權
flush privileges;
create database test default charset utf8 collate utf8_general_ci;
授予使用者通過外網ip對於該資料庫的全部許可權
grant all privileges on `testdb`.* to 'test'@'%' identified by '123456';
授予使用者在本地伺服器對該資料庫的全部許可權
grant all privileges on `testdb`.* to 'test'@'localhost' identified by '123456';
grant all privileges on *.* to 'root'@'%' identified by '123456';//容許遠端連線
重新整理許可權
flush privileges;
退出 root 重新登入
exit
用新帳號 test 重新登入,由於使用的是 % 任意ip連線,所以需要指定外部訪問ip
mysql -u test -h 115.28.203.224 -p
# instead of skip-networking the default is now to listen only on
# localhost which is more compatible and is not less secure.
#bind-address = 127.0.0.1 #注釋掉這一行就可以遠端登入了
不然會報如下錯誤:
error 2003 (hy000): can't connect to mysql server on 'host' (111)
注意:centos6.9 安裝mysql5.5不能遠端連線問題
service iptables stop
mysql 使用者管理 MySQL使用者管理
一 mysql使用者管理的必要性 如果我們只能使用root使用者,這樣安全隱患,這時,我們需要使用mysql的使用者管理技術.一次獲得 分配許可權user db tables priv columns priv 許可權範圍一次遞減,全域性許可權覆蓋區域性許可權。換句話說user表中的每個許可權都代表...
mysql授權 使用者管理 MySQL使用者管理 授權
建立使用者 命令 create user username host identified by password 說明 username 建立的使用者名稱 host 使用者可以在哪個主機上登入,任意主機選擇 password 使用者的密碼 例 create user arvin identifie...
MySQL使用者管理
mysql管理員應該知道如何設定mysql使用者賬號,指出哪個使用者可以連線伺服器,從 連線,連線後能做什麼。mysql 3.22.11開始引入兩條語句使得這項工作更容易做 grant語句建立mysql使用者並指定其許可權,而revoke語句刪除許可權。兩條語句扮演了mysql資料庫的前端角色,並提...