Teach you how to install mysql database on Mac

Teach you how to install mysql database on Mac

Download MySQL for Mac: https://downloads.mysql.com/archives/community/
Note: I downloaded the community version, the mysql version should be consistent with your MAC version. Of course, if you have installed other MYSQL versions before, be sure to uninstall them first.

Double-click mysql-8.0.0-dmr-osx10.11-x86_64.dmg to decompress and install.

Continue -> Continue, Agree -> Install. Write down the password in the pop-up window.

Enter system preferences, find mysql, and start the service

Add mysql commands to the system

(1) Enter /usr/local/mysql/bin and check whether there is mysql in this directory
(2). Execute vim ~/.bash_profile
Add the mysql/bin directory to this file
PATH=$PATH:/usr/local/mysql/bin
After adding, press esc and enter wq to save the changes.
(3). Finally, enter source ~/.bash_profile in the command line.

Log in to mysql through mysql -uroot -p and enter the password you saved previously

Reset the mysql initial password:

SET PASSWORD FOR 'root'@'localhost' = PASSWORD('newpassword');

You may also be interested in:
  • Solution to forgetting the MYSQL database password under MAC
  • Solution to the Chinese garbled code problem in Mac Mysql database
  • Sharing of methods of operating MySQL database with PHP under Mac environment
  • Graphic tutorial on installing MySQL database and configuring environment variables on Mac

<<:  A brief discussion on the binary family of JS

>>:  How to configure /var/log/messages in Ubuntu system log

Recommend

How to implement Vue binding class and binding inline style

Table of contents Binding Class Binding inline st...

Implementation of nginx worker process loop

After the worker process is started, it will firs...

Detailed steps to install MySQL 5.7 via YUM on CentOS7

1. Go to the location where you want to store the...

Tutorial on installing and using virtualenv in Deepin

virtualenv is a tool for creating isolated Python...

Seven solutions for classic distributed transactions between MySQL and Golan

Table of contents 1. Basic theory 1.1 Transaction...

The unreasonable MaxIdleConns of MySQL will cause short connections

1 Background Recently, some performance issues ha...

How to add a pop-up bottom action button for element-ui's Select and Cascader

As shown in the figure below, it is a common desi...

How to create a new user in CentOS and enable key login

Table of contents Create a new user Authorize new...

5 Simple XHTML Web Forms for Web Design

Simple XHTML web form in web design 5. Technique ...

Source code reveals why Vue2 this can directly obtain data and methods

Table of contents 1. Example: this can directly g...

Introduction to Linux common hard disk management commands

Table of contents 1. df command 2. du command 3. ...

MySQL triggers: creating and using triggers

This article uses examples to describe the creati...

Tips for implementing list loop scrolling based on jQuery (super simple)

I saw a good idea and recorded it. I have used jQ...

Detailed steps to expand LVM disk in Linux

1. Add a hard disk 2. Check the partition status:...