Home > Database > Mysql Tutorial > body text

MySQL编译报错问题_MySQL

WBOY
Release: 2016-06-01 13:45:59
Original
1026 people have browsed it

bitsCN.com

今天在安装MySQL时,由于初始Linux默认选择安装的包不过,在执行./configure命令报出如下错误:
./configure --prefix=/usr/local/mysql --with-charset=utf8 --with-collation=utf8_general_ci --with-extra-charsets=gb2312
--with-plugins=innobase,innodb_plugin,myisam,heap,csv,federated,blackhole --enable-local-infile --enable-thread-safe-client
...
checking for tgetent in -lncursesw... no
checking for tgetent in -lncurses... no
checking for tgetent in -lcurses... no
checking for tgetent in -ltermcap... no
checking for tgetent in -ltinfo... no
checking for termcap functions library... configure: error: No curses/termcap library found
错误原因为缺少ncurses安装包,可以通过下载安装相应的软件包ncurses-devel来解决:
yum install ncurses-devel
另一个错误:
g++: not found
../depcomp: line 571: exec: g++: not found
make[1]: *** [my_new.o] Error 127
make[1]: Leaving directory `/opt/src/mysql-5.1.56/mysys'
make: *** [all-recursive] Error 1
错误原因是缺少G++编译器,可以通过挂载原来的系统盘,找到相应的套件来解决:
gcc-4.1.2-46.el5.x86_64.rpm
gcc-c++-4.1.2-46.el5.x86_64.rpm
在安装时可能提示有其他的依赖包要提前安装,根据提示均可在原来的系统盘中找到。

bitsCN.com
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!