在 Mac 下用 Homebrew 安装 MySQL各种解决思路
来源:SegmentFault
时间:2023-01-24 20:07:30 381浏览 收藏
本篇文章主要是结合我之前面试的各种经历和实战开发中遇到的问题解决经验整理的,希望这篇《在 Mac 下用 Homebrew 安装 MySQL各种解决思路》对你有很大帮助!欢迎收藏,分享给更多的需要的朋友学习~
经常不断的遇到在mac上使用brew这个包管理神器安装mysql出问题,今天在百度谷歌上搜索资料解决方案今天总算解决掉了,把这个解决方案分享出来
我的系统是 Mac OS X 10.12,准备安装的是 mysql 5.7.9
开始之前,假设你的brew已经安装好并可以使用。
安装mysql,在终端输入如下命令并回车:
brew install mysql
等待大概5分钟(视网速而定)执行完毕后,会看到这一段提示:
/usr/local/Cellar/mysql/5.7.9/bin/mysqld --initialize-insecure --user=comet ==> Caveats We've installed your MySQL database without a root password. To secure it run: mysql_secure_installation
可以看到brew在安装的时候已经初始过mysql了(不用再像网上说的再执行mysql_install_db命令),且当前没有密码于是我按照它的提示,执行命令:
mysql_secure_installation
需要密码时,直接回车,出现了如下的错误:
Securing the MySQL server deployment. Enter password for user root: Error: Access denied for user 'root'@'localhost' (using password: NO)
启动mysql服务的时候报错
mysql.server start Starting MySQL ... ERROR! The server quit without updating PID file (/usr/local/var/mysql/zhangzhingdeMBP.AirDream.pid).
在谷歌查询了关于这个报错PID文件的问题解决方案,执行下面的命令,(关于这个报错可以参考我的另外一篇文章 )
sudo rm -rf /usr/local/var/mysql/dev.work.err (dev.work is my hostname)
然后再启动mysql服务命令
mysql.server start
提示 .SUCCESS!这时tmp目录下有mysql.sock这个文件了,于是我继续执行 mysql_secure_installation
cometdeMacBook-Pro:~ comet$ mysql_secure_installation Securing the MySQL server deployment. Connecting to MySQL using a blank password. VALIDATE PASSWORD PLUGIN can be used to test passwords and improve security. It checks the strength of password and allows the users to set only those passwords which are secure enough. Would you like to setup VALIDATE PASSWORD plugin? Press y|Y for Yes, any other key for No: N // 这个选yes的话密码长度就必须要设置为8位以上,但我只想要6位的 Please set the password for root here. New password: // 设置密码 Re-enter new password: // 再一次确认密码 By default, a MySQL installation has an anonymous user, allowing anyone to log into MySQL without having to have a user account created for them. This is intended only for testing, and to make the installation go a bit smoother. You should remove them before moving into a production environment. Remove anonymous users? (Press y|Y for Yes, any other key for No) : Y // 移除不用密码的那个账户 Success. Normally, root should only be allowed to connect from 'localhost'. This ensures that someone cannot guess at the root password from the network. Disallow root login remotely? (Press y|Y for Yes, any other key for No) : n ... skipping. By default, MySQL comes with a database named 'test' that anyone can access. This is also intended only for testing, and should be removed before moving into a production environment. Remove test database and access to it? (Press y|Y for Yes, any other key for No) : y - Dropping test database... Success. - Removing privileges on test database... Success. Reloading the privilege tables will ensure that all changes made so far will take effect immediately. Reload privilege tables now? (Press y|Y for Yes, any other key for No) : y Success. All done!
OK!搞定,可以使用mysql -u root -p 进行密码连接了
PS:以后再也不担心此类问题报错了,妈妈再也不担心我mysql安装报错了
今天关于《在 Mac 下用 Homebrew 安装 MySQL各种解决思路》的内容就介绍到这里了,是不是学起来一目了然!想要了解更多关于mysql的内容请关注golang学习网公众号!
-
499 收藏
-
244 收藏
-
235 收藏
-
157 收藏
-
101 收藏
-
368 收藏
-
475 收藏
-
266 收藏
-
273 收藏
-
283 收藏
-
210 收藏
-
- 前端进阶之JavaScript设计模式
- 设计模式是开发人员在软件开发过程中面临一般问题时的解决方案,代表了最佳的实践。本课程的主打内容包括JS常见设计模式以及具体应用场景,打造一站式知识长龙服务,适合有JS基础的同学学习。
- 立即学习 542次学习
-
- GO语言核心编程课程
- 本课程采用真实案例,全面具体可落地,从理论到实践,一步一步将GO核心编程技术、编程思想、底层实现融会贯通,使学习者贴近时代脉搏,做IT互联网时代的弄潮儿。
- 立即学习 507次学习
-
- 简单聊聊mysql8与网络通信
- 如有问题加微信:Le-studyg;在课程中,我们将首先介绍MySQL8的新特性,包括性能优化、安全增强、新数据类型等,帮助学生快速熟悉MySQL8的最新功能。接着,我们将深入解析MySQL的网络通信机制,包括协议、连接管理、数据传输等,让
- 立即学习 497次学习
-
- JavaScript正则表达式基础与实战
- 在任何一门编程语言中,正则表达式,都是一项重要的知识,它提供了高效的字符串匹配与捕获机制,可以极大的简化程序设计。
- 立即学习 487次学习
-
- 从零制作响应式网站—Grid布局
- 本系列教程将展示从零制作一个假想的网络科技公司官网,分为导航,轮播,关于我们,成功案例,服务流程,团队介绍,数据部分,公司动态,底部信息等内容区块。网站整体采用CSSGrid布局,支持响应式,有流畅过渡和展现动画。
- 立即学习 484次学习
-
- 粗暴的外套
- 这篇文章出现的刚刚好,太详细了,写的不错,mark,关注作者了!希望作者能多写数据库相关的文章。
- 2023-03-07 20:42:46
-
- 体贴的绿茶
- 很详细,已加入收藏夹了,感谢up主的这篇技术贴,我会继续支持!
- 2023-02-26 06:06:32
-
- 无限的老虎
- 太细致了,已加入收藏夹了,感谢楼主的这篇技术贴,我会继续支持!
- 2023-02-08 09:58:01
-
- 英勇的机器猫
- 这篇技术贴出现的刚刚好,太细致了,感谢大佬分享,收藏了,关注up主了!希望up主能多写数据库相关的文章。
- 2023-02-05 07:40:37
-
- 迷人的黑猫
- 感谢大佬分享,一直没懂这个问题,但其实工作中常常有遇到...不过今天到这,帮助很大,总算是懂了,感谢up主分享技术贴!
- 2023-02-02 15:02:56
-
- 俭朴的小天鹅
- 太给力了,一直没懂这个问题,但其实工作中常常有遇到...不过今天到这,看完之后很有帮助,总算是懂了,感谢作者大大分享博文!
- 2023-01-25 02:42:06