1. 程式人生 > >安裝mysql常見錯誤及解決

安裝mysql常見錯誤及解決

裝mysql時出現以下錯誤:

1.

checking for tgetent in -ltermcap... no
checking for termcap functions library... configure: error: No curses/termcap library found

解決方案:

yum -y install ncurses-devel

2.

../depcomp: line 571: exec: g++: not found

解決方案:

使用如下兩個命令就可把gcc,gcc-c++統統安裝上:

      yum -y install gcc

      yum -y install gcc-c++

3.

命令:mysqladmin password '密碼'

bash:mysqladmin not found

解決方案:mysqladmin 前加上路徑名【去configure --prefix=xxx指定的xxx下的mysql/bin裡執行它】

4.

報錯:/usr/local/mysql/bin/mysqld: unknown option ‘–skip-bdb’

解決方案:如果系統中有一個存在於/etc/mysql中的my.cnf,更改這個/etc/mysql/my.cnf的名字即可

5.

報錯:error: 'Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)

解決方案:ln -s /var/lib/mysql/mysql.sock /tmp/mysql.sock

6.用grant all privileges 給mysql授權時,出現ERROR 1290(HY000)錯誤  

在用grant all privileges on *.* to [email protected] identified by "123" 給mysql資料庫,作遠端訪問授權時,出現錯誤:
ERROR 1290 (HY000):The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement.
其解決辦法如下:
flush privileges。
再用grant all 命令。