sysbench-0.4.12编译安装和CPU测试例子分享

作者:junjie 时间:2024-01-24 10:06:21 

一、获取安装包

最近的版本为0.4.12,下载地址:http://sourceforge.net/projects/sysbench/

二、编译安装

我的环境为RHEL6.2 + MySQL 5.6.16,搭建参考上两篇文章<<RHEL6.2编译安装MySQL 5.6.16>><<MySQL Benchmark安装DBI组件>>,安装步骤如下:


[root@beanvm ~]# tar -xvf sysbench-0.4.12.tar.gz
[root@beanvm ~]# cd sysbench-0.4.12
[root@beanvm sysbench-0.4.12]# ./configure --with-mysql-includes=/usr/local/mysql/include --with-mysql-libs=/usr/local/mysql/lib && make && make install

因为我的MySQL是编译安装的,所以上面需要给出MySQL的库文件位置(对应—with—mysql-includes和–with-mysql-libs选项)。

安装过程中常见的报错如下:


../libtool: line 841: X--tag=CC: command not found
../libtool: line 874: libtool: ignoring unknown tag : command not found
../libtool: line 841: X--mode=link: command not found
../libtool: line 1007: *** Warning: inferring the mode of operation is deprecated.: command not found
../libtool: line 1008: *** Future versions of Libtool will require --mode=MODE be specified.: command not found
../libtool: line 2234: X-g: command not found
../libtool: line 2234: X-O2: command not found
../libtool: line 1954: X-L/usr/local/mysql/lib: No such file or directory
../libtool: line 2403: Xsysbench: command not found

在之前版本中,碰见这个问题我们只需要在编译操作前执行sysbench解压目录下的autogen.sh脚本即可;不过现在这样做还是会报同样的错误,原因是sysbench自带的libtool有问题,我们可以比较它和/usr/bin/libtool文件的区别得知,总之可以通过替换这个libtool文件来解决,或者修改aclocal.m4文件的如下内容


# Always use our own libtool.
LIBTOOL='$(SHELL) $(top_builddir)/libtool'
AC_SUBST(LIBTOOL)dnl

将LIBTOOL变量的值修改为:'$(SHELL)  /usr/bin/libtool',即使用系统的libtool工具包。

修改后再执行make && make install即可顺利安装。

安装完成马上测试一下:


[root@beanvm sysbench-0.4.12]# sysbench
sysbench: error while loading shared libraries: libmysqlclient.so.18: cannot open shared object file: No such file or directory

说是缺少libmysqlclient.so.18文件,额,这个文件是存在的,需要手动链接一下:


[root@beanvm ~]# ls -l /usr/local/mysql/lib/libmysqlclient.so.18*
lrwxrwxrwx. 1 mysql mysql      24 Feb 15 14:39 /usr/local/mysql/lib/libmysqlclient.so.18 -> libmysqlclient.so.18.1.0
-rwxr-xr-x. 1 mysql mysql 7654927 Feb 15 14:30 /usr/local/mysql/lib/libmysqlclient.so.18.1.0
[root@beanvm ~]# ls -l /usr/lib/libmysqlclient.so.18*
ls: cannot access /usr/lib/libmysqlclient.so.18*: No such file or directory
[root@beanvm ~]# ln ln -s /usr/local/mysql/lib/libmysqlclient.so.18 /usr/lib/

部署完成,运行一个CPU基准测试:


[root@beanvm ~]# sysbench --test=cpu --cpu-max-prime=20000 run
sysbench 0.4.12:  multi-threaded system evaluation benchmark

Running the test with following options:
Number of threads: 1

Doing CPU performance benchmark

Threads started!
Done.

Maximum prime number checked in CPU test: 20000

Test execution summary:
    total time:                          40.4541s
    total number of events:              10000
    total time taken by event execution: 40.4165
    per-request statistics:
         min:                                  3.64ms
         avg:                                  4.04ms
         max:                                 21.82ms
         approx.  95 percentile:               5.20ms

Threads fairness:
    events (avg/stddev):           10000.0000/0.00
    execution time (avg/stddev):   40.4165/0.00

标签:sysbench,编译安装
0
投稿

猜你喜欢

  • 目前最全的浏览器/CSS选择器兼容性总结(包括Safari 4 beta)

    2009-02-26 15:26:00
  • python高斯分布概率密度函数的使用详解

    2023-08-18 15:07:24
  • AspJpeg组件:介绍、注册、高级使用方法

    2010-01-25 12:42:00
  • Python实现简单的文件传输与MySQL备份的脚本分享

    2024-01-21 04:44:44
  • 什么是DOM(Document Object Model)文档对象模型

    2024-05-13 09:37:04
  • 用Python实现一个简单的能够发送带附件的邮件程序的教程

    2023-04-08 11:45:48
  • 一文让你彻底搞懂Python中__str__和__repr__

    2021-10-30 20:09:56
  • python基础教程项目四之新闻聚合

    2021-10-03 01:31:33
  • Opencv图像处理之详解掩膜mask

    2022-08-12 23:40:44
  • python实现在cmd窗口显示彩色文字

    2023-03-23 22:49:01
  • 详解Python3 中hasattr()、getattr()、setattr()、delattr()函数及示例代码数

    2023-08-21 15:36:40
  • Python基于pyopencv人脸识别并绘制GUI界面

    2023-03-24 23:09:50
  • RSA实现JS前端加密与PHP后端解密功能示例

    2023-08-18 23:52:07
  • python的keyword模块用法实例分析

    2022-04-06 07:56:22
  • ThinkPHP5&5.1实现验证码的生成、使用及点击刷新功能示例

    2023-11-17 02:54:39
  • Python快速实现一个线程池的示例代码

    2021-06-01 04:51:01
  • js实现无刷新监听URL的变化示例代码详解

    2024-04-17 09:43:16
  • 重命名批处理python脚本

    2021-04-27 22:56:38
  • 关于401状态码的含义和处理方式

    2023-03-16 01:03:08
  • python学习之使用Matplotlib画实时的动态折线图的示例代码

    2021-03-03 17:33:31
  • asp之家 网络编程 m.aspxhome.com