Mysql安裝教程

2022-04-28 15:24:27 字數 1648 閱讀 6796

這裡使用壓縮包的方式安裝mysql

cd /d d:\mysql-8.0.22\bin
mysqld -install
tips:關閉服務的命令為:net stop mysql, 解除安裝的命令為:sc delete mysql。

mysqld --initialize-insecure --user==mysql
net start mysql
mysql 5.7 的版本,因為在user表中沒有password欄位,一直使用下邊的方式來修改root密碼

use mysql; 

update user set authentication_string = password(「123456」) where user = 「root」;

mysql 從8.0開始修改密碼有了變化,在user表加了字段authentication_string,修改密碼前先檢查authentication_string是否為空

如果不為空

use mysql; 

update user set authentication_string='' where user='root';--將字段置為空

alter user 'root'@'localhost' identified by '123456';--修改密碼為123456

如果為空,直接修改

alter user 'root'@'localhost' identified by '123456';--修改密碼為123456
如果出現如下錯誤

error 1290 (hy000): the mysql server is running with the --skip-grant-tables option so it cannot execute this statement

mysql> grant all privileges on *.* to identified by '123' with grant option;

需要執行

flush privileges;
然後再執行

alter user 'root'@'localhost' identified by '123456';--修改密碼為123456

MySQL安裝教程

一 mysql的安裝 安裝完成了,出現如下介面將進入mysql配置嚮導。選擇配置方式,detailed configuration 手動精確配置 standard configuration 標準配置 我們選擇 detailed configuration 方便熟悉配置過程。選擇伺服器型別,deve...

MySQL安裝教程

自定義安裝超長動態圖 很詳細呀!安裝完成後,使用管理員方式 開啟windows powershell注意是 管理員模式 mysql uroot p 登陸enter password welcome to the mysql monitor.commands end with or g.your my...

MySQL安裝教程

將zip包解壓縮到要安裝的路徑,比如如下路徑 d mysql在系統變數中配置mysql的路徑,新增變數mysql home 在path路徑中配置mysql,如下圖 在安裝目錄下新建檔案my.ini,檔案內容如下 mysql 設定mysql客戶端預設字符集 default character set ...