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

4 ways to avoid duplicate insertion of data in Mysql

The most common way is to set a primary key or un...

A brief introduction to MySQL InnoDB ReplicaSet

Table of contents 01 Introduction to InnoDB Repli...

Docker-compose image release process analysis of springboot project

Introduction The Docker-Compose project is an off...

Problems with installing mysql and mysql.sock under linux

Recently, I encountered many problems when instal...

10 SQL statement optimization techniques to improve MYSQL query efficiency

The execution efficiency of MySQL database has a ...

How to import CSS styles into HTML external style sheets

The link-in style is to put all the styles in one...

Vue Element front-end application development table list display

1. List query interface effect Before introducing...

Pricing table implemented with CSS3

Result: Implementation Code html <div id="...

MYSQL's 10 classic optimization cases and scenarios

Table of contents 1. General steps for SQL optimi...

Mysql 5.6.37 winx64 installation dual version mysql notes

If MySQL version 5.0 already exists on the machin...

MySQL learning record: bloody incident caused by KEY partition

Demand background Part of the data in the busines...

About Generics of C++ TpeScript Series

Table of contents 1. Template 2. Generics 3. Gene...