如何安装MYSQL

如何安装MYSQL,第1张

使用yum安装mysql数据库的软件包 [root@xuegod63 ~]# yum -y install mariadb-server mariadb 。

注:  mariadb-server   #MariaDB数据库 mariadb      # MariaDB服务器Linux下客户端 。

注:从centos7系统开始,系统中自带的mysql数据库变成了mariadb-server,mariadb-server和mysql操作上一样。mariadb-server是mysql的一个分支。

启动数据库服务[root@xuegod63 ~]# systemctl start  mariadb  #启动MariaDB服务。[root@xuegod63 ~]# systemctl enable  mariadb  #设置开启自动启动MariaDB服务。

安装完mariadb-server后,运行mysql_secure_installation去除安全隐患,[root@xuegod63 ~]# mysql_secure_installation #进入安全配置导向。

NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MySQLSERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY!

In order to log into MySQL to secure it, we'll need the current,password for the root user. If you've just installed MySQL, and,you haven't set the root password yet, the password will be blank,,so you should just press enter here.Enter current password for root (enter for none):   #初次运行直接回车,因为root用户没有密码。

OK, successfully used password, moving on,Setting the root password ensures that nobody can log into the MySQL,root user without the proper authorisation.,Set root password? [Y/n] Y #是否设置root用户密码,输入Y。

New password: 123456   #新密码123456,Re-enter new password: 123456,Password updated successfully!Remove anonymous users? [Y/n] Y   #是否删除匿名用户,生产环境建议删除,所以直接回车或Y。

Success!Normally, root should only be allowed to connect from 'localhost'.  Thisensures that someone cannot guess at the root password from the network.Disallow root login remotely? [Y/n] Y  #是否禁止root远程登录,根据自己的需求选择Y/n并回车建议禁止。

Success!By default, MariaDB comes with a database named 'test' that anyone canaccess.  This is also intended only for testing, and should be removedbefore moving into a production environment.Remove test database and access to it? [Y/n] Y   #是否删除test数据库,直接回车或Y。

方法/步骤

1

1、在官网上下载MySQL数据,点击Download开始下载mysql数据库。

请点击输入图片描述

下载完成后,开始解压该压缩包,点击setup.exe,开始进行安装。

请点击输入图片描述

选择默认设置,点击Next---Next---Next---Install,进行mysql安装,最后点击close,则mysql安装成功。

请点击输入图片描述

请点击输入图片描述

请点击输入图片描述

请点击输入图片描述

将mysql的安装目录下的bin文件所在路径放入环境变量PATH中,这样保证在cmd环境下可以访问mysql命令。

请点击输入图片描述

选择 我的电脑|管理|服务,设置mysql服务为自启动,并启动mysql服务。

请点击输入图片描述

打开mysql控制台,输入密码,即可登录mysql控制台。

请点击输入图片描述

基本用法:

mysql -h localhost -u {userName} -p {passWord},进行登录mysql控制台。

输入status,可以查看当前MySQL的状态信息。

请点击输入图片描述

基本语句使用,包括增删改查语句:

select * from table1

delete from table1

update from table1 where {where}

高级使用语句,包括:

多表联接:from A join B on A.id=B.id;

排序:order by

分组:group

分页:limit offset,length 等。

掌握以上基本用法,就已经基本了解MySQL的使用过程了。

mysql数据库5.7安装的方法:首先进入浏览器,找到mysql数据库5.7下载,下载之后找到安装包保存的文件夹,点击进入,如果电脑的扫毒软件要选择信任,按照提示说明一步一步地安装,最后可以在电脑开始菜单栏中找到安装好的软件,既可以使用了。

1、进入浏览器,搜索Mysql5.7下载。

2、找到要安装的版本。

3、点击下载。

4、选择想要保存的位置。

5、电脑上的杀毒软件会阻止安装,这个时候应该添加信任。

6、信任之后就可以安装了。

7、等待插件安装完成。

8、在保存的文件里,双击插件,进入安装软件页面。

9、进入页面,点击Next。

10、勾选同意规则,点击Next。

11、一般自己使用的类型,都是选择Typical,所以点击标示。

12、进入页面,再点击Install。

13、等待安装MySQL 5.7。

14、点击Finish。

15、点击开始页面,拉出所有程序。

16、找到MySQL文件夹。

17、找到MYSQL Server 5.7文件夹。

18、点击软件,进行使用。


欢迎分享,转载请注明来源:夏雨云

原文地址:https://www.xiayuyun.com/zonghe/73921.html

(0)
打赏 微信扫一扫微信扫一扫 支付宝扫一扫支付宝扫一扫
上一篇 2023-03-02
下一篇2023-03-02

发表评论

登录后才能评论

评论列表(0条)

    保存