点击下载MySQL5.7.34
[mysqld] #shared-memory #skip-grant-tables sql_mode=STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION # 设置3306端口 port=3306 # 设置mysql的安装目录 basedir="" # 设置mysql数据库的数据的存放目录 datadir="" # 允许最大连接数 max_connections=200 # 允许连接失败的次数。这是为了防止有人从该主机试图攻击数据库系统 max_connect_errors=10 # 服务端使用的字符集默认为UTF8 #character-set-server=utf8 # 创建新表时将使用的默认存储引擎 default-storage-engine=INNODB # 修改默认密码的加密方式default_authentication_plugin=mysql_native_password [mysql] # 设置mysql客户端默认字符集 default-character-set=utf8 [client] # 设置mysql客户端连接服务端时默认使用的端口 port=3306
mysqld --initialize --console
net start mysql
msyql -uroot -p[初始化看到的密码]
mysql>alter user 'root'@'localhost' identified by '[密码]';
mysql>flush privileges;
# 退出 mysql>exit; # 连接 mysql -uroot -p[密码] # 查询数据库 mysql>show databases;