跳至主要內容

tidb

Mr.FengMysql小于 1 分钟

tidb

git clone https://ghproxy.com/https://github.com/pingcap/tidb-docker-compose.git

cd tidb-docker-compose

docker-compose up -d

yum install mysql

mysql -h 127.0.0.1 -P 4000 -u root
use mysql;

update user set authentication_string=password('123456') where user='root';

flush privileges;