7、mysql建立資料庫失敗,提示Access denied for user ”@’localhost’

來源:互聯網
上載者:User

    今天在串連自己電腦上的mysql時,提示“Access denied for user ''@'localhost' to database”。

初步判斷是使用者不對,因為localhost前面都沒有使用者名稱,而我是以特定使用者登入的,是肯定有使用者名稱的。以前改過電腦的域,可能是這個原因所致。

解決方案:

1)採用[1]中提供的重新初始化密碼:

/usr/bin/mysql_secure_installation

2)可以嘗試採用[2]中方法(我未試,方法1已解決問題)

    另外,通過show grants;查看授權,通過 select current_user();查看目前使用者,通過select user,host,password from mysql.user; 查看相關的使用者名稱和host。

參考

【1】 使用mysql的一個執行個體

http://www.cnblogs.com/mydomain/archive/2011/08/18/2144961.html

【2】 同類問題解決經驗

http://bbs.linuxpk.com/thread-22953-1-6.html

① 關閉mysql:

# service mysqld stop

② 然後:

# mysqld_safe --skip-grant-tables

③ 啟動mysql:

# service mysqld start

④ mysql -u root

⑤ mysql> use mysql

⑥ mysql> UPDATE user SET Password=PASSWORD('xxx') WHERE user='root';

⑦ mysql> flush privileges;

⑧ mysql>\q

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.