mysql安装 发表于 2024-11-15 | 分类于 tutorial 安装mysql 1234apt remove --purge *mysql* rm -rf /etc/mysql /var/lib/mysql apt remove --purge *mariadb* apt install mysql-server 这时候root用户没有密码, mysql -uroot 进入mysql命令行界面 设置密码 12alter user 'root'@'localhost' identified with mysql_native_password by 'root'; flush privileges;