centos7中安裝mysql5.7及password修改
2023-06-01 21:58 作者:iostreamreader | 我要投稿
Linux系統(tǒng):centos7
安裝mysql5.7
yum install mysql-server -y
centos7修改密碼為admin
systemctl status mysqld
systemctl start?mysqld
show global variables like "%password%";
set global validate_password_length=3;
set global validate_password_policy=LOW;
quit
mysql -uroot -padmin