1、概述 mysql
linux下很久沒用mysql,root的密碼忘記了,登不上去。網上查了下資料能夠從新設置密碼。 linux
2、獲取密碼步驟 sql
1.編輯文件$vim /etc/my.cof vim
在[MySQLd]的下面加上:skip-grant-tables ui
2.重啓mysql rest
$/etc/init.d/mysqld restart ip
3.而後登錄並修改密碼 it
$/usr/bin/MySQL table
$MySQL> USE MySQL ;
$MySQL> UPDATE user SET Password = password(‘new-password’) WHERE User = ‘root’ ;
$MySQL> flush privileges ;
$MySQL> quit; 密碼
4.從新改回$/etc/my.cof
去掉1步驟加的字段
5.再重啓mysql
$/etc/init.d/mysqld restart
6.搞定,能夠用新設置的密碼登錄了