MySQL 5.6 關於登陸的初始化設定
最近研究一下MySQL 5.6 版本發現安裝後,使用空密碼無法登陸
安裝的過程中有這樣的一句話:
A RANDOM PASSWORD HAS BEEN SET FOR THE MySQL root USER !
You will find that password in '/root/.mysql_secret'.
You must change that password on your first connect,
no other statement but 'SET PASSWORD' will be accepted.
See the manual for the semantics of the 'password expired' flag.
大概意思就是 一個隨機的密碼已經生成 可以在 '/root/.mysql_secret'. 中找到
第一次連線必須變更密碼 且只能使用 'SET PASSWORD' 命令
在user 表中新增加了'password expired' 列,也就是密碼過期
我們來啟動mysql 然後登陸
service mysql start
mysql -uroot -pvssAWF0O
#密碼是在 more .mysql_secret 裡面記錄
# The random password set for the root user at Mon Mar 25 11:13:11 2013 (local time): vssAWF0O
Warning: Using a password on the command line interface can be insecure.
Welcome to the MySQL monitor. Commands end with ; or g.
Your MySQL connection id is 1
Server version: 5.6.10
Copyright (c) 2000, 2013, 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> select 1;
ERROR 1820 (HY000): You must SET PASSWORD before executing this statement
#提示必須現更改密碼才能執行語句
mysql> set password=password('password2013');
Query OK, 0 rows affected (0.00 sec)
mysql> select 1;
+---+
| 1 |
+---+
| 1 |
+---+
1 row in set (0.03 sec)
mysql>
5.6版本的安全性大大增強了,其他的新特性的等待後續研究!
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/26764973/viewspace-1443594/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- linux免密登陸設定Linux
- Linux設定免密登陸Linux
- MySQL 關於Table cache設定MySql
- MYSQL8初始化設定MySql
- 盤點Mysql的登陸方式MySql
- 關於SSH免密登陸普通使用者
- 關於 MySQL 時區設定的一個常用 sql 命令MySql
- ssh方式登入雲伺服器時設定別名登陸伺服器
- 關於mysql字符集及排序規則設定MySql排序
- MySQL運維實戰(5.6) 字符集設定對mysqldump的影響MySql運維
- MySQL登陸命令列引數MySql命令列
- 設定Mysql5.6允許外網訪問詳細流程MySql
- 關於onethink移植後登陸不了後臺問題的解決
- css中關於table的相關設定CSS
- postman關於斷言的設定Postman
- MySQL 遠端登陸踩坑記MySql
- MySQL login-path 本地快捷登陸MySql
- Linux中如何設定SSH金鑰提升登陸安全性Linux
- 關於移動端rem的設定REM
- 登陸鑑權方案設計
- 2.2 - Laravel - 5.6 - Facade - 關於 facade 載入Laravel
- SSH安全登陸原理:密碼登陸與公鑰登陸密碼
- MySQL 5.6的表壓縮MySql
- 前端新手的ubuntu初始化設定前端Ubuntu
- HTML頁面關於高分屏的設定HTML
- 關於遊戲中“設定介面”的思考遊戲
- CentOS 下 MySQL 5.6 基於 RPM 的下載、安裝、配置CentOSMySql
- 設定ssh登陸終端的歡迎資訊(linux登入配置,/etc/motd有趣的圖案【佛祖保佑】)Linux
- Win10系統怎麼使用PowerShell快速啟動關閉登陸MySQLWin10MySql
- 白日夢的MySQL專題(第33篇):各種登陸MySQL的騷操作MySql
- 關於MySql 設定一個間隔時間 執行一個事件MySql事件
- 關於border設定無邊框
- 登陸註冊按鈕的樣式設計
- 關於類的物件建立與初始化物件
- [BUG反饋]關於設定選單的BUG
- 關於mysql設定varchar 欄位的預設值''和null的區別,以及varchar和char的區別MySqlNull
- win10系統怎麼設定登陸影像為圓形_win10將登入介面頭像設定為圓形教程Win10
- MySQL慢查詢日誌相關設定MySql
- tp登陸