mysql5.7.26安装教程链接:https://blog.csdn.net/Johnisjohn/article/details/101273595

 

mysql5.7.26安装教程

set password for root@localhost = password('123456');

 

设置配置文件,在配置文件my.ini 中 [mysqld]下面加入:

# 数据包大小:1G

max_allowed_packet=1073741824
slave_max_allowed_packet=1073741824

# 允许最大连接数
max_connections=1000
# 允许连接失败的次数。这是为了防止有人从该主机试图攻击数据库系统
max_connect_errors=10

相关文章:

  • 2021-07-25
  • 2022-12-23
  • 2021-05-05
  • 2021-07-25
  • 2022-03-04
  • 2022-02-07
  • 2021-07-19
  • 2022-01-10
猜你喜欢
  • 2022-12-23
  • 2021-08-08
  • 2021-08-21
  • 2021-10-24
  • 2021-12-29
  • 2021-09-24
  • 2021-12-15
相关资源
相似解决方案