博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Mac home-brew 安装mysql并设置密码
阅读量:6223 次
发布时间:2019-06-21

本文共 1659 字,大约阅读时间需要 5 分钟。

hot3.png

安装mysql

brew install mysql

卸载mysql

brew remove mysqlbrew cleanup

安装后登录mysql提示需要密码,无法登录!

解决方法:

第一步:如果mysql服务正在进行,将之停止。(这个命令可以看brew安装完mysql在下面有几个常用命令)

brew services stop mysql

第二步:在终端中以管理员权限启动mysqld_safe,命令如下:

sudo /usr/local/mysql/bin/mysqld_safe --skip-grant-tables

执行结果如下:

2016-06-12T08:29:17.6NZ mysqld_safe Logging to '/usr/local/mysql/data/lyqdeMacBook-Pro.local.err'.2016-06-12T08:29:17.6NZ mysqld_safe Starting mysqld daemon with databases from /usr/local/mysql/data

第三步:不要关闭当前的终端窗口,新建一个终端窗口,输入如下命令,回车登录mysql

/usr/local/mysql/bin/mysql

登录后,看到欢迎信息:

Welcome to the MySQL monitor.  Commands end with ; or \g.Your MySQL connection id is 37Server version: 5.7.13 MySQL Community Server (GPL)Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.Oracle is a registered trademark of Oracle Corporation and/or itsaffiliates. Other names may be trademarks of their respectiveowners.Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.mysql>

复制代码

打开"mysql"这个数据库,SQL如下:

mysql> use mysql;

看到结果:

Reading table information for completion of table and column namesYou can turn off this feature to get a quicker startup with -ADatabase changedmysql>

然后,更新root的密码,SQL如下:

mysql> update user set authentication_string=password('root') where Host='localhost' and User='root';

注意:

①有的版本的mysql中,密码可能存储在password字段中,可以使用"describe user;"命令来查看下表结构再操作

②authentication_string的值一定通过password函数来计算(password('root'))

 

执行结果如下:

Query OK, 1 row affected, 1 warning (0.01 sec)Rows matched: 1  Changed: 1  Warnings: 1

退出mysql(执行sql语句:exit)

最后一步:将mysqld_safe进程杀死,重启mysqld。

mysql.server start

至此,问题解决。

转载于:https://my.oschina.net/lovederh/blog/1525759

你可能感兴趣的文章
IOS-数据缓存
查看>>
form表单中的 action=./?> 是什么意思
查看>>
asp.net Jquery表单html和后台交互
查看>>
vs2010 setup 打包 安装 BAT批处理实现自动安装软件功能
查看>>
机器视觉开源处理库汇总
查看>>
CentOS 5.4 final下Systemtap的安装
查看>>
虚拟地址
查看>>
自然界事物的组织形式
查看>>
对double数据类型的数据保留两位小数,并且进行四舍五入
查看>>
using the easy connect naming method 简单连接測试
查看>>
STM32系列ARM单片机介绍
查看>>
基于commons-net实现ftp创建文件夹、上传、下载功能
查看>>
《程序猿面试宝典》学习记录6
查看>>
[Winform]Media Player com组件应用中遇到的问题
查看>>
leetcode——Implement strStr() 实现字符串匹配函数(AC)
查看>>
Python sql注入 过滤字符串的非法字符
查看>>
glGetString(GL_VERSION) returns “OpenGL ES-CM 1.1” but my phone supports OpenGL 2
查看>>
RDA PQ工具使用 (屏参调整)
查看>>
Servlet学习笔记(三):HTTP请求与响应
查看>>
Linux搭建JavaEE开发环境与Tomcat——(十)
查看>>