摘要:MySQL 5.7設置root密碼方法update mysql.user set authentication_string=PASSWORD('****') where user='root' and host='localhost';
成都創(chuàng)新互聯(lián)成立以來不斷整合自身及行業(yè)資源、不斷突破觀念以使企業(yè)策略得到完善和成熟,建立了一套“以技術(shù)為基點,以客戶需求中心、市場為導向”的快速反應體系。對公司的主營項目,如中高端企業(yè)網(wǎng)站企劃 / 設計、行業(yè) / 企業(yè)門戶設計推廣、行業(yè)門戶平臺運營、成都App定制開發(fā)、手機網(wǎng)站制作設計、微信網(wǎng)站制作、軟件開發(fā)、服務器托管等實行標準化操作,讓客戶可以直觀的預知到從成都創(chuàng)新互聯(lián)可以獲得的服務效果。
操作系統(tǒng):
[root@localhost ~]# cat /etc/redhat-release
CentOS Linux release 7.1.1503
MysQL版本5.7
mysql> select version();
+-----------+
| version() |
+-----------+
| 5.7.9 |
+-----------+
1 row in set (0.00 sec)
安裝MySQL的yum repo源:
[root@localhost ~]# rpm -ivh http://repo.mysql.com//mysql57-community-release-el7-7.noarch.rpm
安裝MySQL
[root@localhost ~]# yum -y install mysql-community-server mysql-community-client
修改mysql配置文件跳過密碼驗證
[root@localhost ~]# vim /etc/my.cnf
[mysqld]
skip-grant-tables
skip-networking
重啟MySQL:
[root@localhost ~]# systemctl mysqld restart
匿名登錄MySQL設置root密碼:
[root@localhost ~]# mysql -uroot -p
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.7.9 MySQL Community Server (GPL)
Copyright (c) 2000, 2015, 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> update mysql.user set PASSWORD=PASSWORD('test') where user='root' and host='localhost';
ERROR 1054 (42S22): Unknown column 'PASSWORD' in 'field list'
提醒:從5.7開始使用authentication_string不再使用password字段存放密碼所以提示出錯。
mysql> ALTER USER 'root'@'localhost' IDENTIFIED BY 'test' ;
ERROR 1131 (42000): You are using MySQL as an anonymous user and anonymous users are not allowed to change passwords
查看mysql.user表密碼字段:
mysql>
desc mysql.user;
mysql> update mysql.user set authentication_string=PASSWORD('test') where user='root' and host='localhost';
Query OK, 1 row affected, 1 warning (0.07 sec)
Rows matched: 1 Changed: 1 Warnings: 1
mysql> flush privileges;
Query OK, 0 rows affected (0.06 sec)
mysql> select host,user,password from mysql.user;
mysql> exit;
Bye
取消跳過密碼認證:
[root@localhost ~]# vim /etc/my.cnf
[mysqld]
#skip-grant-tables
#skip-networking
重啟MySQL:
[root@localhost ~]# systemctl mysqld restart
必須使用alter user重置密碼:
mysql> show databases;
ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.
重新設置新密碼:
mysql> ALTER USER 'root'@'localhost' IDENTIFIED BY '********'
ERROR 1820 (HY000): You must SET PASSWORD before executing this statement
密碼需要復雜度要求:
mysql> SHOW VARIABLES LIKE 'validate_password%';
+--------------------------------------+--------+
| Variable_name | Value |
+--------------------------------------+--------+
| validate_password_dictionary_file| |
| validate_password_length | 8 |
| validate_password_mixed_case_count| 1 |
| validate_password_number_count| 1 |
| validate_password_policy | MEDIUM |
| validate_password_special_char_count| 1 |
+--------------------------------------+--------+
6 rows in set (0.00 sec)
mysql> set password=password('xxxx');
Query OK, 0 rows affected (0.00 sec)
網(wǎng)站標題:MySQL5.7遺忘root密碼重置記錄
當前地址:http://jinyejixie.com/article8/psphip.html
成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供域名注冊、App設計、軟件開發(fā)、外貿(mào)網(wǎng)站建設、網(wǎng)站維護、動態(tài)網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)