Detailed steps to install mysql5.7.18 on Mac

Detailed steps to install mysql5.7.18 on Mac

1. Tools

We need two tools now: MySQL server (mysql-5.7.18), MySQL GUI (mysql-workbench)

The MySQL server contains the entire operating environment of MySQL. After installing it, you can run MySQL well through the command line.

Of course, if you don't like the command line, you can download a GUI tool to manage MySQL. The GUI has rich functions, including permission settings, database creation, table creation, etc.

2. Installation

1.MySQL Server

Download address: https://dev.mysql.com/downloads/mysql/ . I downloaded mysql-5.7.18-macos10.12-x86_64.dmg

After downloading, install it directly without any trouble.

It is worth noting that after the installation, a pop-up window will be prompted for the root account password. Please write it down as we will use it later.

After installation, the mysql command cannot be recognized in the terminal, so it needs to be configured

$ cd /usr/local/bin/
$ sudo ln -fs /usr/local/mysql/bin/mysql mysql
$ mysql --version 

#Can display mysql version description mysql installed successfully

Change the password of the root account:

$ sudo /usr/local/mysql/bin/mysqld_safe --skip-grant-tables
$ mysql -u root
#Will enter mysql command mode, enter the following commands line by line

UPDATE mysql.user SET authentication_string=PASSWORD('*****') WHERE User='root';
FLUSH PRIVILEGES;
\q

#Verify password after modification

# mysql -u root -p

2. Install GUI

Download address: https://dev.mysql.com/downloads/workbench/ . I downloaded mysql-workbench-community-6.3.9-osx-x86_64.dmg

Download and install, no chatter along the way.

After installation, open Workbench and the interface is as follows:

Click to enter

root

localhost:3306

The first time you log in, you will be prompted to change your password, so just change it.

Enter the Workbench

The installation is now complete!

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:
  • Solution to forgetting the MYSQL database password under MAC
  • Download MySQL 5.7 and detailed installation diagram for MySql on Mac
  • Detailed graphic and text instructions for installing MySQL 5.7.20 on Mac OS
  • Solution to forget password when installing MySQL on Linux/Mac
  • Detailed steps to configure Apache + PHP + MySQL operating environment in Mac OS X
  • What to do if you forget the initial password when installing MySQL on Mac
  • How to modify the forgotten password when installing MySQL on Mac
  • MySQL installation and configuration tutorial for Mac
  • Detailed installation and configuration of MySql on Mac
  • Tutorial on compiling and installing MySQL 5.7.17 from source code on Mac
  • Solution to forgetting mysql password in MAC
  • Configuring MySQL and Squel Pro on Mac

<<:  Native Js implementation of calendar widget

>>:  Steps to configure nginx ssl to implement https access (suitable for novices)

Recommend

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

1. Server environment configuration: 1. Check dis...

Example of using mycat to implement MySQL database read-write separation

What is MyCAT A completely open source large data...

CentOS7 installation zabbix 4.0 tutorial (illustration and text)

Disable SeLinux setenforce 0 Permanently closed: ...

Use js to call js functions in iframe pages

Recently, I have been working on thesis proposals ...

Introduction to JavaScript built-in objects

Table of contents 1. Built-in objects 2. Math Obj...

Summary of the use of html meta tags (recommended)

Meta tag function The META tag is a key tag in th...

mysql command line script execution example

This article uses an example to illustrate the ex...

Detailed explanation of the implementation of shared modules in Angular projects

Table of contents 1. Shared CommonModule 2. Share...

How to mark the source and origin of CSS3 citations

I am almost going moldy staying at home due to th...

Docker builds kubectl image implementation steps

If the program service is deployed using k8s inte...

Detailed explanation of hosts file configuration on Linux server

Linux server hosts file configuration The hosts f...

MySQL 8.0 DDL atomicity feature and implementation principle

1. Overview of DDL Atomicity Before 8.0, there wa...

Let’s talk in detail about how browsers view closures

Table of contents Preface Introduction to Closure...

Let's talk about parameters in MySQL

Preface: In some previous articles, we often see ...

How to deploy Angular project using Docker

There are two ways to deploy Angular projects wit...