Mysql installation and configuration tutorial (detailed)

Time:2023-10-10

First a brief overview is divided into several steps:

I. Download Mysql

II. Installing Mysql

Third, verify that the Mysql installation is successful

IV. Configuring environment variables

V. Verify that the configuration of environment variables is successful

I. Download Mysql

To install MySQL on Windows or Mac, first download the latest version of MySQL Community Server from the official MySQL website:

Official website.https://www.mysql.com/

1. First, go to the official website

Mysql installation and configuration tutorial (detailed)

2. Click DOWNLOADS.

Mysql installation and configuration tutorial (detailed)

3. Click MySQL Community(GPL)Downloads

Mysql installation and configuration tutorial (detailed)

 4.strike (on the keyboard)MySQL Installer for Windows

Mysql installation and configuration tutorial (detailed)

5. Click Download

Mysql installation and configuration tutorial (detailed)

6. ClickNo thanks, just start my download Here you can skip the registration and download it directly.

Mysql installation and configuration tutorial (detailed)

II. Installing Mysql

1. Find the directory of the downloaded installer file and click on the

2. Start installation

Mysql installation and configuration tutorial (detailed)

2. After entering the page, select the last customization option and click next.

Mysql installation and configuration tutorial (detailed)

 

 

 

3. Select the version you want to install and make sure to change the installation path and data path.Pay attention to the installation path, you need to use it to configure environment variables later.OK and click NEXT to go to the next page.

Mysql installation and configuration tutorial (detailed)

4. Enter this page and click next

Mysql installation and configuration tutorial (detailed)

5. pop-up path warning, no need to manage, direct Yes .

Mysql installation and configuration tutorial (detailed)

6. All the way through, click NEXT.

Mysql installation and configuration tutorial (detailed)

7. Setting passwords (using strong password authentication, using old-style authentication)

Mysql installation and configuration tutorial (detailed)

Mysql installation and configuration tutorial (detailed)

8.Next, directly click on “Execute”, start installing, click to install the need to wait a moment!

Mysql installation and configuration tutorial (detailed)Mysql installation and configuration tutorial (detailed)

 Mysql installation and configuration tutorial (detailed)Mysql installation and configuration tutorial (detailed)Mysql installation and configuration tutorial (detailed)

Installation completed

Third, verify that the Mysql installation is successful

1. In Windows Start Search type in Mysql, and select the first one to open.

Mysql installation and configuration tutorial (detailed)

2. Enter the password used for installation.

Mysql installation and configuration tutorial (detailed)

3. Indicates successful installation.

Mysql installation and configuration tutorial (detailed)

IV. Configuring environment variables

1. Find the MySQL installation path (note the bin file).

Mysql installation and configuration tutorial (detailed)

2. Right-click to open the properties of “this computer”, click “Advanced System Settings”, and then click “Environment Variables”.

Mysql installation and configuration tutorial (detailed)

3. Click “Environment Variables” and select “path” in “System Variables”, then click “Edit”.

Mysql installation and configuration tutorial (detailed)

4. Click “New”, copy and paste the path of Mysql, and then click “OK”.

Mysql installation and configuration tutorial (detailed)

5. OK all the way to save the settings.

V. Verify that the configuration of environment variables is successful

“Window + R” key to pop up the run box, type “cmd” into the window command prompt, type “mysql -uroot -p” press enter, and then enter the password, press enter, the following interface is successfully configured.

Mysql installation and configuration tutorial (detailed)

At this point the installation and configuration is complete.

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Recommended Today

uniapp and applet set tabBar and show and hide tabBar

(1) Set the tabBar: uni.setTabberItem({}); wx.setTabberItem({}); indexnumberisWhich item of the tabBar, counting from the left, is indexed from 0.textstringnoButton text on tabiconPathstringnoImage PathselectedIconPathstringnoImage path when selectedpagePathstringnoPage absolute pathvisiblebooleannotab Whether to display uni.setTabBarItem({ index: 0, text: ‘text’, iconPath: ‘/path/to/iconPath’, selectedIconPath: ‘/path/to/selectedIconPath’, pagePath: ‘pages/home/home’ }) wx.setTabBarItem({ index: 0, text: ‘text’, iconPath: ‘/path/to/iconPath’, selectedIconPath: ‘/path/to/selectedIconPath’, pagePath: ‘pages/home/home’ }) […]