/中文/
/中文/
/中文/
/中文/
/中文/
/中文/
/中文/
/中文/
/中文/
/中文/
大部分做编程工作的朋友都需要Mysql数据库64位中文版吧,能够让你的软件顺利调取各种数据,2019Mysql数据库下载是最新的数据库,兼容性非常好支持win7/win8.1/win10。Mysql数据库64位中文版能够让你更简单的工作,不会有版本的更迭麻烦了!
高速
高速是MySQL的显著特性,在MySQL中,使用了极快的“B树”磁盘表(MyISAM)和索引压缩;通过使用优化的“单扫描多连接”,能够实现极快的连接。
支持多平台
MySQL支持超过20种开发平台,包括Linux、Windows、FreeBSD、IBM AIX、HP-UX、Mac OS、OpenBSD、Solaris等。
支持各种开发语言
MySQL为各种流行的程序设计语言提供支持,为它们提供了很多API函数,包括C、C++、Java、Perl、PHP等。
提供多种存储器引擎
MySQL中提供了多种数据库存储引擎,各引擎各有所长,适用于不同的应用场合,用户可以选择合适的引擎以得到高性能。
功能强大
强大的存储引擎使MySQL能够有效应用于任何数据库应用系统,高效完成各种任务。
支持大型数据库
InnoDB存储引擎将InnoDB表保存在一个表空间内,该表空间可由数个文件创建。
安全
灵活和安全的权限和密码系统,允许基于主机的验证。
价格低廉
MySQL采用GPL许可,很多情况下,用户可以免费使用MySQL。
1.将下载的 mysql-5.7.17-winx64.zip 解压自定义目录,将把这个压缩包解压至 D:\mysql-5_x64 目录;
2.打开这个目录,发现里面的文件夹和文件跟一个安装好后的MySQL基本没有区别
3.修改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环境所需要的参数就够了
4.MySQL环境变量
右击这台电脑-->属性-->高级-->环境变量-->"用户变量"新建变量MYSQL_HOME 值D:\mysql-5_x64 ,"系统变量"找到变量path 编辑 在后面加上 ;%MYSQL_HOME%\bin
5.安装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
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'数据、删除空用户
更新密码并重新刷权限表到内存(也可以用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用户登入数据库
Cnter 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>