MySQL编译安装错误:No curses/termcap library found的解决方法

CentOS编译安装MySQL,./coonfigure时出现错误:

checking for termcap functions library... configure: error: No curses/termcap library found

解决方法:安装

1、下载网址:ftp://invisible-island.net/ncurses/

# tar -zvxf ncurses-5.7.tar.gz
# ./configure
# make
# make install 

2、安装了ncurses,依然有这个错误 ,接下来安装ncurses-devel.i386.rpm

下载网址:

http://rpm.pbone.net/index.php3/stat/4/idpl/6031397/dir/centos_other/com/ncurses-devel-5.6-7.20070612.i386.rpm.html

#rpm -ivh ncurses-devel-5.5-24.20060715.i386.rpm 

3、这样就可以对mysql进行配置、编译和安装了。

另附:

Starting MySQLCouldn‘t find MySQL manager or server [FAILED] (这里尚未验证)
解决方法:mv /etc/my.cnf /etc/my.cnf.old

参考网址:http://alvinqq.iteye.com/blog/748699

另附网址:http://www.cnblogs.com/shinhwa/archive/2010/05/06/1729047.html

时间: 2024-10-22 09:16:36

MySQL编译安装错误:No curses/termcap library found的解决方法的相关文章

error: No curses/termcap library found的解决办法

mysql版本:5.1.30 已经不记得这次是第几次安装mysql了,遇到这个问题倒是第一次. 之前在tar,./configure,make,make install 经典四步时,从来没有想过其中的过程,只觉得像例行公事一样,做就是了. 不幸的是,这次在./configure后,make时出现以下错误: make: *** No targets specified and no makefile found. stop. 本来这次还是想向别人请教的,后来转念一想,前段时间还告诉自己:遇到问题,

mysql编译安装后各种常见错误集锦

1.ERROR 2013 (HY000): Lost connection to MySQL server at 'reading initial communication packet', system error: 0 Tcpwarpper阻挡了,编辑/etc/hosts.allow,加上这两行 #/etc/hosts.allow sshd : ALL: ALLOW mysql: ALL : ALLOW 这个错误还有种可能是 删除了所有的mysql账号,解决方法见4 2.mysql ERR

No curses/termcap library found

CentOS6.5中编译Mysql时遇见如下错误 error: No curses/termcap library found 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 function

checking for termcap functions library... configure: error: No curses/termcap library found

源码编译mysql-5.1.17 软件,./configure的时候报错: 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 t

mysql编译安装(详细)(转载)

mysql编译安装(详细) 一.编译安装MySQL前的准备工作 安装编译源码所需的工具和库 yum install gcc gcc-c++ ncurses-devel perl 安装cmake,从http://www.cmake.org下载源码并编译安装 wget http://www.cmake.org/files/v2.8/cmake-2.8.10.2.tar.gz tar -xzvf cmake-2.8.10.2.tar.gz cd cmake-2.8.10.2 ./bootstrap ;

关系型数据库之Mysql编译安装及数据库基础(一)

一.为什么会有数据库呢? 刚开始接触数据库的朋友们,都会问数据库用来干啥的呢?字面表达的意思就是用来存储数据的仓库简称"数据库",在日常生活中我们与数据库相关的事务都是一大把一大把的,例如: 1.我们去做火车的时候需要实名认证,为什么安检人员可以通过我们的身份证就可以查询我们的个人信息呢,因为们都是有户口的群众,在公安居民信息库都录入着我们的信息,而们的信息也是存储在国家公民的信息库里面的,这也是我们所说的数据库,早期最传统的数据库就是文本文件,没当查询数据时都需要从头到尾把整个文件都

centos6.5 下 lamp编译安装 错误集锦

折腾了几天搞这个鬼东西,总结下经验 mysql 编译安装问题: 问题一. ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/usr/local/mysql/mysql.sock' (2) 1.先查看 /etc/rc.d/init.d/mysqld status 看看mysql服务是否已经启动.service mysqld start或service mysql start 2.chown -R mys

error: no curses/termcap library found

[[email protected] mysql-5.1.73]# ./configure checking build system type... x86_64-unknown-linux-gnu checking host system type... x86_64-unknown-linux-gnu checking target system type... x86_64-unknown-linux-gnu checking for a BSD-compatible install..

Linux(centos)下mysql编译安装教程

Linux下mysql编译安装教程 #查看linux发行版本号 cat /etc/issue #查看linux内核版本 uname -r 本文测试环境centOS6.6 一.Linux下编译安装MySQL前的准备工作 在线安装编译源码所需的工具和库(无法联网的话要事先准备软件,或者系统盘) yum install gcc gcc-c++ ncurses-devel perl 从mysql5.5起源代码编译需要借助cmake这款编译工具.从http://www.cmake.org下载cmake源码