mysql之許可權管理

2021-10-07 11:01:54 字數 1134 閱讀 2828

儲存引擎

grant

allon hellodb.

*to test1@'192.168

.37.

%' identified by 'centos';

--建立使用者test1,允許192.168.37網段遠端訪問,密碼為centos,在hellodb表的許可權設定為所有

revoke

delete

on hellodb.

*from test1@'192.168.37.%'

;--把test1使用者的刪除許可權收回,在hellodb表中無法使用

show grants for root@'localhost'

;--檢視root使用者當前裝置的許可權

show grants for

current_user()

;--檢視當前使用者許可權

vim /etc/my.cnf

innodb_file_per_table=on

show engines;
show variables like

'%storage_engine%'

;

vim /etc/my.conf

[mysqld]

default_storage_engine= innodb

show

table

status

from db_name\g;

show

table

status

like

'tb_name'

;show

create

table tb_name;

create

table tb_name(..

.)engine

=innodb

;alter

table tb_name engine

=innodb

;

mysql學習之八 mysql許可權管理

mysql使用grant和revoke命令授予或撤銷針對乙個使用者的許可權。授予的許可權可以分為多個層級 全域性級授權 grant all privileges on to stefan identified by 123456 資料庫級授權 grant all privileges on vert...

MySQL許可權管理

本文主要講述的是mysql grant命令的例項演示,文中的mysql grant命令的實際操作主要是在mysql 5.0 及以上的相關版本上執行,下面就是對其具體操作步驟的描述,望你在瀏覽之後會有所收穫。mysql 賦予使用者許可權命令的簡單格式可概括為 grant 許可權 on 資料庫物件 to...

mysql 許可權管理

1.新增使用者 方法一 create user wangda localhost identified by password 000000 說明 建立乙個本地的使用者,使用者名為 wangda 密碼為 000000 如果密碼為空,則 identified by password 000000 這個...