mysql8操做命令(持續更新)

mysql服務管理

  • 查看服務狀態

systemctl status mysqld.service
  • 啓動服務

systemctl start mysqld.service
  • 關閉服務

systemctl stop mysqld.service

 

用戶權限管理

  • 建立用戶

create user 'sgf'@'%' identified by 'SGF_lll315';
  • 查詢用戶

select user,host from mysql.user;
  • 刪除用戶

drop user sgf@'%';
  • 給用戶受權

grant create,alter,drop,select,insert,update,delete on testdb.* to sgf@'%';

這裏受權只是給sgf這個用戶只授予數據庫「testdb」中表的建立,修改,刪除權限,以及表數據的增刪改查權限,可改爲全部數據庫 *.* 。mysql

  • 刷新權限

flush privileges;
  • 查看權限

show grants for sgf;
相關文章
相關標籤/搜索