mysql 新增使用者
1、建立使用者
mysql>create user username; // 沒有密碼,許可權為空,只能登入
2、直接插入使用者表
插入乙個使用者名為guest的使用者,許可權是所有庫的所有表都有查詢、插入、更新的許可權,可以登入的主機是localhost,密碼是guest123
mysql> insert into user(host, user, password,
select_priv, insert_priv, update_priv)
values ('localhost', 'guest',
password('guest123'), 'y', 'y', 'y');
query ok, 1 row affected (0.20 sec)
3、通過mysql的grant命令
使用者 zara ,密碼為 zara123 。密碼不能為空,否則建立失敗。
mysql> grant select,insert,update,delete,create,drop-> on *.*
-> to 'han'@'localhost'
-> identified by 'han123';
mysql使用者新增 MySQL使用者新增
我的是ubuntu 12.04。發現在mysql中經常出現新增使用者之後,要麼只能本地登陸,要麼只能遠端登陸的蛋疼的情況。這裡記錄一下是如何操作的。建立使用者 create user username identified by password 如果想要讓這個使用者即可以本地登陸,也可以遠端登 我...
mysql使用者新增 mysql新增使用者
mysql新增使用者 mysql新增使用者方法 建立資料庫gamesp create database gamesp 新增使用者 grant all on 資料庫名.to 使用者 名 localhost identified by 密碼 grant all on gamesp.to newuser ...
mysql新增 mysql新增使用者
增加新使用者 格式 grant select on 資料庫.to 使用者名稱 登入主機 identified by 密碼 例1 增加乙個使用者test1密碼為abc,讓他可以在任何主機上登入,並對所有資料庫有查詢 插入 修改 刪除的許可權。首先用以root使用者連入mysql,然後鍵入以下命令 gr...