MySQL 5.7 第一次登陸用戶權限問題

因爲5.7 的策略已經改變。所以要作點事方可登陸。mysql

Step 1:sql

先退出mysqlsocket

Step 2:ide

mysqld_safe --skip-grant-tables &ui

你會看到如下信息:this

2017-04-17T09:27:25.447837Z mysqld_safe Logging to '/var/log/mysql/mysqld.log'.
2017-04-17T09:27:25.467994Z mysqld_safe Starting mysqld daemon with databases from /data/mysqlspa

Step 3:插件

ps -ef | grep mysql
root 131849 112122 0 17:27 pts/0 00:00:00 /bin/sh /usr/bin/mysqld_safe --skip-grant-tables
mysql 132011 131849 1 17:27 pts/0 00:00:00 /usr/sbin/mysqld --basedir=/usr --datadir=/data/mysql --plugin-dir=/usr/lib64/mysql/plugin --user=mysql --skip-grant-tables --log-error=/var/log/mysql/mysqld.log --pid-file=/var/run/mysqld/mysqld.pid --socket=/data/mysql/mysql.sock
root 132045 112122 0 17:27 pts/0 00:00:00 grep mysqlrest

Step 4:code

執行:

mysql

mysql> use mysql;

mysql> desc user;

mysql> select user,host,authentication_string,password_expired from user;

 

更改密碼的指令:

mysql> update user set authentication_string=password('xxxxxx') where user='root';
Query OK, 1 row affected, 1 warning (0.01 sec)
Rows matched: 1 Changed: 1 Warnings: 1

mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)

mysql> exit
Bye

 Step 5:

/etc/rc.d/init.d/mysqld restart

2017-04-17T09:40:42.707647Z mysqld_safe mysqld from pid file /var/run/mysqld/mysqld.pid ended
中止 mysqld: [肯定]
正在啓動 mysqld: [肯定]
[1]+ Done mysqld_safe --skip-grant-tables

證明一下:

mysql -p
Enter password:   <----- 剛纔輸入的密碼
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 5
Server version: 5.7.18-log

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.

mysql>

 

來來,設定好了進來爽一下,

mysql> show databases;
ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.
mysql>

額,必須重置?必須經過alter user重置一下密碼。好吧,乖乖的再重置一下。

mysql> alter user root@'localhost' identified by 'your_are_pig';
ERROR 1819 (HY000): Your password does not satisfy the current policy requirements

額,看樣子密碼太過簡單,系統讓你複雜一點。好吧,複雜一點吧。

mysql> alter user 'root'@'localhost' identified by 'What!!The!!Hell##';
ERROR 1819 (HY000): Your password does not satisfy the current policy requirements

額,仍是太簡單?好吧,大小寫,加英文字,加符號,加數字試試。。。。

mysql> alter user 'root'@'localhost' identified by 'What!!995##';
Query OK, 0 rows affected (0.01 sec)

終於。。。。改。。。成。。。。。功。。。。。。。。再來玩一下。。。

mysql> show database;
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'database' at line 1

額。。。。唉,少了個s。再來。。。。

mysql> show databases;

不容易啊。。。終於改好能夠用了。

 

基本上就搞定了。

若是,你不想那麼複雜的密碼,想把該策略關了,那麼繼續看下去。。。

mysql> SHOW VARIABLES LIKE 'validate_password%';

validate_password_dictionary_file       : 插件用於驗證密碼強度的字典文件路徑。
validate_password_length                   : 密碼最小長度。
validate_password_mixed_case_count : 密碼至少要包含的小寫字母個數和大寫字母個數。
validate_password_number_count   : 密碼至少要包含的數字個數。
validate_password_policy                   : 密碼強度檢查等級,0/LOW、1/MEDIUM、2/STRONG。
validate_password_special_char_count: 密碼至少要包含的特殊字符數。

 
其中關於validate_password_policy-密碼強度檢查等級:
0.LOW    > 只檢查長度。
1.MEDIUM      > 檢查長度、數字、大小寫、特殊字符。
2.STRONG      > 檢查長度、數字、大小寫、特殊字符字典文件。

估計有插件在檢查策略。

mysql> show plugins;

 

好吧,估計就是這個了,試試改 ACTIVE 爲 DISABLE

簡單一點,不下指令了,直接改 my.cnf 文件:

[mysqld]

validate_password=off

而後重啓一下mysql,再執行

mysql> show plugins;
。。。截掉前一大半內容。。。
| FEDERATED                  | DISABLED | STORAGE ENGINE     | NULL                 | GPL     |
| BLACKHOLE                  | ACTIVE   | STORAGE ENGINE     | NULL                 | GPL     |
| partition                  | ACTIVE   | STORAGE ENGINE     | NULL                 | GPL     |
| ARCHIVE                    | ACTIVE   | STORAGE ENGINE     | NULL                 | GPL     |
| ngram                      | ACTIVE   | FTPARSER           | NULL                 | GPL     |
| validate_password          | DISABLED | VALIDATE PASSWORD  | validate_password.so | GPL     |
+----------------------------+----------+--------------------+----------------------+---------+
45 rows in set (0.01 sec)

