Graphic tutorial on installing MySQL database and configuring environment variables on Mac

Graphic tutorial on installing MySQL database and configuring environment variables on Mac

Install mysql

Download mysql. I downloaded: mysql-8.0.11-macos10.13-x86_64.dmg

Double-click to open mysql-8.0.11-macos10.13-x86_64.dmg, and then double-click mysql-8.0.11-macos10.13-x86_64.pkg

Just click on Continue, it's a fool-proof installation, nothing to say

Select "Use Legacy Password Encryption" here, otherwise when you use Navicat to connect to MySQL, you will get an error that the authentication cannot be loaded.

Set a password for the "root" user

Installation Complete

After successful installation, using the mysql command returns the error: command not found, because the environment variables have not been configured.

Configuring environment variables

First, you need to know what kind of Shell you are using on Mac OS X.

Open the terminal and enter: echo $SHELL Press Enter to execute

If the output is: csh or tcsh, then you are using C Shell.

If the output reads: bash, sh, zsh, then you are probably using a variant of the Bourne Shell.

The default shell for Mac OS X prior to 10.2 was C Shell.

The default shell for Mac OS X 10.3 and later is Bourne Shell.

Mine is bash:


Input: cd /usr/local/mysql, press Enter to execute

Then enter: sudo vim .bash_profile and press Enter to execute

You need to enter the root user password. Sudo is used by the root user to modify the environment variable file.

After entering the editor, we first press "i" to switch to the "insert" state. You can edit the content by moving the cursor up, down, left, or right, or by pressing space, backspace, and enter, just like in WINDOWS.

At the bottom of the document, enter: export PATH=${PATH}:/usr/local/mysql/bin

Then press Esc to exit the insert state, and enter :wq at the bottom to save and exit (or directly press shift+zz, or switch to uppercase mode and press ZZ to save and exit).

Input: source .bash_profile and press Enter to execute and run the environment variables.

Then enter the mysql command to use it.

If you cannot connect to MySQL using Navicat,

It probably means that the authentication plugin 'caching_sha2_password' cannot be loaded

solve

  • Open System Preferences, find MySQL, and click Initialize Database.
  • Enter your new password.
  • Select 'Use legacy password'.
  • Restart the mysql service.
  • Navicat links can now be used

After testing, I found that the above method requires re-source .bash_profile every time the terminal is closed and reopened.

PS: The following test is still invalid and has not been resolved yet

Some articles say vi ~/.zshrc, add it here:

export PATH=${PATH}:/usr/local/mysql/bin

After saving, source ~/.zshrc and you can do it once and for all.

Some articles mention modifying ~/.bashrc. If the system is zsh, modifying bashrc is invalid.

This is the end of this graphic tutorial on how to install MySQL database on Mac and configure environment variables. For more information about installing MySQL database on Mac and configuring it, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • [Project layout configuration] Nosql and Python Web-Flask framework combination
  • MySQL 1130 exception, unable to log in remotely solution
  • Solve the problem of garbled data in MySQL database migration
  • SQL Writing - Row Comparison
  • Solution to MySQL connection exception and error 10061
  • Solve the problem that the SpringBoot application.yaml file configuration schema cannot execute SQL
  • SQL IDENTITY_INSERT case study
  • Hotel Management System Designed and Implemented Based on JavaSwing

<<:  Improvement experience and sharing of 163 mailbox login box interactive design

>>:  Solution to Vue3.0 error Cannot find module'worker_threads'

Recommend

CocosCreator Typescript makes Tetris game

Table of contents 1. Introduction 2. Several key ...

Example of fork and mutex lock process in Linux multithreading

Table of contents Question: 1. First attempt 2. R...

Use of Linux date command

1. Command Introduction The date command is used ...

Tutorial on installing MySQL 5.7.18 using RPM package

system: CentOS 7 RPM packages: mysql-community-cl...

Specific use of MySQL internal temporary tables

Table of contents UNION Table initialization Exec...

Let's talk about the performance of MySQL's COUNT(*)

Preface Basically, programmers in the workplace u...

MySQL Full-text Indexing Guide

Full-text indexing requires special query syntax....

Some front-end basics (html, css) encountered in practice

1. The div css mouse hand shape is cursor:pointer;...

mysql server is running with the --skip-grant-tables option

The MySQL server is running with the --skip-grant...

Exploring the practical value of the CSS property *-gradient

Let me first introduce an interesting property - ...

Analyze Tomcat architecture principles to architecture design

Table of contents 1. Learning Objectives 1.1. Mas...

Solution to the root password login problem in MySQL 5.7

After I found that the previous article solved th...

Tomcat common exceptions and solution code examples

The company project was developed in Java and the...

Understanding of the synchronous or asynchronous problem of setState in React

Table of contents 1. Is setState synchronous? asy...

Example code for implementing simple ListViews effect in html

HTML to achieve simple ListViews effect Result: c...