mac開啟mysql遠端連線

2022-09-10 20:54:22 字數 463 閱讀 6543

遠端連線 命令 mysql -uusername -ppassword -pport -hip -ddatabase

/etc/my.cnf or /usr/local/etc/my.cnf

bind-address 改為0.0.0.0

另外在資料庫裡給遠端使用者賦予許可權,我的本機root是沒有密碼的,就另外生成了乙個需要密碼的賬戶

新版mysql沒辦法直接給新使用者賦予許可權 需要先建立

create user 'username'@'host' identified by 'password';

grant all privilages on *.* to 'username'@'%' with grant option;

遠端連線的時候又說 caching_sha2_password什麼的不支援 需要源端修改加密方式

flush privileges;

mac開啟mysql遠端連線

遠端連線 命令 mysql uusername ppassword pport hip ddatabase etc my.cnf or usr local etc my.cnf bind address 改為0.0.0.0 另外在資料庫裡給遠端使用者賦予許可權,我的本機root是沒有密碼的,就另外生...

mysql開啟遠端 mysql 開啟遠端連線

1045,access denied for user root 192.168.100.1 using password yes 開啟資料庫遠端連線即可 1 先在本機使用root使用者登入mysql,然後進行授權。mysql grant all privileges on to root iden...

開啟mysql遠端連線

首先新增使用者 當然也可是使用root使用者 格式 grant 許可權 on 資料庫名.表名 使用者 登入主機 identified by 使用者密碼 grant select,update,insert,delete on to zhxia identified by 123456 或者所有許可權...