数据库

位置:IT落伍者 >> 数据库 >> 浏览文章

CentOS编译Mysql 4.0.27数据库问题解决


发布日期:2022年07月01日
 
CentOS编译Mysql 4.0.27数据库问题解决

现在好多人都用起了centos但有些特殊要求还必须安装mysql的数据库在第一次安装过程中还遇到了不少问题特把这次安装过程记录下来以供遇到类似问题的朋友参考

首先下载mysqltargz解压进入目录编译

编译时出现错误checking LinuxThreadsNot found

这是由于nptl与linuxthreads的分别造成的可以在/usr/include/pthreadh中增加 /* Linuxthreads */解决这个问题

echo /* Linuxthreads */ >> /usr/include/pthreadh

编译时加入 –withpthread 及 –withnamedthreadlib:

重新编译再次出错:configure: error: No curses/termcap library found

这是因为没有安装ncurses接下来先安装它

yum install ncursesdevel

下来继续编译编译的时候又出现了错误: cannot find lreadline

这个错误是由于没有readline库文件造成的错误安装readline库文件

yum install readlinedevel

/configure –withpthread –withnamedthreadlib=lpthread 再一次进行编译

上一篇:MySQL数据导入导出工具mysqlimport简介

下一篇:MySQL的远程连接出现错误提示分析