zoukankan      html  css  js  c++  java
  • MySQL的mysql-8.0.17-winx64版本安装过程中遇到的问题

    一、手动创建添加my.ini文件

    # CLIENT SECTION
    # ----------------------------------------------------------------------
    #
    # The following options will be read by MySQL client applications.
    # Note that only client applications shipped by MySQL are guaranteed
    # to read this section. If you want your own MySQL client program to
    # honor these values, you need to specify it as an option during the
    # MySQL client library initialization.
    #


    [mysql]
    # 设置mysql客户端默认字符集
    default-character-set=utf8
    [mysqld]
    #权限问题

    # 设置3306端口
    port = 3306

    # 设置mysql的安装目录
    basedir=C:Program Files (x86)mysql-8.0.17-winx64
    # 设置mysql数据库的数据的存放目录
    datadir=C:Program Files (x86)mysql-8.0.17-winx64data
    # 允许最大连接数max_connections=200
    # 服务端使用的字符集默认为8比特编码的latin1字符集
    character-set-server=utf8
    # 创建新表时将使用的默认存储引擎
    default-storage-engine=INNODB

    二、8.0版本登录出现Access denied for user 'root'@'localhost' (using password: YES)的解决方法

    https://blog.csdn.net/hunt_er/article/details/88037961

  • 相关阅读:
    shell 算术运算符
    shell 关系运算符
    shell 布尔运算符
    shell逻辑运算符
    shell 字符串运算符
    shell 文件测试运算符
    shell 运算符
    shell 循环总结
    Shell echo命令
    利用WHID为隔离主机建立隐秘通道
  • 原文地址:https://www.cnblogs.com/gaoxy/p/11240305.html
Copyright © 2011-2022 走看看