安装yum repo,mysql 5.7和mysql-devel - https://dev.mysql.com/downloads/repo/yum/
rpm -Uvh mysql80-community-release-el7-3.noarch.rpm
yum repolist all
yum-config-manager --disable mysql80-community
yum-config-manager --enable mysql57-community
yum install mysql-community-server
yum install mysql-devel
安装sysbench - https://dev.mysql.com/downloads/benchmarks.html
cd /scratch/tidb/sysbench-0.4.12.14
./autogen.sh
./configure --prefix=/usr/sysbench/ --with-mysql-includes=/usr/include/mysql/ --with-mysql-libs=/usr/lib64/mysql/ --with-mysql
make
make install
/usr/sysbench/bin/sysbench --version
安装mysql-tpcc - https://github.com/Percona-Lab/tpcc-mysql
unzip tpcc-mysql-master.zip
cd tpcc-mysql-master/src
make
安装tp