How to install MySQL 8.0 and log in to MySQL on MacOS

How to install MySQL 8.0 and log in to MySQL on MacOS

Follow the official tutorial, download the installation package, click Install, and if you want to start it in the command line, you also need to set the command path:

In the command line, open the configuration file .bash_profile:

vim ~/.bash_profile

Add the following line to the last line:

PATH=$PATH:/usr/local/mysql/bin

Press the esc key and enter wq to save and exit.

At the command line, enter:

source ~/.bash_profile

After that, you can connect to the MySQL database using mysql -u root -p in the command line

Summarize

The above is what I introduced to you about installing MySQL8.0 and logging in to MySQL under MacOS. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

You may also be interested in:
  • MySQL 8.0.11 MacOS 10.13 installation and configuration method graphic tutorial
  • Install Apache2.4+PHP7.0+MySQL5.7.16 on macOS Sierra
  • Install Solr on macOS and index MySQL

<<:  Implementation of VUE infinite level tree data structure display

>>:  How to build pptpd service in Alibaba Cloud Ubuntu 16.04

Recommend

Detailed explanation of the simple use of MySQL query cache

Table of contents 1. Implementation process of qu...

The principle and implementation of two-way binding in Vue2.x

Table of contents 1. Implementation process 2. Di...

Detailed explanation of Vue filter implementation and application scenarios

1. Brief Introduction Vue.js allows you to define...

How to call the interrupted system in Linux

Preface Slow system calls refer to system calls t...

How to control the proportion of Flex child elements on the main axis

background Flex layout achieves alignment and spa...

Web page experience: Web page color matching

<br />The color of a web page is one of the ...

Vue integrates Tencent Map to implement API (with DEMO)

Table of contents Writing Background Project Desc...

JavaScript implements constellation query function with detailed code

Table of contents 1. Title 2. Code 3. Results IV....

15 Vim quick reference tables to help you increase your efficiency by N times

I started using Linux for development and enterta...

Vue axios interceptor commonly used repeated request cancellation

introduction The previous article introduced the ...

How to track users with JS

Table of contents 1. Synchronous AJAX 2. Asynchro...

Docker installation tutorial in Linux environment

1. Installation environment Docker supports the f...

Summary of MySQL common functions

Preface: The MySQL database provides a wide range...

Analysis of common usage examples of MySQL process functions

This article uses examples to illustrate the comm...