MySQL and sqlyog installation tutorial with pictures and text

MySQL and sqlyog installation tutorial with pictures and text

1. MySQL 1.1 MySQL installation

mysql-5.5.27-winx64 download

(1) Welcome to install

insert image description here

(2) Acceptance of Agreement

insert image description here

(3) Installation mode selection

Typical: Indicates that commonly used components will be installed. By default, they are installed to C:\Program Files\MySQL\MySQL Server 5.5\.
Complete: Indicates that all components will be installed. This package will take up a lot of disk space.
Custom: Indicates that users can select the components to be installed and can change the default path. This sorting method is the most flexible and is intended for advanced users.

insert image description here

(4) Select installation components and path

insert image description here

(5) Installation

insert image description here
insert image description here
insert image description here
insert image description here

(6) Installation completed

insert image description here

1.2 MySQL Configuration

(1) Preparation

insert image description here

(2) Select configuration Select the configuration method, "Detailed Configuration" or "Standard Configuration". We choose "Detailed Configuration" to familiarize ourselves with the configuration process.

insert image description here

(3) MySQL application mode
Develop Machine, using the minimum amount of memory
Server Machine, medium memory usage
Dedicated MySQL Server Machine, using the maximum memory currently available.

insert image description here

(4) Select the database purpose selection interface to select the general purpose of the MySQL database:
"Multifunctional Database (general multifunctional, good)": This option provides fast access to both transactional storage engines (InnoDB) and non-transactional storage engines (MyISAM).
"Transactional Database Only (Server Type, Focus on Transaction Processing, General)": This option mainly optimizes the transactional storage engine (InnoDB), but the non-transactional (MyISAM) storage engine can also be used.
"Non-Transactional Database Only (simpler) is mainly used for monitoring and counting. Support for MyISAM data types is limited to non-transactional. Note that the transactional storage engine (InnoDB) cannot be used.

insert image description here

(5)Configure data file directory
InnoDB data files are created when the database is started for the first time, and by default are created in the MySQL installation directory. Users can choose a path based on actual space conditions.

insert image description here

(6) Concurrency Selection Settings Select the general MySQL traffic for your website and the number of simultaneous connections, "Decision Support (DSS)/OLAP (decision support system, about 20)", "Online Transaction Processing (OLTP) (online transaction system, about 500)", "Manual Setting (manual setting, enter a number yourself)"

insert image description here

(7) Network selection configuration

Whether to enable TCP/IP connection and set the port. If not, you can only access the MySQL database on your own machine. I enable it here and check the box in front of it, Port Number: 3306. There is also a firewall setting "Add firewall exception..." that needs to be selected to add the listening port of the MYSQL service as a Windows firewall exception to avoid firewall blocking.
On this page, you can also select Enable Strict Mode so that MySQL will not tolerate minor syntax errors. Use standard mode whenever possible because it reduces the likelihood of harmful data entering the database.

insert image description here

(8) Select character set

insert image description here
(9) Safe Choice

insert image description here

(10) Set a password

insert image description here

(11) Prepare the execution interface

insert image description here

(12) Complete

insert image description here

2. SQLyog installation

SQLyog is an easy-to-use, fast and concise graphical management tool for MYSQL databases. It can effectively manage your databases at any location. The installation is fool-proof.
SQLyog (MySQL graphical management tool)

Summarize

This is the end of this article about the detailed graphic tutorial of MySQL and sqlyog installation. For more relevant MySQL and sqlyog installation content, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Perfect solution for SQLyog reporting error 2058 when connecting to MySQL 8.0
  • How to solve the problem of unsuccessful import of csv data into mysql using SQLyog
  • How to set up sqlyog to solve the Chinese garbled code problem
  • Using Sqlyog to remotely connect to the database error solution

<<:  Sample code for partitioning and formatting a disk larger than 20TB on centos6

>>:  uniapp realizes the recording upload function

Recommend

Summary of practical skills commonly used in Vue projects

Table of contents Preface 1. Use $attrs and $list...

Web page comments cause text overflow in IE

The experimental code is as follows: </head>...

Collapsed table row element bug

Let's take an example: The code is very simple...

How to display and format json data on html page

JSON data is displayed and formatted on the HTML ...

display:grid in CSS3, an introduction to grid layout

1. Grid layout (grid): It divides the web page in...

HTML+CSS to achieve surround reflection loading effect

This article mainly introduces the implementation...

JavaScript web page entry-level development detailed explanation

Part 3: ❤Three ways to overlook backend data rece...

How to create users and manage permissions in MySQL

1. How to create a user and password 1. Enter the...

A brief analysis of SQL examples for finding uncommitted transactions in MySQL

A long time ago, I summarized a blog post titled ...

Tutorial diagram of using Jenkins for automated deployment under Windows

Today we will talk about how to use Jenkins+power...

MySql Group By implements grouping of multiple fields

In daily development tasks, we often use MYSQL...