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 UPDATE mysql.user SET authentication_string=PASSWORD('*****') WHERE User='root'; #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:
|
<<: Native Js implementation of calendar widget
>>: Steps to configure nginx ssl to implement https access (suitable for novices)
1. Why does nginx use gzip? 1. The role of compre...
Table of contents 1. Installation and introductio...
Configuration file that needs to be loaded when t...
Think about it: Why should css be placed in the h...
This article introduces the sample code of CSS3 t...
1. Which three formats? They are: gif, jpg, and pn...
Preface Linux does not have a prominent Recycle B...
Let me first introduce an interesting property - ...
Table of contents think 1. Greedy Snake Effect Pi...
The Core Asset Management Project requires el-tra...
1. The relationship between fonts and character d...
This article shares the specific code of JavaScri...
Table of contents Preface: Detailed introduction:...
Table of contents Portainer manages multiple Dock...
1. Installation 1. Download Go to the MySQL offic...