mac下安裝mysql忘記密碼的修改方法
一、mac下安裝MySQL數(shù)據(jù)庫
1.下載MySQL數(shù)據(jù)庫
下載地址:訪問MySQL的官網(wǎng)http://www.mysql.com/downloads/ ,進行下載。
進入MySQL的下載界面(http://www.mysql.com/downloads/mysql/)
下載x86,64bit的dmg文件:直接選擇最下面的“No thanks,just take me to downloads!”
2.安裝MySQL數(shù)據(jù)庫
打開MySQL安裝包后,點擊安裝主程序pkg文件。
3.啟動MySQL數(shù)據(jù)庫
打開MYSQL數(shù)據(jù)庫文件方式,在系統(tǒng)偏好設置中打開,點擊MySQL,start mysql server ,即可啟動MySQL。
4.終端登錄MySQL數(shù)據(jù)庫:
mysql -u root -p
回車,默認密碼為空。出現(xiàn)password后回車即可。
二、安裝數(shù)據(jù)庫后發(fā)現(xiàn)忘記了數(shù)據(jù)庫密碼
1.首先關閉MySQL數(shù)據(jù)庫
系統(tǒng)偏好設置中關閉MySQL,stop mysql server
2.進入安全模式
? bin sudo su Password: Sorry, try again. Password: sh-3.2# ./mysqld_safe --skip-grant-tables & [1] 3477 sh-3.2# 2017-06-27T08:32:37.6NZ mysqld_safe Logging to '/usr/local/mysql-5.7.18-macos10.12-x86_64/data/localhost.err'. 2017-06-27T08:32:37.6NZ mysqld_safe Starting mysqld daemon with databases from /usr/local/mysql-5.7.18-macos10.12-x86_64/data sh-3.2#
3.重新啟動一個終端
~ mysql -u root -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 16 Server version: 5.7.18 MySQL Community Server (GPL) Copyright (c) 2000, 2017, 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.
4.輸入命令
mysql> FLUSH PRIVILEGES; Query OK, 0 rows affected (0.06 sec)
5.重新設置密碼
mysql> SET PASSWORD FOR root@'localhost' = PASSWORD('root'); Query OK, 0 rows affected, 1 warning (0.02 sec)
6.再次輸入命令
mysql> FLUSH PRIVILEGES; Query OK, 0 rows affected (0.00 sec)
以上所述是小編給大家介紹的mac下安裝mysql忘記密碼的修改方法,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對腳本之家網(wǎng)站的支持!
- MAC下MYSQL數(shù)據(jù)庫密碼忘記的解決辦法
- Mac系統(tǒng)下MySql下載MySQL5.7及詳細安裝圖解
- Mac OS系統(tǒng)下mysql 5.7.20安裝教程圖文詳解
- linux/mac安裝mysql忘記密碼的解決辦法
- 在Mac OS X中配置Apache+PHP+MySQL運行環(huán)境的詳細步驟
- mac安裝mysql初始密碼忘記怎么辦
- Mac下安裝mysql5.7.18的詳細步驟
- Mac下MySQL安裝配置教程
- MySql在Mac上的安裝與配置詳解
- Mac系統(tǒng)下源碼編譯安裝MySQL 5.7.17的教程
- MAC 中mysql密碼忘記解決辦法
- 在Mac系統(tǒng)上配置MySQL以及Squel Pro
相關文章
MySQL ERROR 1045 (28000): Access denied for user ''root''@''
這篇文章主要介紹了MySQL ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO) 的原因分解決辦法的相關資料,需要的朋友可以參考下2016-05-05CentOS 7 中以命令行方式安裝 MySQL 5.7.11 for Linux Generic 二進制版本教程詳解
MySQL 目前的最新版本是 5.7.11,在 Linux 下提供特定發(fā)行版安裝包(如 .rpm)以及二進制通用版安裝包(.tar.gz)。這篇文章主要介紹了CentOS 7 中以命令行方式安裝 MySQL 5.7.11 for Linux Generic 二進制版本教程詳解的相關資料,需要的朋友可以參考下2016-10-10