賬戶管理
1.建立使用者授權
grant 許可權列表 on 資料庫 to 『使用者名稱』@『訪問主機』 identified by 『密碼』
2.建立laowang的賬號,密碼為123456,只能通過本地訪問,並且只能對jing_dong資料庫鐘所有的表進行 讀 操作
mysql -uroot -p
grant select on jing_dong.* to 『laowang』@『localhost』 identified by 『123456』;
3.建立乙個laoli的賬號,密碼為12345678,可以任意電腦進行鏈結訪問,並且對jing_dong資料庫中的所有表擁有所有許可權
grant all privileges on jing_dong.* to 『laoli』@』%』 identified by 『12345678』
4.修改許可權
grant 許可權名稱 on 資料庫 to 『使用者名稱』@『訪問主機』 with grant option;
flush privileges
5.修改密碼
update user set authentication_string=password(『新密碼』) where user=『使用者名稱』
6.遠端登入
vim /etc/mysql/mysql.conf.d/mysql.cnf
注釋掉 bind-addr
7.刪除使用者
drop user 『使用者名稱』@『主機』
mysql 賬戶管理 MySQL賬戶管理
登陸 退出mysql伺服器 登陸mysql伺服器時,可以使用mysql命令並在後面指定登陸主機以及使用者名稱和密碼。mysql命令的常用引數如下 h主機名,該引數指定主機名或ip,如果不指定,預設是localhost。u使用者名稱,該引數指定使用者名稱。p密碼,該引數指定登陸密碼。如果該引數後面有欄...
mysql 賬戶 mysql 賬戶管理
mysql增加新使用者賬戶 可以用兩種方式建立mysql賬戶 1.使用grant語句 2.直接操作mysql授權表 最好的方法是使用grant語句,因為這樣更精確,錯誤少。建立超級 使用者 mysql grant all privileges on to monty localhost identi...
MYSQL 賬戶管理
方法 1 mysqladmin u user h host password newpass 方法2 set password for user host password newpass 方法3 set password password newpass 這方方法是更改當前登入賬戶密碼 方法4 直...