欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

mysql5.7.13 环境搭建教程(解压缩版)

程序员文章站 2024-02-15 09:16:28
最近决定学习数据库,在比较了各个数据库之后,选择从mysql入手,主要原因:  •开源  •成熟,通用  ...

最近决定学习数据库,在比较了各个数据库之后,选择从mysql入手,主要原因:
 •开源
 •成熟,通用
 •用户量多,社区完善
 •入门简单

一、下载安装
 mysql的官网下载地址:http://dev.mysql.com/downloads/mysql/
 mysql官网有俩种版本可供下载,分别是客户端版本(recommended download,也是官网的推荐版本)和解压缩版本(archive)。我这里选择的是解压缩版本,点击download进行下载,下载完毕后直接将压缩包解压到您想要安装mysql的目标路径即可。
我下载的是5.7.13版本,解压后,得到一个mysql-5.7.13-winx64的文件夹,它包含如下文件:
2016/07/18  14:34    <dir>          .
2016/07/18  14:34    <dir>          ..
2016/07/18  14:34    <dir>          bin
2016/05/25  13:50            17,987 copying
2016/07/18  14:34    <dir>          docs
2016/07/18  14:33    <dir>          include
2016/07/18  14:34    <dir>          lib
2016/05/25  14:08             1,141 my-default.ini
2016/05/25  13:50             2,478 readme
2016/07/18  14:34    <dir>          share
               3 个文件         21,606 字节
               7 个目录 118,994,726,912 可用字节
至此,下载安装完毕 

二、配置mysql 

1.配置my.ini
我这里将mysql-5.7.13-winx64文件重命名为mysql(原文件名太长了),该文件下的my-default.ini是默认的配置文件,我们这里需要自己重新实现配置:将my-default.ini复制一份并重命名为my.ini,并将最将basedir、datadir等参数的文件目录替换成你自己mysql所在目录的路径。

 # 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]

# 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 = c:\mysql
datadir = c:\mysql\data
# port = .....
# server_id = .....


# 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 = 2m

sql_mode=no_engine_substitution,strict_trans_tables 

我这里的mysql文件放在c盘下,所以只要把上面文件中“c:/mysql”的地方填入你自己的文件路径就ok了。 

2.配置环境变量
将你的mysql bin文件夹的路径添加到path中,很简单,不多说了。

三、运行mysql
以管理员身份运行cmd(一定要用管理员身份运行),并进入到mysql的bin文件中
mysqld --remove
mysqld --install
mysqld --initialize //会生成一个data文件夹
net start mysql //启动mysql服务
依次执行这三个命令后,打开data文件夹,找到其下error文件类型的文件打开,该文件是本次mysql初始化的log日志,包括初始化密码。如果显示“root@localhost is created with an empty password !”,则为空。然后执行
 mysql -uroot -p
输入用户名和密码,显示“ type 'help;' or '\h' for help. type '\c' to clear the current input statement. ”,则表示连接成功。 

四、登录出错
 
如果登录的时候存在问题,显示“ access denied for user 'root'@'localhost'”,可以尝试重新设置设置root密码:
 1.修改/my.ini文件,在[mysqld]下添加 skip-grant-tables , 再启动mysql

 2.然后用空密码方式使用root用户登录 mysql;
 mysql -u root

 3.修改root用户的密码;

 mysql> update mysql.user set password=password('新密码') where user='root'
mysql> flush privileges;
mysql> quit

 4.重新启动mysql,就可以使用新密码登录了。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。