顯示所有使用者,mysql的基本操作

2021-06-29 12:22:22 字數 884 閱讀 2712

可以實現顯示資料庫中所有使用者。

select user from mysql.user;

select user,host,password from mysql.user;

給表建立使用者,授權:

the create user command:

mysql> create user yy identified by '123';

yy表示你要建立的使用者名稱,後面的123表示密碼

上面建立的使用者可以在任何地方登陸。

mysql> create user yy@localhost identified by '123';

grant:

mysql> grant all privileges on *.* to user

;@localhost

grant select,insert,update,delete on *.* to test1@"%" identified by "abc";

grant select,insert,update,delete on *.* to test1@"%" identified by "abc";

格式:grant select on 資料庫.* to 使用者名稱@登入主機 identified by "密碼"

修改密碼:

mysql> grant   all   privileges   on   pureftpd.*   to   koko@localhost   identified   by   'mimi'; 

flush:

mysql> flush 

privileges;

檢視使用者資訊:

mysql> select host,user from mysql.user;

linux中history記錄所有使用者操作命令

工作中遇到了使用者誤刪除事件,為了以防萬一考慮記錄所用使用者的操作指令。找到了下面解決方案,測試可行。mkdir p var log usermonitor 建立使用者審計檔案存放目錄和審計日誌檔案echo 20200402 var log usermonitor usermonitor.log 建...

SAP Basis如何顯示SAP中所有使用者列表

sap basis如何顯示sap中所有使用者列表 方法一 可以直接用tcode suim user information system 方法二 用sa38直接執行熟悉的報表,一些報表如下 program description rsusr000 current active users rsusr...

檢視mysql的所有使用者和許可權

1 檢視mysql資料庫中的所有使用者 mysql select distinct concat user user,host,as query from mysql.user 2 檢視資料庫中具體某個使用者的許可權 mysql show grants for root localhost 或者my...