Mac创建本地数据库并连接

文章目录

  • 一、下载安装MySql数据库
  • 二、查看本地MySQL
  • 三、Navcat连接数据库
  • 四、样例表脚本

一、下载安装MySql数据库

在MySql官网下载MySQL Community Server
Mac创建本地数据库并连接_第1张图片

可以选择默认配置安装数据库

二、查看本地MySQL

可以在本地“系统偏好设置”最下方,查看自己的MySql服务是否正常
Mac创建本地数据库并连接_第2张图片

也可以在终端输入查看,会提示你输入密码:

/usr/local/mysql/bin/mysql -u root -p
Enter password: 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 8
Server version: 8.2.0 MySQL Community Server - GPL

Copyright (c) 2000, 2023, Oracle and/or its affiliates.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> 

三、Navcat连接数据库

Mac创建本地数据库并连接_第3张图片

如果提示连接失败,可以尝试

ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '你的密码';

Mac创建本地数据库并连接_第4张图片
错误的原因是由于从mysql5.7版本之后,验证方式默认从原来的mysql_native_password改成了caching_sha2_password,你如果下载安装的是最新的版本,那就会有这个问题。如果是安装包安装的5.7及以前版本则不存在此问题。

四、样例表脚本

mysql样例创建脚本
包含两个脚本 create.sql 和 populate.sql.
在客户端运行脚本可以创建出样例表

  • create.sql包含创建6个数据库表(包括所有主键和外键约束)的MySQL语句。
  • populate.sql包含用来填充这些表的INSERT语句。

你可能感兴趣的:(#,数据库,macos,数据库)