mysql数据库5.7.29安装与配置(离线安装包版)

mysql数据库Download

Choosing the right file:

If you have an online connection while running the MySQL Installer, choose the mysql-installer-web-community file.
Note: MySQL Installer is 32 bit, but will install both 32 bit and 64 bit binaries. 

“安装的文件启动器”虽然是32位软件(推测基于python开发),但是它里面提供64位MySQL数据库的安装选项。

 一、windows下安装的选项

学习Java后端开发只需要安装以下两项产品即可,不必安装整个mysql全家桶。

mysql数据库5.7.29安装与配置(离线安装包版)_第1张图片

 二、windows10下的配置

(1) 环境变量配置

打开控制面板=>系统和安全=>系统=>高级系统设置,选择环境变量,在系统变量中找到path,编辑该选项。

mysql数据库5.7.29安装与配置(离线安装包版)_第2张图片

第一行是oracle数据库的环境变量path配置,上图中最后一行是jdk的安装路径path配置。我们要添加mysql安装路径path配置。

系统默认安装的5.6.45版本mysql路径的位置如下 :

C:\Program Files\MySQL\MySQL Server 5.7\bin

配置完之后,使用WIN+R组合键调用cmd窗口测验是否成功,如图则表示成功: 

mysql数据库5.7.29安装与配置(离线安装包版)_第3张图片

(2)修改数据库数据保存位置

修改my.ini配置文件

打开上面的C:\Program Files\MySQL\MySQL Server 5.7文件夹,有一个my-default.ini的文件,复制一个它的副本在当前文件夹,并命名为my.ini,用Notepad++打开my.ini编辑保存。

# For advice on how to change settings please see
# http://dev.mysql.com/doc/refman/5.6/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 = .....
# datadir = .....
# port = .....
basedir=C:\Program Files\MySQL\MySQL Server 5.7
datadir =F:\Program Files\Documents\MySQL Server 5.7\data
port=3306
character_set_server=utf8
# 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 
[WinMySQLAdmin]
C:\Program Files\MySQL\MySQL Server 5.6\bin\mysqld.exe

basedir的值,是刚才配置的环境变量Path,末尾去掉\bin,表示当前版本安装的绝对路径。

basedir=C:\Program Files\MySQL\MySQL Server 5.7

datadir的值,是未来我们使用mysql数据库保存数据库TABLE文件的位置。 

datadir =F:\Program Files\Documents\MySQL Server 5.7\data

桌面鼠标右键单击:此电脑=>管理mysql数据库5.7.29安装与配置(离线安装包版)_第4张图片

下面是mysql安装在本地windows10系统上的隐藏文件夹,该目录里面可能有不同版本mysql的数据库表文件夹。

C:\ProgramData\MySQL      把里面的Data文件夹移动到你自己的目录。

mysql数据库5.7.29安装与配置(离线安装包版)_第5张图片

注意:my.ini里面的/是键盘?上的/

datadir=F:/Program Files/Documents/MySQL Server 5.7/Data

修改本地文件夹的用户权限

在移动到自建目录后,会出现服务无法启动的问题,这是因为MySQL Service是以Network Service身份启动的,这个时候需要把自建目录的所有权限都给Network Service账户。

选中新建的Data文件夹右键属性,在安全一栏下面组或用户名可以给Network Service 添加权限。

mysql数据库5.7.29安装与配置(离线安装包版)_第6张图片

mysql数据库5.7.29安装与配置(离线安装包版)_第7张图片


三、修改mysql的root密码

可以通过cmd命令行操作:

    mysql>show databases;
    mysql>use mysql;
    mysql>UPDATE user SETpassword=PASSWORD("root") WHERE user='root';
    mysql>FLUSH PRIVILEGES;
    mysql>QUIT

 

=================

end

你可能感兴趣的:(软件安装使用)