第一步:创建数据库:
mysql>create database testdb;
第二步:
连接数据库,准备数据
ubuntu20@ubuntu:~/Downloads/sysbench/sysbench-1.0.20$ sysbench ./tests/include/oltp_legacy/oltp.lua --mysql-host=localhost --mysql-port=3306 --mysql-user=root --mysql-password=Root_12root --mysql-db=testdb --oltp-table-size=200000 --oltp-tables-count=4 --threads=4 --events=0 --time=3600 --report-interval=3 prepare
说明:~/Downloads/sysbench/sysbench-1.0.20$ 是我自己安装sysbench的地址
执行该语句后显示内容:
第三步:执行数据命令
ubuntu20@ubuntu:~/Downloads/sysbench/sysbench-1.0.20$ sysbench ./tests/include/oltp_legacy/oltp.lua --mysql-host=localhost --mysql-port=3306 --mysql-user=root --mysql-password=Root_12root --mysql-db=testdb --oltp-table-size=200000 --oltp-tables-count=4 --threads=4 --events=0 --time=30 --report-interval=3 run
执行结果:
第四步:清理数据
ubuntu20@ubuntu:~/Downloads/sysbench/sysbench-1.0.20$ sysbench ./tests/include/oltp_legacy/oltp.lua --mysql-host=localhost --mysql-port=3306 --mysql-user=root --mysql-password=Root_12root --mysql-db=testdb --oltp-table-size=200000 --oltp-tables-count=4 --threads=4 --events=0 --time=30 --report-interval=3 cleanup