程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> 關於MYSQL數據庫 >> 讓mysql在gentoo上跑起來

讓mysql在gentoo上跑起來

編輯:關於MYSQL數據庫

      在 gentoo 上安裝了 mysql, 但運行時總是的得到這個錯誤信息:

      Access denied for user 'root'@'localhost'

      可以這樣解決:

      # /etc/init.d/mysql stop

      # mysqld_safe --user=mysql --skip-grant-tables --skip-networking &

      # mysql -u root mysql

      mysql> UPDATE user SET Password=PASSWORD('yournewpasswd') where USER='root';

      mysql> FLUSH PRIVILEGES;

      mysql> quit

      # /etc/init.d/mysql restart

      搞定。

      測試一下:

      $ mysqladmin -uroot -pmypasswd ping

      mysqld is alive

      運行:

      $ mysql -uroot -p

      Enter password:

      Welcome to the MySQL monitor. Commands end with ; or g.

      Your MySQL connection id is 6

      Server version: 5.0.44-log Gentoo Linux mysql-5.0.44

      Type 'help;' or 'h' for help. Type 'c' to clear the buffer.

      mysql>

    1. 上一頁:
    2. 下一頁:
    Copyright © 程式師世界 All Rights Reserved