编译mysql 5.1.39

5.1与5.0的编译有所不同,主要是插件上的配置不同。

引用

./configure --disable-shared --with-server-suffix=-community --without-embedded-server --with-plugins=max --with-zlib-dir=bundled --with-big-tables --enable-assembler --enable-local-infile --with-mysqld-user=mysql --with-pic --prefix=/usr/local/mysql51 --sysconfdir=/usr/local/mysql51 --with-unix-socket-path=/usr/local/mysql51/mysql51.sock --with-extra-charsets=all --with-ssl --enable-thread-safe-client --with-comment="MySQL Community Edition (GPL)" --with-readline CC=gcc CXX=gcc LDFLAGS=


--with-plugins=max

这个就是编译所有插件,就是所有的引擎

--with-ssl

这个是带ssl

--sysconfdir=/usr/local/mysql51 --with-unix-socket-path=/usr/local/mysql51/mysql51.sock

这两个要指定一下,否则会默认 /etc 和/tmp

你可能感兴趣的:(thread,mysql,socket,unix,gcc)