1:启动mysql
systemctl start mysqld.service
2:查看MySQL运行状态
systemctl status mysqld.service
3:查看默认密码
grep "password" /var/log/mysqld.log
4:修改密码:
ALTER USER ‘root‘@‘localhost‘ IDENTIFIED BY ‘你的密码‘;
密码:要求含有大小写、数字、特殊字符
Posted Pealicx
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Centos 首次运行MySQL相关的知识,希望对你有一定的参考价值。
1:启动mysql
systemctl start mysqld.service
2:查看MySQL运行状态
systemctl status mysqld.service
3:查看默认密码
grep "password" /var/log/mysqld.log
4:修改密码:
ALTER USER ‘root‘@‘localhost‘ IDENTIFIED BY ‘你的密码‘;
密码:要求含有大小写、数字、特殊字符
以上是关于Centos 首次运行MySQL的主要内容,如果未能解决你的问题,请参考以下文章