这节描述在使用 MIT-pthreads 所涉及的一些问题。
注意:在Linux上,你应该不使用MIT-pthreads而是安装LinuxThreads!见4.11.5 Linux 注意事项(所有的Linux 版本)。
如果你的系统不提供原生的线程支持,你将需要使用MIT-pthreads包构造MySQL。这包括大多数FreeBSD系统、SunOS 4.x 、Solaris 2.4和更早版本及其他,见4.2 MySQL 支持的操作系统。
- 在大多数系统上,你能通过使用
configure
,用--with-mit-threads
选项来强迫运行MIT-pthreads:shell> ./configure -- with-mit-threads
当使用MIT-pthreads时,不支持在一个非源代码目录构造,因为我们想要使我们对代码的改变减到最小。
- MIT-pthreads不支持用于实现Unix套接字
的AF_UNIX
协议。这意味着如果你使用MIT-pthreads进行编译,所有的链接必须使用TCP/IP进行(它有点慢)。如果在构造MySQL后,你发现你不能与本地的服务器连接,很可能是客户程序正在试图用缺省的Unix套接字与localhost
连接。使用主机选择(-h
或--host
)明确地指定本地的主机名字,尝试做一个TCP/IP连接到mysql
。 - 决定是否使用MIT-pthreads的检查仅在处理服务器代码的配置过程期间发生。如果已经用
--without-server
配置了分发并只构造客户代码,客户将不知道MIT-pthreads是否正在被使用并且是否使用缺省的Unix套接字连接。因为Unix套接字不能在MIT-pthreads下面工作,这意味着当你运行客户程序时,你将需要使用-h
或--host
。 - 当使用MIT-pthreads编译MySQL时,因为性能原因,系统锁定缺省为禁止使用。你可以用
--use-locking
选项告诉服务器使用系统锁定。 - 有时pthread
bind()
命令不能绑定一个套接字但没有任何错误消息(至少在Solaris上),结果是所有到服务器的连接均失败。例如:shell> mysqladmin version mysqladmin: connect to server at '' failed; error: 'Can't connect to mysql server on localhost (146)'
解决它的方法是杀死
mysqld
服务器并且重启它。这只有当我们强迫服务器停止并马上进行重启时在发生。 - 使用MIT-pthreads,
sleep()
系统调用不是可中断的SIGINT
(break)。这只有在你运行mysqladmin --sleep
时才能注意到。你在中断起作用并且进程停止之前必须等待sleep()
终止。 - 当链接时,你可能会收到这样的警告消息(至少在Solaris上);他们可以被忽视:
ld: warning: symbol `_iob' has differing sizes: (file /my/local/pthreads/lib/libpthread.a(findfp.o) value=0x4; file /usr/lib/libc.so value=0x140); /my/local/pthreads/lib/libpthread.a(findfp.o) definition taken ld: warning: symbol `__iob' has differing sizes: (file /my/local/pthreads/lib/libpthread.a(findfp.o) value=0x4; file /usr/lib/libc.so value=0x140); /my/local/pthreads/lib/libpthread.a(findfp.o) definition taken
- 一些其他的警告也可被忽略:
implicit declaration of function `int strtoll(...)' implicit declaration of function `int strtoul(...)'
- 我们还没有让
readline
可在MIT-pthreads上工作。(这不需要,但是可能某些人有兴趣。)