在MySQL 8中,可以通过重置root用户的密码来打开数据库。下面是详细的操作步骤:
sqlUPDATE mysql.user SET authentication_string = PASSWORD('newpassword') WHERE User = 'root'; FLUSH PRIVILEGES; exit;
UPDATE mysql.user SET authentication_string = PASSWORD('newpassword') WHERE User = 'root'; FLUSH PRIVILEGES; exit;
完成以上步骤后,就能够使用新密码登录到MySQL数据库了。