|
板凳

楼主 |
发表于 2024-9-28 16:40:10
|
只看该作者
最好好5.7的my.ini备份一下,
因为my.ini如果有属性不识别时
C:\Windows\system32>mysqld --initialize
2024-09-28T08:20:31.234808Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is
deprecated. Please use --explicit_defaults_for_timestamp server option (see doc
umentation for more details).
2024-09-28T08:20:31.234808Z 0 [Warning] 'NO_ZERO_DATE', 'NO_ZERO_IN_DATE' and 'E
RROR_FOR_DIVISION_BY_ZERO' sql modes should be used with strict mode. They will
be merged with strict mode in a future release.
2024-09-28T08:20:31.234808Z 0 [ERROR] --initialize specified but the data direct
ory has files in it. Aborting.
2024-09-28T08:20:31.234808Z 0 [ERROR] Aborting
如果要再次执行,需要把Data目录里的内容清空
C:\Windows\system32>mysqld -install mysql57
Service successfully installed.
C:\Windows\system32>net start mysql57
mysql57 服务正在启动 .
mysql57 服务无法启动。
服务没有报告任何错误。
请键入 NET HELPMSG 3534 以获得更多的帮助。
C:\Windows\system32>mysqld --initialize
C:\Windows\system32>net start mysql57
mysql57 服务正在启动 .
mysql57 服务已经启动成功。
C:\Windows\system32>mysql -uroot -p
Enter password: ************
ERROR 1130 (HY000): Host '::1' is not allowed to connect to this MySQL server
加上skip-grant-tables
update mysql.user set authentication_string=password("root") where user="root"
C:\Windows\system32>net stop mysql57
mysql57 服务正在停止.
mysql57 服务已成功停止。
C:\Windows\system32>mysql -uroot -p
Enter password: **
ERROR 2003 (HY000): Can't connect to MySQL server on 'localhost' (10061)
C:\Windows\system32>net start mysql57
mysql57 服务正在启动 .
mysql57 服务已经启动成功。
C:\Windows\system32>mysql -uroot -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.7.26 MySQL Community Server (GPL)
Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> exit;
Bye
C:\Windows\system32>net stop mysql57
mysql57 服务正在停止..
mysql57 服务已成功停止。
C:\Windows\system32> |
|