這時,能夠看到 validate_password 已經爲disable 狀態了。

接下來,順便也建個用戶賬號和密碼吧。

建新用戶:

先列出用戶的表結構看看和以前有沒有區別。

mysql> desc mysql.user;
+------------------------+-----------------------------------+------+-----+-----------------------+-------+
| Field                  | Type                              | Null | Key | Default               | Extra |
+------------------------+-----------------------------------+------+-----+-----------------------+-------+
| Host                   | char(60)                          | NO   | PRI |                       |       |
| User                   | char(32)                          | NO   | PRI |                       |       |
| Select_priv            | enum('N','Y')                     | NO   |     | N                     |       |
| Insert_priv            | enum('N','Y')                     | NO   |     | N                     |       |
| Update_priv            | enum('N','Y')                     | NO   |     | N                     |       |
| Delete_priv            | enum('N','Y')                     | NO   |     | N                     |       |
| Create_priv            | enum('N','Y')                     | NO   |     | N                     |       |
| Drop_priv              | enum('N','Y')                     | NO   |     | N                     |       |
| Reload_priv            | enum('N','Y')                     | NO   |     | N                     |       |
| Shutdown_priv          | enum('N','Y')                     | NO   |     | N                     |       |
| Process_priv           | enum('N','Y')                     | NO   |     | N                     |       |
| File_priv              | enum('N','Y')                     | NO   |     | N                     |       |
| Grant_priv             | enum('N','Y')                     | NO   |     | N                     |       |
| References_priv        | enum('N','Y')                     | NO   |     | N                     |       |
| Index_priv             | enum('N','Y')                     | NO   |     | N                     |       |
| Alter_priv             | enum('N','Y')                     | NO   |     | N                     |       |
| Show_db_priv           | enum('N','Y')                     | NO   |     | N                     |       |
| Super_priv             | enum('N','Y')                     | NO   |     | N                     |       |
| Create_tmp_table_priv  | enum('N','Y')                     | NO   |     | N                     |       |
| Lock_tables_priv       | enum('N','Y')                     | NO   |     | N                     |       |
| Execute_priv           | enum('N','Y')                     | NO   |     | N                     |       |
| Repl_slave_priv        | enum('N','Y')                     | NO   |     | N                     |       |
| Repl_client_priv       | enum('N','Y')                     | NO   |     | N                     |       |
| Create_view_priv       | enum('N','Y')                     | NO   |     | N                     |       |
| Show_view_priv         | enum('N','Y')                     | NO   |     | N                     |       |
| Create_routine_priv    | enum('N','Y')                     | NO   |     | N                     |       |
| Alter_routine_priv     | enum('N','Y')                     | NO   |     | N                     |       |
| Create_user_priv       | enum('N','Y')                     | NO   |     | N                     |       |
| Event_priv             | enum('N','Y')                     | NO   |     | N                     |       |
| Trigger_priv           | enum('N','Y')                     | NO   |     | N                     |       |
| Create_tablespace_priv | enum('N','Y')                     | NO   |     | N                     |       |
| ssl_type               | enum('','ANY','X509','SPECIFIED') | NO   |     |                       |       |
| ssl_cipher             | blob                              | NO   |     | NULL                  |       |
| x509_issuer            | blob                              | NO   |     | NULL                  |       |
| x509_subject           | blob                              | NO   |     | NULL                  |       |
| max_questions          | int(11) unsigned                  | NO   |     | 0                     |       |
| max_updates            | int(11) unsigned                  | NO   |     | 0                     |       |
| max_connections        | int(11) unsigned                  | NO   |     | 0                     |       |
| max_user_connections   | int(11) unsigned                  | NO   |     | 0                     |       |
| plugin                 | char(64)                          | NO   |     | mysql_native_password |       |
| authentication_string  | text                              | YES  |     | NULL                  |       |
| password_expired       | enum('N','Y')                     | NO   |     | N                     |       |
| password_last_changed  | timestamp                         | YES  |     | NULL                  |       |
| password_lifetime      | smallint(5) unsigned              | YES  |     | NULL                  |       |
| account_locked         | enum('N','Y')                     | NO   |     | N                     |       |
+------------------------+-----------------------------------+------+-----+-----------------------+-------+
45 rows in set (0.00 sec)

建用戶步驟:

mysql> create user mysql identified by 'mysql.pass';
Query OK, 0 rows affected (0.00 sec)

mysql> create database testDB;
Query OK, 1 row affected (0.00 sec)

mysql> grant all on testDB.* to mysql;
Query OK, 0 rows affected (0.00 sec)

 

試試看。。。

 

 

成功。

相關文章
相關標籤/搜索