mysql編譯引數詳解(./configure)

小亮520cl發表於2015-01-21

1.--prefix=PREFIX:指定程式安裝路徑;

2.--enable-assembler:使用匯編模式;(文件說明:compiling in x86 (and sparc) versions of common string operations, which should result in more performance.  彙編x86的普通運算子,可以提高效能)

3.--enable-local-infile:啟用對LOAD DATA LOCAL INFILE語法的支援(預設不支援)

4.--enable-profilingBuild a version with query profiling code (req.community-features)

5.--enable-thread-safe-client:使用編譯客戶端;(讓客戶端支援執行緒的意思)

6.--with-big-tables:啟用32位平臺對4G大表的支援;

7.--with-charset=CHARSET:指定字符集;

8.--with-collation=:預設collation

9.--with-extra-charsets=CHARSET,CHARSET,...:指定附加的字符集;

10.--with-fast-mutexesCompile with fast mutexes

11.--with-readline

12.--with-ssl:啟用SSL的支援;

13.--with-server-suffix=:新增字串到版本資訊;

14.--with-embedded-server:編譯embedded-server構建嵌入式MySQL

15.--with-pthread:強制使用pthread類庫;

16.--with-mysqld-user=:指定mysqld守護程式的使用者;

17.--with-mysqld-ldflags=:靜態編譯MySQL伺服器端;靜態連結提高13%效能

18.--with-client-ldflags=:靜態編譯MySQL客戶端;靜態連結提高13%效能

19.--with-plugins=PLUGIN,PLUGIN 等等等(MySQL伺服器端支援的儲存引擎元件(預設為空),可選值較多:

partitionMySQL Partitioning Support

daemon_exampleThis is an example plugin daemon

ftexampleSimple full-text parser plugin

archiveArchive Storage Engine

blackholeBasic Write-only Read-never tables

csvStores tables in text CSV format,強制安裝;

exampleExample for Storage Engines for developers

federatedConnects to tables on remote MySQL servers

heapVolatile memory based tables,強制安裝;

ibmdb2iIBM DB2 for i Storage Engine

innobaseTransactional Tables using InnoDB

innodb_pluginTransactional Tables using InnoDB

myisamTraditional non-transactional MySQL tables,強制安裝;

myisammrgMerge multiple MySQL tables into one,強制安裝;

ndbclusterHigh Availability Clustered tables 

20.--with-plugin-PLUGIN:強制指定的外掛連結至MySQL伺服器;

21.--with-zlib-dir=:向MySQL提供一個自定義的壓縮類庫地址;

22.--without-server:僅安裝MySQL客戶端;

23.--without-query-cache:不要編譯查詢快取;

24.--without-geometry:不要編譯geometry-related部分;

25.--without-debug:編譯為產品版,放棄debugging程式碼;

26.--without-ndb-debug:禁用special ndb debug特性;

基於以上,我的配置:

./configure --prefix=/usr/local/mysql/ 

--with-server-suffix=yu

--enable-assembler 

--enable-local-infile 

--enable-thread-safe-client 

--with-big-tables 

--with-charset=utf8  

--with-extra-charsets=gbk,gb2312,utf8,ascii  

--with-readline 

--with-ssl 

--with-embedded-server 

--with-pthread 

--with-mysqld-user=mysql 

--with-mysqld-ldflags=-all-static 

--with-client-ldflags=-all-static 

--with-plugins=partition,innobase,innodb_plugin 

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29096438/viewspace-1409165/,如需轉載,請註明出處,否則將追究法律責任。

相關文章