sysbench中文教程 安裝

2021-06-23 02:01:06 字數 1808 閱讀 6132

sysbench是乙個模組化的、跨平台、多執行緒基準測試工具,主要用於評估測試各種不同系統引數下的資料庫負載情況。

當前功能允許測試的系統引數有:

1. file i/o performance (檔案i / o效能)

2.scheduler performance (排程效能)

3.memory allocation and transfer speed (記憶體分配和傳輸速度)

4.posix threads implementation performance (posix執行緒執行績效)

5.database server performance (oltp benchmark) (資料庫伺服器效能)

sysbench執行指定數目的執行緒,他們都是並行的執行請求。實際工作量的請求產生依賴於指定的測試模式(在編譯中新增測試模組)。可以限制請求總數或總時間為基準,或兩者。

wget 

# tar -zxvf sysbench-0.4.12.tar.gz

# cd sysbench-0.4.12

# ./autogen.sh

# ./configure --with-mysql-includes=/usr/local/perconamysql/include/ --with-mysql-libs=/usr/local/perconamysql/lib/

#make && make install

安裝過程中出現的錯誤以及解決辦法:

../libtool: line 838: x--tag=cc: command not found

../libtool: line 871: libtool: ignoring unknown tag : command not found

../libtool: line 838: x--mode=link: command not found

../libtool: line 1004: *** warning: inferring the mode of operation is deprecated.: command not found

../libtool: line 1005: *** future versions of libtool will require --mode=mode be specified.: command not found

../libtool: line 2231: x-g: command not found

../libtool: line 2231: x-o2: command not found

../libtool: line 1951: x-l/usr/local/mysql-5.5.8/lib: no such file or directory

../libtool: line 2400: xsysbench: command not found

解決辦法:

1.在編譯前先執行autogen.sh即可。

2.安裝新版本的libtool工具,注意,一定要先configure之後再將libtool拷貝到sysbench的目錄中。

# sysbench: error while loading shared libraries: libmysqlclient.so.16: cannot open shared object file: no such file or directory

解決辦法:

# in -s /usr/local/mysql-5.5.8/lib/libmysqlclient.so.16 /lib64/libmysqlclient.so.16

Spring AOP中文教程

僅僅用配置檔案便可把程式的每一部分組裝起來。四個bean定義的次序並不重要。我們現在有了乙個advice,乙個包含了正規表示式pointcut的advisor,乙個主程式類和乙個配置好的介面,通過工廠ctx,這個介面返回自己本身實現的乙個引用。beanimpl和testbeforeadvice都是直...

Beautiful Soup 中文教程

beautiful soup 是乙個處理python html xml的模組,功能相當強勁,最近仔細的看了一下他的幫助文件,終於看明白了一些。準備好好研究一下,順便將beautiful soup的一些用法整理一下,放到這個wiki上面,那個文件確實不咋地。beautiful soup 中文教程 的官...

kafka中文教程

本網翻譯整理apache kafka,提供整理apache kafka的完整學習文件。資料流,如訊息傳遞系統 高效並實時 資料流安全地在分布式集群中複製儲存 kafka是用於構建實時資料管道和流應用程式。具有橫向擴充套件,容錯,wicked fast 快 等優點,並已在成千上萬家公司執行。apach...