安裝:
yum install sysbench -y
查看版本
sysbench --version
準備
mkdir sysbench
cd sysbench/
vim mysql_config
mysql_config內(nèi)容:(提前準備好用戶名密碼并創(chuàng)建測試庫)
[root@localhost sysbench]# cat mysql_config
mysql-host=192.168.0.70
mysql-port=6033
mysql-user=proxysql
mysql-password=proxysqlpassword
mysql-db=test
time=6000
threads=8
report-interval=1
db-driver=mysql
初始化數(shù)據(jù):
sysbench --config-file=mysql_config oltp_point_select --tables=16 --table-size=100000 prepare
開始測試:
sysbench --config-file=mysql_config oltp_point_select --tables=16 --table-size=100000 run | tee oltp_point_select.rpt
通過修改mysql_config配置文件里的線程數(shù)可以測試在不同線程下的負載情況.