win10安装mysql-8.0.11
2018-04-26MySQL 8 要比 MySQL 5.7 快 2 倍,还带来了大量的改进和更快的性能!
1、从 MySQL 5.7 升级到 MySQL 8.0 仅支持通过使用 in-place 方式进行升级,并且不支持从 MySQL 8.0 降级到 MySQL 5.7
2、新功能:
- 使用C和C++编写,并使用了多种编译器进行测试,保证源代码的可移植性。
- 支持AIX、BSDi、FreeBSD、HP-UX、Linux、Mac OS、Novell Netware、NetBSD、OpenBSD、OS/2 Wrap、Solaris、SunOS、Windows等多种操作系统。
- 为多种编程语言提供了API。这些编程语言包括C、C++、C#、Delphi、Eiffel、Java、Perl、PHP、Python、Ruby和Tcl等。
- 支持多线程,充分利用CPU资源,支持多用户。
- 优化的SQL查询算法,有效地提高查询速度。
- 既能够作为一个单独的应用程序应用在客户端服务器网络环境中,也能够作为一个库而嵌入到其他的软件中。
- 提供多语言支持,常见的编码如中文的GB 2312、BIG5,日文的Shift_JIS等都可以用作数据表名和数据列名。
- 提供TCP/IP、ODBC和JDBC等多种数据库连接途径。
- 提供用于管理、检查、优化数据库操作的管理工具。
- 可以处理拥有上千万条记录的大型数据库。
3、下载:
http://ftp.jaist.ac.jp/pub/mysql/Downloads/MySQL-8.0/mysql-8.0.11-winx64.zip
https://dev.mysql.com/downloads/windows/
4、解压缩到d:\mysql
5、安装Win+x+a开启命令行,cd d:\mysql
执行mysqld --install
6、初始化数据
mysqld --initialize
从或者错误日志获得密码
.\bin\mysqld --initialize 默认临时密码在错误日志里或检查返回信息
mysqld --initialize-insecure无密码
7、启动net start mysql
8、netstat -an|findstr 3306
9、修改密码mysqladmin -u root -p password 123456
10、mysql -u root -p
Enter password: ******
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 27
Server version: 8.0.11 MySQL Community Server - GPL
Copyright (c) 2000, 2018, 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 |