centos7 修改mysql5.7密码

centos7 修改mysql5.7密码

  1. 编辑mysql配置文件

    $ sudo vi /etc/my.cnf
    [mysqld]下面添加
    skip-grant-tables
    
  2. 重启mysql服务

$ sudo systemctl restart mysqld
  1. 无密码登录mysql

    $ mysql
    
    
  2. 修改密码

    mysql>update mysql.user set authentication_string=password('新密码') where user='root';
    mysql>flush privileges;
    mysql>quit
    
  3. 编辑mysql配置文件

    $ sudo vi /etc/my.cnf
     注释skip-grant-tables
    # skip-grant-tables
    
  4. 重启mysql服务

    $ sudo systemctl restart mysqld
    
  5. 测试

    mysql -u root -p
    

创建用户

msyql>create user '用户'@'localhost' identified by '密码';

你可能感兴趣的:(数据库,MySQL,linux)