LAMP 配置MYsql
問題
在windows操作系統安裝mysql數據庫
碰到Error
(
) Access Denied for user
root
@
localhost
(Using password:NO)錯誤時
你需要重新設置密碼
LAMP 配置MYsql問題
的具體方法是
先在安裝目錄找到my
ini配置文件
打開配置文件
找到[mysqld]一行
在下面添加skip
grant
tables後保存該文件
重新啟mysql動服務
windows
下裝了mysql
error
刪除實例後服務就啟動不了
試了很多方法都不能解決
最後重裝了個
的beta
出現剛裝
時的初始錯誤error
最終錯誤解決
mysql
u root
use mysql
update user set password=old_password(
scf
) where user=
root
and host=
localhost
;
FLUSH PRIVILEGES;
這樣Error
(
) Access Denied for user
root
@
localhost
(Using password:NO)錯誤
就可以迎刃而解了!
From:http://tw.wingwit.com/Article/Fault/201311/10335.html