码迷,mamicode.com
首页 > 其他好文 > 详细

安装sysbench

时间:2014-07-22 09:03:03      阅读:441      评论:0      收藏:0      [点我收藏+]

标签:des   http   使用   os   文件   数据   

系统:Ubuntu 12.04.4 LTS

版本:sysbench-0.4.12


sysbench的是一个模块化的,跨平台和多线程基准测试工具,用于评估是根据密集型负载运行的数据库系统重要的操作系统参数。

sysbench当前功能允许测试以下系统参数:

文件I / O性能

调度程序性能

内存分配和传输速度

POSIX线程执行绩效

数据库服务器性能


sysbench 0.5可以使用lua写测试脚本,自定义更灵活,支持多表,也支持每隔多少秒打印统计信息,项目地址:https://launchpad.net/sysbench


使用源码安装,安装三部曲:

./configure && make && make install


错误:没有找到mysql_config

checking for mysql_config... no

configure: error: mysql_config executable not found

********************************************************************************

ERROR: cannot find MySQL libraries. If you want to compile with MySQL support,

       you must either specify file locations explicitly using

       --with-mysql-includes and --with-mysql-libs options, or make sure path to


解决:安装mysql客户端开发库

apt-get install libmysqlclient-dev


或指定mysql库文件:

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


错误:libtool错误,提示命令找不到

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

../libtool: line 2405: X: command not found

../libtool: line 2412: Xsysbench: command not found


解决:因源码中自带的版本太低,使用新的覆盖

apt-get install libtool

cp /usr/bin/libtool . #覆盖源码中自动的libtool


安装sysbench,布布扣,bubuko.com

安装sysbench

标签:des   http   使用   os   文件   数据   

原文地址:http://my.oschina.net/anthonyyau/blog/290059

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!