0%

MySQL

MySQL

Install

reference

Issue

Access denied for user ‘root’@’localhost’ (using password: YES)

reference

  1. Add ‘skip-grant-tables’ to ‘my.ini’ file in MySQL’s directory

  2. Reload the MySQL’s service

    1
    2
    net stop mysql
    net start mysql
  3. Login MySQL without password and set the new password

    1
    2
    mysql -u root -p
    // Don't need to enter the password
  4. Change the password (In the higher version, the password filed is changed to authentication_string)

    1
    2
    3
    4
    5
    # lower version
    update mysql.user set password='123' where user='root';
    -- higher version
    update mysql.user set authentication_string='123' where user='root';
    /*password -> authentication_string*/
  5. Refresh the database

    1
    flush privileges;
  6. Delete the ‘skip-grant-tables’

  7. Reload the MySQL’s service

Server returns invalid timezone. Go to ‘Advanced’ tab and set ‘serverTimezone’ prope

reference

Navicat

Install

official website

Crack

NavicatActive1

NavicatActive2

Issue

rsa public key not find

copy the keygen to the installation directory and run as an administrator

No All Pattern Found!File Already Patched?

  1. Click the installation file to re install Navicat
  2. First run the keygen, and then open Navicat

Close the netease youdao dictionary

-------------The end of this article, thanks for reading-------------