windows環境下安裝MySQL8 0 19

2021-10-04 08:25:48 字數 2622 閱讀 8772

[mysqld]

# 設定3306埠

port=3306

# 設定mysql的安裝目錄

basedir=d:\\mysql-8.0.19

# 設定mysql資料庫的資料的存放目錄

datadir=d:\\mysql-8.0.19\\data

# 允許最大連線數

max_connections=200

# 允許連線失敗的次數。這是為了防止有人從該主機試圖攻擊資料庫系統

max_connect_errors=10

# 服務端使用的字符集預設為utf8

character-

set-server=utf8

# 建立新錶時將使用的預設儲存引擎

default-storage-engine=innodb

# 預設使用「mysql_native_password」外掛程式認證

default_authentication_plugin=mysql_native_password

[mysql]

# 設定mysql客戶端預設字符集

default-character-

set=utf8

[client]

# 設定mysql客戶端連線服務端時預設使用的埠

port=3306

default-character-

set=utf8

3.以管理員身份(必須以管理員身份開啟)開啟cmd,cd到mysql資料夾的bin目錄下,

初始化,會列印資料庫密碼,記住該密碼,後面會用到

4、執行mysqld --initialize --console進行初始化

5、給mysql配置環境變數

6、給mysql安裝服務:mysqld --install mysql8

d:\mysql-8.0.19\bin>mysqld install mysql-8

service successfully installed.

d:\mysql-8.0.19\bin>

7、啟動mysql並鏈結mysql,使用剛剛初始化得到的初始密碼

啟動

d:\mysql-8.0.19\bin>net start mysql-8

mysql-8 服務正在啟動 .

mysql-8 服務已經啟動成功。

鏈結
d:\mysql-8.0.19\bin>mysql -uroot -p

enter password: ***********

*welcome to the mysql monitor. commands end with ; or \g.

your mysql connection id is 8

server version: 8.0.19

oracle is a registered trademark of oracle corporation and/or its

affiliates. other names may be trademarks of their respective

owners.

type

'help;' or '\h'

for help.

type

'\c' to clear the current input statement.

mysql>

8、修改預設密碼

mysql> set password for root@localhost='root'

;query ok, 0 rows affected (0.07 sec)

9、設定允許遠端鏈結mysql資料庫

mysql> update user set host = '%' where user = 'root'

;query ok, 1 row affected (0.11 sec)

rows matched: 1 changed: 1 warnings: 0

mysql> flush privileges;

query ok, 0 rows affected (0.08 sec)

安裝完成

附加:mysql 5.5設定允許遠端鏈結

grant

allprivilegeson*

.*to'root'@'%

' identified by 'root' with

grant

option

;flush privileges

;

Windows下安裝zip包解壓版mysql

雖然官方提供了非常好的安裝檔案,但是有的時候不想每次再重灌系統之後都要安裝一遍mysql,需要使用zip包版本的mysql。在安裝時需如下三步 1.新建my.ini檔案在mysql目錄,內容如下 mysqld set basedir to your installation path basedir...

Windows環境下安裝Apache PHP

3.2 php相關配置。複製 d php5 php.ini recommended 重新命名為 php.ini,該檔案為php的配置檔案。3.3 新增 d php5 和 d php5 ext到系統環境變數。3.4 為了可以使用mysql我們還需要複製以下檔案到 c windows system32目...

Windows環境下 MongoDB 安裝

1 安裝 1 解壓mongodb win32 x86 64 2.4.8.zip 建立路徑e program files mongodb 將解壓後的bin檔案copy to 此資料夾下 2 e program files mongodb 下建立data資料夾 e program files mongo...