下载对应版本MySQL :: Download MySQL Community Server (Archived Versions)
这里我选择的是Linux - Generic (glibc 2.12) (x86, 64-bit), TAR
解压到服务器 只需要里面的mysql-8.0.24-linux-glibc2.12-x86_64.tar.xz
在目录下创建需要的文件夹
这里我改名为mysql-8.0.24
cd /mysql-8.0.24
mkdir data
mkdir temp
mkdir log
cd /mysql-8.0.24/log
touch error.logchown -R mysql:mysql /mysql-8.0.24
chmod -R 750 /mysql-8.0.24cd /mysql-8.0.24
./bin/mysqld --initialize --console --user=mysql --basedir=/mysql-8.0.24 --datadir=/mysql-8.0.24/data
在log/error.log中找到默认密码
启动服务
use mysql/mysql-8.0.24/bin/mysqld --defaults-file=/mysql-8.0.24/my.cnf &
使用密码登录
cd /mysql-8.0.24
./bin/mysql -uroot -h 127.0.0.1 -palter user 'root'@'localhost' identified by 'xxxx';#设置远程登录
create user root@'%' identified by 'xxxx';
grant all privileges on *.* to root@'%' with grant option;
flush privileges;