mysql怎樣更改密碼和用戶名

mysql怎樣更改密碼和用戶名

  • 更改密碼(老版本):mysql

    mysql -u root -p  
      Enter password:***  
      mysql>use mysql;      --選擇數據庫-- 
      Database changed   
      mysql> UPDATE user SET password=PASSWORD("新密碼") WHERE user='你的用戶名';  
      mysql> FLUSH PRIVILEGES;  
      mysql> quit;
  • 新安裝的MySQL5.7,登陸時提示密碼錯誤,安裝的時候並無更改密碼,後來經過免密碼登陸的方式更改密碼,輸入時sql

    update mysql.user  set password=password('root') where user='root';

    提示數據庫

    ERROR 1054 (42S22): Unknown column 'password' in 'field list',

    原來是mysql數據庫下已經沒有password這個字段了,password字段改爲了authentication_string微信

  • 因此更改語句替換爲ui

    update mysql.user set authentication_string=password('root') where user='root';
  • 更改用戶名:code

    mysql -u root -p  
      Enter password:***  
      mysql> use mysql;          --選擇數據庫--
      Database changed  
      mysql> update user set user="新用戶名" where user="root";    
      --將用戶名爲root的改成新用戶名--  
      mysql> flush privileges;    --刷新權限--  
      mysql> exit
  • 更多精彩內容,請關注微信關注公衆號 明葉師兄的學堂
    string

相關文章
相關標籤/搜索