windows環境,mysql設定遠端登入

2021-10-06 17:47:18 字數 814 閱讀 4400

1、cd到mysql安裝的bin目錄下面, 用命令mysql -u root -p 登入到mysql上面。

2、然後用use mysql; 用select user, host from user; 檢視當前mysql有哪些使用者登入的許可權。

3、增加root賬號遠端登入許可權

grant

allprivilegeson*

.*to root@'192.168

.31.227

' identified by '

123456' with

grant

option

;

在mysql8.0.15中,如果沒有賬號root@『192.168.31.227』 需要先建立賬號。

create

user

'root'@'192.168

.31.227

' identified by '

123456';

然後在授權

grant

allprivilegeson*

.*to'root'

@'192.168.31.227'

with

grant

option

;

注:『123456』為遠端密碼。

再檢視mysql登入的許可權,到此,可以在遠端用root賬號登入了。

mysql 操作(windows環境)

一 mysql匯入資料庫 mysql source d webproject sql ina2012.sql 如果資料庫裡有中文,往往會出現亂碼的情況,匯入資料庫報錯 方法一 在登入時需要指定字符集編碼 mysql u root p 3306 p ina2012 default character ...

windows環境安裝mysql

輸入命令 mysql u root p 如果忘記密碼 輸入初始化命令 mysqld initialize console 如果仍失敗,停止服務net stop mysql 執行命令 mysqld console skip grant tables shared memor 開啟第二個cmd視窗連線m...

Windows環境下安裝MySQL

2.解壓 將mysql解壓到指定路徑,如 e mysql 5.7.16 winx64 3.新增環境變數 右鍵計算機 屬性 高階系統設定 高階 環境變數 在第二個內容框中找到 變數名為path 的一行,雙擊 將mysql的bin目錄路徑追加到變值值中,用 分割 4.製作mysql的windows服務,...