mysql授權連線程式 mysql 授權

2021-10-22 08:03:50 字數 703 閱讀 3562

#進入mysql

mysql -uroot -p

#授權:

grant all on *.* to 'root'@'%';

#重新整理許可權:

flush privileges;

#更新加密規則:

alter user 'root'@'localhost' identified by 'password' password expire never;

#更新root使用者密碼:

alter user 'root'@'%' identified with mysql_native_password by '123456';

#重新整理許可權:

flush privileges;

#檢視表

show tables;

#檢視使用者

select * from user;

舉例:1.建立資料庫 bbin

create database bbin;

2.給資料庫建立單獨使用者 bbin;

create user bbin;

3.給使用者 bbin 設定密碼為 abc###123

set password for bbin="abc###123";

4.給使用者 bbin 賦予資料庫 bbin 所有許可權,並允許遠端連線

grant all on bbin.* to 'bbin'@'%';

mysql遠端連線授權

mysql is not allowed to connect to this mysql server 如果你想連線你的mysql的時候發生這個錯誤 error 1130 host 192.168.1.3 is not allowed to connect to this mysql server...

python連線mysql並提交mysql事務示例

複製 如下 coding utf 8 import sys import mysqldb reload sys sys.setdefaultencoding utf 8 class db object def init self,host 127.0.0.1 port 3306,user root ...

qt連線mysql安全麼 Qt連線Mysql的問題

標頭檔案 include include include 工程中需要加入 qt sql 資料庫中的中文顯示為亂碼的解決方法 在main函式中加入 include qtextcodec setcodecfortr qtextcodec codecforname utf 8 qtextcodec set...