https:// codeload.github.com/akopytov/sysbench/zip/1.0
成都創(chuàng)新互聯(lián)公司于2013年創(chuàng)立,是專業(yè)互聯(lián)網(wǎng)技術(shù)服務(wù)公司,擁有項目成都網(wǎng)站建設(shè)、網(wǎng)站設(shè)計網(wǎng)站策劃,項目實施與項目整合能力。我們以讓每一個夢想脫穎而出為使命,1280元同江做網(wǎng)站,已為上家服務(wù),為同江各地企業(yè)和個人服務(wù),聯(lián)系電話:18980820575
yum install -y automake libtool
yum install -y MySQL-devel
#cd sysbench
./autogen.sh
./configure
make
make install
sysbench --version
準(zhǔn)備測試庫
創(chuàng)建sbtest庫
sysbench /usr/share/sysbench/tests/include/oltp_legacy/oltp.lua --mysql-host=192.168.56.16 --mysql-port=3306 --mysql-user=root --mysql-password=Abc_123456 --oltp-tables-count=10 --oltp-table-size=100000 prepare
sysbench /usr/share/sysbench/tests/include/oltp_legacy/oltp.lua --mysql-host=192.168.99.131 --mysql-port=3306 --mysql-user=admin --mysql-password=Abc_123456 --oltp-test-mode=complex --threads=10 --time=300 --report-interval=10 run >> /home/mysysbench.log
sysbench /usr/share/sysbench/tests/include/oltp_legacy/oltp.lua --mysql-host=192.168.56.16 --mysql-port=3306 --mysql-user=root --mysql-password=Abc_123456 --oltp-tables-count=10 cleanup
修改my.cnf配置文件
vi /etc/my.cnf
pxc_strict_mode=DISABLED
修改某個Haproxy的配置文件
server mysql_1 192.168.99.151:3306 check port 3306 weight 1 maxconn 2000
server mysql_2 192.168.99.159:3306 check port 3306 weight 1 maxconn 2000
server mysql_3 192.168.99.215:3306 check port 3306 weight 1 maxconn 2000
重新啟動Haproxy
安裝依賴程序包
yum install -y gcc
yum install -y mysql-devel
下載壓縮包
https://codeload.github.com/Percona-Lab/tpcc-mysql/zip/ master
執(zhí)行安裝
#cd tpcc的src目錄
make
執(zhí)行
create_table.sql
和
add_fkey_idx.sql
兩個文件
執(zhí)行數(shù)據(jù)初始化
./tpcc_load -h 192.168.99.131 -d tpcc -u admin -p Abc_123456 -w
執(zhí)行壓力測試
./tpcc_start -h 192.168.99.131 -d tpcc -u admin -p Abc_123456 -w 1 -c 5 -r 300 -l 600 ->tpcc-output-log