rhel5上使用源代码安装mysql4.0.x_MySQL
1.在rhel5.1上安装mysql-4.0.18, configure的时候报如下错误:
configure: error: This is a linux system and Linux threads was not
found. On linux Linuxthreads should be used. Please install Linuxthreads
(or a new glibc) and try again. See the Installation chapter in the
Reference Manual for more information.
看来需要新版本的glibc;configure的时候增加参数 --with-named-thread-libs="-lpthread" ;顺利通过。
2.不过make的时候又出错了
mysqld.o: In function `main':
mysqld.cc:(.text+0x3ee0): undefined reference to `my_fast_mutexattr'
mysqld.o:mysqld.cc:(.text+0x4143): more undefined references to `my_fast_mutexattr' follow
collect2: ld returned 1 exit status
make[4]: *** [mysqld] Error 1
make[4]: Leaving directory `/usr/local/src/mysql-4.0.26/sql'
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory `/usr/local/src/mysql-4.0.26/sql'
make[2]: *** [all] Error 2
make[2]: Leaving directory `/usr/local/src/mysql-4.0.26/sql'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/usr/local/src/mysql-4.0.26'
make: *** [all] Error 2
在mysql-4.0.26/sql/sql_class.cc文件中的
#include
(约39行)语句下面写如下代码
#ifdef PTHREAD_ADAPTIVE_MUTEX_INITIALIZER_NP
pthread_mutexattr_t my_fast_mutexattr;
#endif
make顺利通过;
3.我按照上面的步骤坐下来仍然报错,最后直接修改mysql-4.0.26/sql/sql_class.cc文件,添加pthread_mutexattr_t my_fast_mutexattr;,不知道有没有什么影响。
bitsCN.com上一篇: 深入PHP数据缓存的使用说明
下一篇: Java中组合排列问题解决方法
推荐阅读
-
在Linux上安装和使用Rsync进行同步的教程
-
Linux上如何安装使用音乐软件SoundCloud
-
mac怎么装win10系统?Mac上使用VMware Fusion 安装Windows 10技术预览版方法
-
在Linux上使用Wine安装轻聊版的QQ的步骤讲解
-
如何在IntelliJ IDEA中使用Aspose.Words的API源代码?你只需安装这个
-
Linux上安装使用FTP服务器ProFTPD的教程
-
Kafka的使用之在CentOS上安装Kafka集群
-
【MySQL学习】在RHEL7.3上使用yum安装MySQL5.7
-
在Linux上安装Docker CE 使用从包中安装的方式
-
XEN虚拟机在Linux上的安装和使用教程