sysbench下载安装
涉及到sysbench源码的配置和编译,首先确认系统安装了gcc gcc-c++编译器;
确认安装了autoconf 、automake、libtool等;
[root@PC download]# rpm -qa | grep automake
[root@PC download]# rpm -qa | grep autoconf
[root@PC download]# rpm -qa | grep libtool
必须安装MySQL-devel;
否则后面make intall的时候会报错:/usr/bin/ld: cannot find -lmysqlclient_r。
yum install mysql-devel -y
--开始安装sysbench,点击这里下载:
tar xzvf sysbench-0.5.tar.gz
cd sysbench-0.5
chmod +x autogen.sh
./autogen.sh
./configure --with-mysql --with-mysql-includes=/usr/local/mysql/include --with-mysql-libs=/usr/lib64/mysql
make
make install
确保make,make install无误才行。
注意:
./configure --with-mysql --with-mysql-includes=/usr/local/mysql/include --with-mysql-libs=/usr/lib64/mysql 这两个目录根据实际系统情况指定。
不确定的话,可以查找一下:
[root@PC local]# find / -name mysql
--假如make时报错:
- drv_mysql.c:36:19: error: mysql.h: No such file or directory
- drv_mysql.c:37:26: error: mysqld_error.h: No such file or directory
- drv_mysql.c:43:5: warning: "MYSQL_VERSION_ID" is not defined
- drv_mysql.c:48:5: warning: "MYSQL_VERSION_ID" is not defined
- drv_mysql.c: In function ‘mysql_drv_init’:
- drv_mysql.c:240: warning: implicit declaration of function ‘mysql_library_init’
- drv_mysql.c:240: warning: nested extern declaration of ‘mysql_library_init’
- drv_mysql.c: In function ‘mysql_drv_connect’:
- drv_mysql.c:262: error: ‘MYSQL’ undeclared (first use in this function)
- drv_mysql.c:262: error: (Each undeclared identifier is reported only once
- drv_mysql.c:262: error: for each function it appears in.)
- drv_mysql.c:262: error: ‘con’ undeclared (first use in this function)
- drv_mysql.c:268: error: expected expression before ‘)’ token
- drv_mysql.c:274: warning: implicit declaration of function ‘mysql_init’
- drv_mysql.c:274: warning: nested extern declaration of ‘mysql_init’
- drv_mysql.c:300: warning: implicit declaration of function ‘mysql_ssl_set’
- drv_mysql.c:300: warning: nested extern declaration of ‘mysql_ssl_set’
- drv_mysql.c:303: error: ‘MYSQL_VERSION_ID’ undeclared (first use in this function)
- drv_mysql.c:313: warning: implicit declaration of function ‘mysql_real_connect’
- drv_mysql.c:313: warning: nested extern declaration of ‘mysql_real_connect’
- drv_mysql.c:320:5: warning: "MYSQL_VERSION_ID" is not defined
- drv_mysql.c:328: warning: implicit declaration of function ‘mysql_errno’
- drv_mysql.c:328: warning: nested extern declaration of ‘mysql_errno’
- drv_mysql.c:329: warning: implicit declaration of function ‘mysql_error’
- drv_mysql.c:329: warning: nested extern declaration of ‘mysql_error’
- drv_mysql.c: In function ‘mysql_drv_disconnect’:
- drv_mysql.c:343: error: ‘MYSQL’ undeclared (first use in this function)
- drv_mysql.c:343: error: ‘con’ undeclared (first use in this function)
- drv_mysql.c:348: warning: implicit declaration of function ‘mysql_close’
- drv_mysql.c:348: warning: nested extern declaration of ‘mysql_close’
- drv_mysql.c: In function ‘mysql_drv_bind_param’:
- drv_mysql.c:423: error: ‘MYSQL’ undeclared (first use in this function)
- drv_mysql.c:423: error: ‘con’ undeclared (first use in this function)
- drv_mysql.c:423: error: expected expression before ‘)’ token
- drv_mysql.c: In function ‘mysql_drv_query’:
- drv_mysql.c:639: error: ‘MYSQL’ undeclared (first use in this function)
- drv_mysql.c:639: error: ‘con’ undeclared (first use in this function)
- drv_mysql.c:643: warning: implicit declaration of function ‘mysql_real_query’
- drv_mysql.c:643: warning: nested extern declaration of ‘mysql_real_query’
- drv_mysql.c:649: error: ‘ER_LOCK_DEADLOCK’ undeclared (first use in this function)
- drv_mysql.c:649: error: ‘ER_LOCK_WAIT_TIMEOUT’ undeclared (first use in this function)
- drv_mysql.c:650: error: ‘ER_CHECKREAD’ undeclared (first use in this function)
- drv_mysql.c: In function ‘mysql_drv_fetch_row’:
- drv_mysql.c:678: warning: implicit declaration of function ‘mysql_fetch_row’
- drv_mysql.c:678: warning: nested extern declaration of ‘mysql_fetch_row’
- drv_mysql.c:678: warning: assignment makes pointer from integer without a cast
- drv_mysql.c: In function ‘mysql_drv_store_results’:
- drv_mysql.c:705: error: ‘MYSQL’ undeclared (first use in this function)
- drv_mysql.c:705: error: ‘con’ undeclared (first use in this function)
- drv_mysql.c:706: error: ‘MYSQL_RES’ undeclared (first use in this function)
- drv_mysql.c:706: error: ‘res’ undeclared (first use in this function)
- drv_mysql.c:707: error: ‘MYSQL_ROW’ undeclared (first use in this function)
- drv_mysql.c:707: error: expected ‘;’ before ‘row’
- drv_mysql.c:751: warning: implicit declaration of function ‘mysql_store_result’
- drv_mysql.c:751: warning: nested extern declaration of ‘mysql_store_result’
- drv_mysql.c:757: error: ‘ER_LOCK_DEADLOCK’ undeclared (first use in this function)
- drv_mysql.c:757: error: ‘ER_LOCK_WAIT_TIMEOUT’ undeclared (first use in this function)
- drv_mysql.c:758: error: ‘ER_CHECKREAD’ undeclared (first use in this function)
- drv_mysql.c:765: warning: implicit declaration of function ‘mysql_field_count’
- drv_mysql.c:765: warning: nested extern declaration of ‘mysql_field_count’
- drv_mysql.c:772: warning: implicit declaration of function ‘mysql_num_rows’
- drv_mysql.c:772: warning: nested extern declaration of ‘mysql_num_rows’
- drv_mysql.c:776: error: ‘row’ undeclared (first use in this function)
- drv_mysql.c: In function ‘mysql_drv_free_results’:
- drv_mysql.c:799: warning: implicit declaration of function ‘mysql_free_result’
- drv_mysql.c:799: warning: nested extern declaration of ‘mysql_free_result’
- drv_mysql.c:799: error: ‘MYSQL_RES’ undeclared (first use in this function)
- drv_mysql.c:799: error: expected expression before ‘)’ token
请检查下--with-mysql-includes=/usr/local/mysql/include该路径是否配置正确。如,最上方报错:drv_mysql.c:36:19: error: mysql.h: No such file or directory
查找一下mysql.h是否在某个Include目录下存在。
安装完成后,检查该工具是否可以使用:
[root@PC local]# sysbench --help
- Missing required command argument.
- Usage:
- sysbench [general-options]... --test=<test-name> [test-options]... command
- General options:
- --num-threads=N number of threads to use [1]
- --max-requests=N limit for total number of requests [10000]
- --max-time=N limit for total execution time in seconds [0]
- --forced-shutdown=STRING amount of time to wait after --max-time before forcing shutdown [off]
- --thread-stack-size=SIZE size of stack per thread [64K]
- --tx-rate=N target transaction rate (tps) [0]
- --tx-jitter=N target transaction variation, in microseconds [0]
- --report-interval=N periodically report intermediate statistics with a specified interval in seconds. 0 disables intermediate reports [0]
- --test=STRING test to run
- --debug=[on|off] print more debugging info [off]
- --validate=[on|off] perform validation checks where possible [off]
- --help=[on|off] print help and exit
- --version=[on|off] print version and exit [off]
- --rand-init=[on|off] initialize random number generator [off]
- --rand-type=STRING random numbers distribution {uniform,gaussian,special} [special]
- --rand-spec-iter=N number of iterations used for numbers generation [12]
- --rand-spec-pct=N percentage of values to be treated as 'special' (for special distribution) [1]
- --rand-spec-res=N percentage of 'special' values to use (for special distribution) [75]
- --rand-seed=N seed for random number generator, ignored when 0 [0]
- Log options:
- --verbosity=N verbosity level {5 - debug, 0 - only critical messages} [3]
- --percentile=N percentile rank of query response times to count [95]
- Compiled-in tests:
- fileio - File I/O test
- cpu - CPU performance test
- memory - Memory functions speed test
- threads - Threads subsystem performance test
- mutex - Mutex performance test
- Commands: prepare run cleanup help version
- See 'sysbench --test=<name> help' for a list of options for each test.
假如找不到sysbench命令,有可能make,make install的时候就报错了。请返回查看,解决报错问题后,重新编译。
--本篇文章参考自:http://www.linuxidc.com/Linux/2014-02/97107p2.htmsysbench下载安装
http://blog.csdn.net/yabingshi_tech/article/details/53113199
sysbench下载安装的更多相关文章
- CentOS6.6系统源代码安装mysql5.5.28教程(附源码包下载地址)+sysbench的安装
mysql从5.5版本开始,不再使用./configure编译,而是使用cmake编译器,具体的cmake编译参数可以参考mysql官网文档(※ 非常重要) http://dev.mysql.com/ ...
- sysbench下载与安装
目标:下载.安装sysbench软件,做数据库压测 准备: 在sysbench启动的linux机器上,首先安装好mysql,查看mysql已经启动 例如,在机器上已经安装完mysql,其路径为 /us ...
- sysbench工具安装使用
一.sysbench简介 Sysbench是一款开源的.跨平台的.模块化的.多线程的性能测试工具,通过高负载地运行在数据库上,可以执行CPU.内存.线程.IO.数据库等方面的性能测试.用于评估操作系统 ...
- sysbench的安装和做性能测试
sysbench的安装和做性能测试 http://imysql.cn/node/312 sysbench是一个模块化的.跨平台.多线程基准测试工具,主要用于评估测试各种不同系统参数下的数据库负载情况. ...
- 安装特定版本 sysbench 以及安装时指定特定的mysql客户端
step1: 下载安装源码 https://github.com/akopytov/sysbench (git clone https://github.com/akopytov/sysbench.g ...
- sysbench的安装详解
sysbench是一个压力测试工具.可以用它来测试cpu.mem.disk.thread.mysql.postgr.oracle:然而作为一个mysql dba 我当然是用它来压测mysql啦! 一. ...
- 【转帖】sysbench的安装和做性能测试
iMySQL | 老叶茶馆 sysbench的安装和做性能测试 http://imysql.cn/node/312 我仿照这个学的 但是 需要用更新的版本才可以. By yejr on 14 六月 ...
- Visual Studio for Mac Preview离线下载安装
Visual Studio for Mac离线下载安装. 环境:OS X EI Caption 10.11.2 .NET Core SDK 1.1 需预先安装 .NET Core 1.1 SDK ma ...
- jdk1.8下载安装
jdk8环境变量 jdk8图解安装 java8安装 1 2 3 4 5 6 7 分步阅读 JDK8 是JDK的最新版本,加入了很多新特性,如果我们要使用,需要下载安装: JDK8在windows ...
随机推荐
- (转)JFreeChart教程
JFreeChart教程 一.jFreeChart产生图形的流程 创建一个数据源(dataset)来包含将要在图形中显示的数据>>创建一个 JFreeChart 对象来代表要显示的图形&g ...
- 欧拉函数与数论的结合UVA11426
链接:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&am ...
- DOS命令汇总
汇总如下: Dos基础命令梳理思路 小编初来乍道, 不清楚我的插图在我发布后会不会不清晰, 因为我在排版时看到插入的图片是清晰的, 以前见其他条友发布的文章中总有不晰的图片, 很是不爽. 所以如果有不 ...
- 【转】使用git将项目上传到github(最简单方法)
原文地址:http://www.cnblogs.com/cxk1995/p/5800196.html 首先你需要一个github账号,所有还没有的话先去注册吧! https://github.com/ ...
- javascript判断页面是否在移动设备上打开
var ua = navigator.userAgent; var ipad = ua.match(/(iPad).*OS\s([\d_]+)/), isIphone =!ipad && ...
- Linux strace命令(转载)
转载:http://www.cnblogs.com/ggjucheng/archive/2012/01/08/2316692.html 简介 strace常用来跟踪进程执行时的系统调用和所接收的信号. ...
- E20180207-ts
crumb n. 碎屑(尤指面包屑或糕饼屑); 面包心; 些许,少许; <俚>可鄙的人物;
- HDU1429:胜利大逃亡(续)
传送门 题意 给出一个迷宫,门需要钥匙来打开,t秒内能否从起点到达终点 分析 这题我用以前一道题的代码改了改就过了,具体思想:设置vis[status][x][y],status记录到达该点拥有的钥匙 ...
- 第一篇(那些JAVA程序BUG中的常见单词)
The local variable xxx may not have been initialized. 局部变量xxx可能尚未初始化 local variable 局部变量 initialized ...
- 整体二分例题:POI2011Meteors——Chemist
题目地址:https://www.luogu.org/problemnew/show/P3527#sub 首先这个答案不是操作几次下了几场陨石雨之后的陨石个数,无法在线做,考虑离线做法.暴力的想法就是 ...