MySQL 5.7.17 winx64 decompression version installation and configuration method graphic tutorial

MySQL 5.7.17 winx64 decompression version installation and configuration method graphic tutorial

This article shares the installation and configuration method of MySQL 5.7.17 winx64 decompression version for your reference. The specific content is as follows

1. Download

Download

2. Configuration

1. Unzip the downloaded MySQL installation package, copy the my-default.ini file in the unzipped directory to the same directory, rename it to my.ini file, and then modify the file content as follows:

2. Configure the environment variables and add the directory D:\mysql\mysql-5.7.17-winx64\bin to Path.

3. Installation

1. Open the DOS command line in administrator mode and enter the bin directory of MySQL.

2. Initialize the data and execute the command: mysqld --initialize-insecure (there is a space in front and no space in the back)

Then a data folder will be generated, and the correct size is 120M.

3. Install mysql service: mysqld install

4. Start mysql in two ways:

Method 1: net start mysql

Method 2: Start directly in the service list

4. Verify that MySQL is successfully installed

Restart the DOS command line and enter the command: mysql –uroot –p

If this interface appears, it means that MySQL is installed successfully.

appendix:

1. Stop the service through the command line.

2. Removal of Services

3. Common mysql commands:

1).show databases; #Show all databases

2).create database test; #Create a database named test.

3).use test; means using the test database.

4).create table student(id int primary key auto_increment, sname varchar(20), birthday date);#Create student, primary key automatically increases.

5).insert into student(sname, birthday) values('zhangsan', '1989-12-23');#Insert data

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • MySQL 5.7.17 installation and configuration method graphic tutorial
  • mysql5.7.17.msi installation graphic tutorial
  • Tutorial on installing mysql5.7.17 on windows10
  • MySQL 5.7.17 installation and configuration graphic tutorial
  • MySQL 5.7.17 installation and configuration method graphic tutorial (windows)
  • MySQL 5.7.17 installation and configuration method graphic tutorial (CentOS7)
  • MySQL 5.7.17 winx64 installation and configuration method graphic tutorial
  • MySQL 5.7.17 installation and configuration tutorial for Mac
  • MySQL 5.7.17 winx64 installation and configuration graphic tutorial
  • MySQL 5.7.17 installation and configuration method graphic tutorial under win7
  • MySQL 5.7.17 installation and configuration method graphic tutorial under Windows 10
  • Mysql5.7.17 winx64.zip decompression version installation and configuration graphic tutorial

<<:  How to create a Docker repository using Nexus

>>:  Next.js Getting Started Tutorial

Recommend

MySQL DATE_ADD and ADDDATE functions add a specified time interval to a date

MySQL DATE_ADD(date,INTERVAL expr type) and ADDDA...

How to use MySQL DATEDIFF function to get the time interval between two dates

describe Returns the time interval between two da...

User needs lead to marketing-oriented design

<br />For each of our topics, the team will ...

Detailed explanation of Vue3's sandbox mechanism

Table of contents Preface Browser compiled versio...

Linux touch command usage examples

Detailed explanation of linux touch command: 1. C...

How to change the password of mysql5.7.20 under linux CentOS 7.4

After MySQL was upgraded to version 5.7, its secu...

Solution to "No input file specified" in nginx+php

Today, the error "No input file specified&qu...

Table paging function implemented by Vue2.0+ElementUI+PageHelper

Preface I have been working on some front-end pro...

Detailed explanation of nginx forward proxy and reverse proxy

Table of contents Forward Proxy nginx reverse pro...

MySQL Series 11 Logging

Tutorial Series MySQL series: Basic concepts of M...

Common methods of Vue componentization: component value transfer and communication

Related knowledge points Passing values ​​from pa...

How to publish a locally built docker image to dockerhub

Today we will introduce how to publish the local ...

React implementation example using Amap (react-amap)

The PC version of React was refactored to use Ama...