linux 新增資料庫使用者

2021-08-02 20:01:21 字數 724 閱讀 6922

第一步:進入mysql

mysql -uroot msyql -p 回車輸入root使用者的密碼(安裝mysql時自己指定的)

建立乙個test使用者,密碼位test,「%「代表聯網中的所有使用者都能用test使用者名稱訪問資料庫(所有資料庫中的所有表);

grant all on *.* to 'test'@'%' identified by 'test';

並將/etc/mysql/mysql.cnf中的bind-address一行注釋

訪問a_db中的所有表,用如下語句實現

grant all on a_db.*  to 'test'@'%' identified by 'test';

限制許可權,限制test使用者只能查詢a_db中的所有表

grant select on a_db.* to 'test'@'%' identified by 'test';

檢視mysql中的所有資料庫使用者

select distinct concat('user: ''',user,'''@''',host,''';') as query from mysql.user;

刪除test使用者

delete from user where user='test' and host='%';

flush privileges;

刪除資料庫和資料表

drop database 資料庫名;

drop table 資料表名;

mysql新增資料庫新增使用者並授權使用者

建立資料庫 create database basename 建立使用者 create user username 訪問限制 identified by password 授權使用者 grant all privileges on 資料庫名稱.表名稱 to username 訪問限制 重新整理使用者...

實戰PHPMYADMIN新增資料庫使用者教程

我們使用最多的應該是php mysql程式,尤其是mysql在我們使用vps的使用者來講如何新增資料程式設計客棧庫更為安全呢?今天上午我看到一www.cppcns.com個朋友還是用的root使用者,這肯定是不能夠的。我們需要為每乙個 新增單獨的資料庫使用者,而且還需要設定許可權。下面老左分享我們如...

QC新增資料庫

1 安裝qc完畢,輸入licence口令,開啟介面。2 在qc central for db2上右擊滑鼠,add instance or subsystems 3 輸入host name和operating system linux next 4 輸入node和instance,port,next到...