欢迎来到代码驿站!

Mysql

当前位置:首页 > 数据库 > Mysql

mysql 5.7.13 winx64安装配置方法图文教程(win10)

时间:2021-01-27 10:42:04|栏目:Mysql|点击:

本文实例为大家分享了mysql 5.7.13 winx64安装配置方法图文教程,供大家参考,具体内容如下

下载

地址:http://dev.mysql.com/downloads/file/?id=463242

安装

1、解压下载好的mysql-5.7.13-winx64.zip到你需要安转的目录(eg:D:\mysql);

2、配置解压目录下的my_default.ini中命名为my.ini

作相关的配置如下:

# These are commonly set, remove the # and set as required.
basedir = D:\mysql5.7(mysql安装目录)
datadir = D:\mysql5.7\data(mysq中数据的保存目录,自己定)
port = 3306(mysq的端口号)
# server_id = .....

3、添加环境变量

将D:\mysql5.7\bin添加到环境变量之中;

eg:......;D:\mysql5.7\bin

4、初始化

进入MySQL的bin文件夹
mysqld ?Cinstall
mysqld ?Cinitialize ?Cconsole
(有一个 root@localhost: 后面有一连串的字母数字符号, 这是 MySQL 为你自动生成的随机密码,一定要记下来, 一会我们登陆 MySQL 数据库的时候要用)。
PS:使用-initialize生成随机密码,使用-initialize-insecure生成空密码,初始化后data文件夹会自动生成,不用自己新建哦。

5、启动mysql

net start mysql

6、进入msyql并设置密码

D:\mysql5.7\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.7.13 MySQL Community Server (GPL)

Copyright (c) 2000, 2016, 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> set password=password('你自己的密码');
Query OK, 0 rows affected, 1 warning (0.00 sec)

mysql>

连接到远程的mysql(两台win7局域网之间的连接mysql)

连接中的错误:

1、错误描述:设置root的远程权限时:ERROR 1062 (23000): Duplicate entry ‘%-root' for key ‘PRIMARY'(最好不用这个,使用使用下面的的方法授权)。
解决办法:已经设置成功了。

2、mysql中的授权:

mysql> GRANT ALL PRIVILEGES ON . TO ‘root'@'%' IDENTIFIED BY ‘密码' WITH GRANT OPTION; 
mysql> flush privileges; 

3、关闭防火墙(同时注意作为mysql载体的win7的ip地址的正确性局域网ip)

上一篇:mysql 8.0.20 安装配置方法图文教程

栏    目:Mysql

下一篇:Linux系统下mysqlcheck修复数据库命令(详解)

本文标题:mysql 5.7.13 winx64安装配置方法图文教程(win10)

本文地址:http://www.codeinn.net/misctech/52297.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有