赞
踩
下载下来之后直接双击安装
可能会出现【无法打开“mysql-8.0.21-macos10.15-x86_64.pkg”,因为Apple无法检查其是否包含恶意软件。】
解决方法:设置 - 安全性与隐私
接下来一直下一步【注意中间弹出输入密码操作,设置好密码,请记住,后面登陆需要】
安装完成后,设置的系统偏好界面下方有个MySQL标志。
【启动】点击这标记,勾选Start MySQL when your computer starts up
1、首先打开终端,使用mysql,发现command not found,这是因为我们没配置系统的环境变量,下面我们来进行配置:
- Last login: Mon Oct 5 20:13:44 on ttys000
- The default interactive shell is now zsh.
- To update your account to use zsh, please run `chsh -s /bin/zsh`.
- For more details, please visit https://support.apple.com/kb/HT208050.
- bin$ mysql
- -bash: mysql: command not found
2、因此需要到安装目录下 cd /usr/local/mysql/bin
,然后输入pwd
确认一下自己当前是处于这个目录下
- bin$ cd /usr/local/mysql/bin
- bin$ pwd
- /usr/local/mysql/bin
3、输入vim ~/.bash_profile
bin$ vim ~/.bash_profile
4、在弹出的文件中输入以下三句【进去后点击字母键I进行insert模式,然后在空白行插入,插入完成后,按esc推出insert模式,接着按住shift + :,然后输入wq退出文件 】
- export PATH=$PATH:/usr/local/mysql/bin
- alias mysql=/usr/local/mysql/bin/mysql
- alias mysqladmin=/usr/local/mysql/bin/mysqladmin
5、输入source ~/.bash_profile让刚才的配置立即生效
bin$ source ~/.bash_profile
6、输入mysql -u root -p登陆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.0.21 MySQL Community Server - GPL
- Copyright (c) 2000, 2020, Oracle and/or its affiliates. All rights reserved.
- 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>
至此,大功告成!
【可选】7、如果觉得密码不合适,进入mysql后使用set password for root@localhost=password('xxxxxx');更改密码
8、输入 quit
,退出 MySQL。
如果觉得命令行操作不方便,也可以使用可视化软件,例如navicat
https://www.jianshu.com/p/199492627ccc
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。