centos自带MYSQL的初始化
Posted 我是你妈
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos自带MYSQL的初始化相关的知识,希望对你有一定的参考价值。
# /etc/init.d/mysql stop 或者 service mysqld stop
# mysqld_safe --user=mysql --skip-grant-tables --skip-networking &
# mysql -u root mysql
mysql> UPDATE user SET Password=PASSWORD(‘newpassword‘) where USER=‘root‘;
mysql> FLUSH PRIVILEGES;
mysql> quit
# /etc/init.d/mysql restart 或者 service mysqld start
# mysql -uroot -p
Enter password: <输入新设的密码newpassword>
支持远程访问:http://blog.csdn.net/sun614345456/article/details/53672150
mysql -uroot -p
use mysql;
GRANT ALL PRIVILEGES ON *.* TO ‘root‘@‘%‘ IDENTIFIED BY ‘password‘ WITH GRANT OPTION;
FLUSH PRIVILEGES;
service mysqld restart
以上是关于centos自带MYSQL的初始化的主要内容,如果未能解决你的问题,请参考以下文章
CentOS7 x86_64 环境 MySQL 5.7 安装教程
CentOS7 x86_64 环境 MySQL 5.7 安装教程
修改MySQL密码报错“ERROR 1819 (HY000): Your password does not satisfy the current policy requirements“(代码片段