博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
MySQL安装
阅读量:5219 次
发布时间:2019-06-14

本文共 1865 字,大约阅读时间需要 6 分钟。

MySql压缩包安装3.7版本

第一步:

  将MySql解压路径,即安装目录(例如:F:\MySql\mysql-5.7.20-winx64)配置到系统变量,

新建MYSQL_HOME : F:\MySql\mysql-5.7.20-winx64;

将配置好的MYSQL_HOME配置到path中 path : %MYSQL_HOME%\bin;

第二步:

  在安装目录中配置my.ini文件

# For advice on how to change settings please see# http://dev.mysql.com/doc/refman/5.7/en/server-configuration-defaults.html# *** DO NOT EDIT THIS FILE. It's a template which will be copied to the# *** default location during install, and will be replaced if you# *** upgrade to a newer version of MySQL.[mysqld]explicit_defaults_for_timestamp = true# Remove leading # and set to the amount of RAM for the most important data# cache in MySQL. Start at 70% of total RAM for dedicated server, else 10%.# innodb_buffer_pool_size = 128M# Remove leading # to turn on a very important data integrity option: logging# changes to the binary log between backups.# log_bin# These are commonly set, remove the # and set as required.# basedir = F:\MySql\mysql-5.7.20-winx64# datadir = F:\MySql\mysql-5.7.20-winx64\data# server_id = .....# 绑定IPv4和3306端口  bind-address = 0.0.0.0 port =3306  max_connections=200# Remove leading # to set options mainly useful for reporting servers.# The server defaults are faster for transactions and fast SELECTs.# Adjust sizes as needed, experiment to find the optimal values.# join_buffer_size = 128M# sort_buffer_size = 2M# read_rnd_buffer_size = 2Msql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES

  文件中的安装路径需要自己修改 basedir、datadir

第三步:

  以管理员的权限打开CMD,

  mysqld --install MySQL  安装MySQL

  net start MySQL  开启MySQL 成功显示“服务已启动成功”;

第四步:

  启动MySQL并修改密码

       在CMD控制台里执行命令  mysql -u root -p 

  回车执行后,输入刚才记录的随机密码

  执行成功后,控制台显示 mysql>,则表示进入mysql

  输入命令set password for root@localhost = password('123'); (注意分号)

  此时root用户的密码修改为123

ps:我在安装过程中遇到一个错误

一开始我以为缺少这个文件,安装之后还是不行出现了其他错误

解决方案:缺少VC2013运行库,下载并安装解决此问题。

 

转载于:https://www.cnblogs.com/superxff/p/8012486.html

你可能感兴趣的文章
NoSQL数据库常见分类
查看>>
JS小工具_字符串转16进制数组_02
查看>>
信息安全系统设计基础实验四—20135214万子惠20135227黄晓妍
查看>>
一题多解 之 Bat
查看>>
多次向文件结尾写入数据
查看>>
读书印记 - 《反脆弱》
查看>>
LAMP环境搭建
查看>>
puppet安装配置及使用
查看>>
better-scroll的使用
查看>>
条件DP UVA 672 Gangsters
查看>>
一个商业智能培训经理眼中的商业智能
查看>>
Quartz.Net 配置模板范例
查看>>
程序员怎样才能达到编程的最高境界
查看>>
H5混合开发中android终端和ios终端常见的兼容问题2
查看>>
HDU HDU1558 Segment set(并查集+判断线段相交)
查看>>
Java 内部类
查看>>
sublime Text如何取消两栏窗口?
查看>>
再linux下查看SQL语句执行消耗的时间
查看>>
命令行执行python模块时提示ImportError: No module named xxx
查看>>
storm ui
查看>>