首页 > 代码库 > centos 7.2 安装mysql 修改 初始密码

centos 7.2 安装mysql 修改 初始密码

# /etc/init.d/mysqld stop

# mysqld_safe --user=mysql --skip-grant-tables --skip-networking &
# mysql -u root mysql 【这一步 就进入mysql数据库了 进入数据库   跟着 ②操作】

 

{   mysql> UPDATE user SET Password=PASSWORD(‘newpassword‘) where USER=‘root‘;
          mysql> FLUSH PRIVILEGES;
         mysql> quit


# /etc/init.d/mysqld restart
# mysql -uroot -p
Enter password: <输入新设的密码newpassword>
mysql>

 

 

② mysql>update mysql.user set authentication_string= password (‘guo‘) WHERE User=‘root‘;        #更改密码为 guo

    mysql>flush privileges; #更新权限

    mysql>quit #退出
    service mysql start

 

centos 7.2 安装mysql 修改 初始密码