Linux Windows 修改 mysql 密碼

2021-09-13 11:46:15 字數 1137 閱讀 4765

在記住原來的密碼下

mysql -u root -p

# 進入 mysql 介面

use mysql;

update

user

set password=password(

"xinmima"

)where

user

='root'

;flush privileges;\q

# 重新登入立即生效

忘記原來的密碼

net stop mysql
mysqld --console --skip-grant-tables --shared-memory
保持原來的 cmd 視窗, 新開啟乙個 cmd 視窗.

mysql -uroot -p
不用輸入密碼, 直接回車, 之後設定密碼為空

use mysql;

update

user

set authentication_string=

''where

user

='root'

;

在原來的 cmd 視窗, 按 ctrl + c 結束. 重啟 mysql.

net start mysql
之後可以直接登入回車就可以正常修改密碼.

alter

user

'root'@'localhost' identified with mysql_native_password by 'xinmima';

linux,windows 修改 網絡卡MTU 值

1,linux 修改網絡卡mtu 最小單元 ifconfig eth0 mtu 1400 2,linux 檢視修改是否成功 root localhost ifconfig grep 1400 up broadcast running multicast mtu 1400 metric 1 3,win...

Linux Windows檔案編碼

在linux和windows下,經常需要共享一些文件,最方便的方法就是編碼均設定為utf 8。但是經常會因為win下預設為gb2312而導致到linux檢視有問題 此時可以使用openoffice進行檢視,並選擇編碼為gb2312 如果要搞成utf 8的,那就得直接在openoffice裡ctrl ...

終極之戰 Linux Windows

1.開源 當你買了一輛車,但你看不到引擎蓋下面是什麼?當你使用windows驅動系統時就是如此。但是,相比之下,linux完全是乙個開源專案。你可以看看linux作業系統的源 這是乙個優點。linux免費向公眾開放!但是,windows並非如此!您無需支付美元即可獲得linux發行版的真正副本。所以...