mysql 5.6.26 winx64安装配置图文教程(一)
阅读目录
• 下载mysql免安装版
• 配置mysql数据库
• mysql环境变量
• 安装mysql数据库
公司服务器是windows 开发连接的数据库使用的是"mysql"
此篇随笔将介绍在windows上如何配置mysql数据库免安装版
一、下载mysql免安装版
• 首先进入mysql 官方网站 www.mysql.com -->downloads(下载) --> community(社区) --> mysql community server(mysql社区服务器)-->选择操作系统平台(windows)
• 下面有三个可选的下载文件
† 第一个是mysql installer 5.6 for windows,下载下来是一个.msi可执行安装文件
† 后面两个是解压版(zip版)分别是windows (x86, 64-bit) zip archive 和 windows (x86, 32-bit), zip archive
• 笔者选择的是 mysql-5.6.26-winx64.zip ,因为笔者的服务器版本是64位操作系统
二、配置mysql数据库
• 将下载的 mysql-5.6.26-winx64.zip 解压自定义目录,这里笔者将把这个压缩包解压至 d:\mysql-5_x64 目录;
• 打开这个目录,发现里面的文件夹和文件跟一个安装好后的mysql基本没有区别
• 修改mysql配置文件,在mysql-5_x64目录下有一个my-default.ini,可以算作模板来使用,里面的内容不是很多!可以自己创建一个 my.ini作为mysql配置文件,打开my.ini
[client]
port=3306
#客户端字符类型,与服务端一致就行,建议utf8
default-character-set=utf8
[mysqld]
#绑定ipv4和3306端口
bind-address = 0.0.0.0
port = 3306
#服务端字符类型,建议utf8
character_set_server=utf8
# 设置mysql的安装目录
basedir=d:/mysql-5_x64
# 设置mysql数据库的数据的存放目录
datadir=d:/mysql-5_x64/data
# 允许最大连接数
max_connections=201
• 这样一个基本的mysql环境所需要的参数就够了
三、mysql环境变量
• 右击这台电脑-->属性-->高级-->环境变量-->"用户变量"新建变量mysql_home 值d:\mysql-5_x64 ,"系统变量"找到变量path 编辑 在后面加上 ;%mysql_home%\bin
四、安装mysql数据库
• 运行cmd (win8 、win10以管理员运行cmd)-->进入d:\mysql-5_x64\bin目录
microsoft windows [版本 10.0.10240]
(c) 2015 microsoft corporation. all rights reserved.
c:\windows\system32>d:
d:\>cd mysql-5_x64
d:\mysql-5_x64>cd bin
d:\mysql-5_x64\bin>
• 执行mysqld -install 安装mysql
d:\mysql-5_x64\bin>mysqld -install
service successfully installed
• 执行net start mysql启动mysql
d:\mysql-5_x64\bin>net start mysql
d:\mysql-5_x64\bin>net start mysql
mysql 服务正在启动 .
mysql 服务已经启动成功
启动mysql服务:net start mysql
停止mysql服务:net stop mysql
删除mysql服务:sc delete mysql
• 修改mysql密码
d:\mysql-5_x64\bin>mysql -u root -p //使用root登入mysql
enter password: //密码空,回车即可
welcome to the mysql monitor. commands end with ; or \g.
your mysql connection id is 2
server version: 5.6.26 mysql community server (gpl)
copyright (c) 2000, 2015, oracle and/or its affiliates. all rights reserved.
oracle is a registered trademark of oracle corporation and/or its
affiliates. other names may be trademarks of their respective
owners.
type 'help;' or '\h' for help. type '\c' to clear the current input statement.
mysql>
mysql> show databases; //显示所有数据库 +--------------------+ | database | +--------------------+ | information_schema | | mysql | | performance_schema | | test | +--------------------+ 4 rows in set (0.00 sec)
• 进入'mysql'数据、删除空用户
mysql> use mysql; database changed mysql> delete from user where user=''; query ok, 1 row affected (0.00 sec)
• 更新密码并重新刷权限表到内存(也可以用mysqladmin工具来设置密码)
mysql> update user set password=password('123456') where user='root'; query ok, 4 rows affected (0.00 sec) rows matched: 4 changed: 4 warnings: 0 mysql> flush privileges; query ok, 0 rows affected (0.00 sec)
• 尝试登陆
d:\mysql-5_x64\bin>mysql -u root -p //用root用户登入数据库 enter password: ****** //输入更新后的密码 123456 welcome to the mysql monitor. commands end with ; or \g. your mysql connection id is 5 server version: 5.6.26 mysql community server (gpl) copyright (c) 2000, 2015, oracle and/or its affiliates. all rights reserved. oracle is a registered trademark of oracle corporation and/or its affiliates. other names may be trademarks of their respective owners. type 'help;' or '\h' for help. type '\c' to clear the current input statement. mysql>
• 开启远程连接(给予全部权限,允许 192.168.1.x 网段都可以连接)
mysql> grant all privileges on *.* to 'root'@'192.168.1.%' identified by 'root' with grant option; query ok, 0 rows affected (0.00 sec) mysql> flush privileges; query ok, 0 rows affected (0.00 sec) mysql> select host,user,password from user; +-------------+------+-------------------------------------------+ | host | user | password | +-------------+------+-------------------------------------------+ | 192.168.1.% | root | *81f5e21e35407d884a6cd4a731aebfb6af209e1b | +-------------+------+-------------------------------------------+ 4 rows in set (0.00 sec)
精彩专题分享:
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。