美文网首页
something about mysql5.7

something about mysql5.7

作者: 软件测试笔记 | 来源:发表于2020-03-18 11:19 被阅读0次

背景:公司新增一种数据库备份功能,所以作为测试,搭建测试环境,测试功能,对mysql的安装,配置进行了实操,以前也用过mysql,就是用Navicat远程连接,写写简单的sql语句而已,但是真正搭建一套mysql环境还是有很多需要注意的细节的,所以在这里也总结下,方便以后查看。

1.安装mysql5.7

去官网下载如下格式版本

操作系统最好选择新一点的,我之前在win server 2008上安装,各种报错,太难了,最后换了个win server 2016安装,一路顺畅;

因为这次只安装在windows平台上,所以运行上边的可执行文件,一步一步都是图形化界面,默认安装即可;

2.检查是否安装成功

去程序里找到mysql workbench ,输入密码连接,show databases;查看是否有结果返回

3.配置远程连接

mysql默认只能本地连接,更改下配置步骤如下:

3.1.cmd 连接mysql,进入mysql模式

mysql -uroot -p

3.2.选择数据库

use mysql;

3.3.开启远程连接

GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'password' WITH GRANT OPTION;

3.4.更新权限

FLUSH PRIVILEGES;

完成以上步骤就可以用Navicat远程连接啦,愉快的玩耍吧~

相关文章

  • something about mysql5.7

    背景:公司新增一种数据库备份功能,所以作为测试,搭建测试环境,测试功能,对mysql的安装,配置进行了实操,以前也...

  • About Something

    关于情绪 曾经我以为我是可以将情绪管理的很好的人,我以为将情绪深藏在心底不表现出来就是很好的自控力。然而,实际的情...

  • about something

    有人说“感情里人总要蠢一次” 最近我突然想明白了我和sxy的为什么会变成这样。那段时间大概是她最难受的时候,男朋友...

  • 2019-08-03

    Something about protocol of swift

  • Shallowly

    About youI am just saying Saying something about youAbout...

  • Diary-2.2

    There is no point of worrying about something uncertain ,...

  • test

    180718 something about fifa Halo, Ivan

  • Something About Movies

    Today we had our last lessons with two experienced Americ...

  • something about you

    人生苦短 我就不再想你了

  • Something about seniority in the

    By Cynthia In Chinese, seniority refers to the po...

网友评论

      本文标题:something about mysql5.7

      本文链接:https://www.haomeiwen.com/subject/wulqyhtx.html