当前位置:   article > 正文

Linux MySQL三种安装方式_linux中musql安装方式

linux中musql安装方式

MySQL 三种常用安装方式:

离线安装:

在mysql官网进行下载,步骤如下:
在这里插入图片描述
然后找到这个:
在这里插入图片描述

在这里插入图片描述
在这里插入图片描述
因为我这里使用的OS为CentOS7,大家可以按自己的系统进行选择。
在这里插入图片描述
在这里插入图片描述
最后通过XFTP/SCRTXF将文件传到虚拟机上。
在这里插入图片描述
然后将文件解压到你想要保存的目录。

[root@node2 mysqlUNonline]# tar -xvf mysql-5.7.18-1.el7.x86_64.rpm-bundle.tar -C mysqlPackage/
  • 1

在这里插入图片描述
然后开始安装:

[root@node2 mysqlPackage]# yum localinstall mysql-community-server-5.7.18-1.el7.x86_64.rpm 
Loaded plugins: fastestmirror
Examining mysql-community-server-5.7.18-1.el7.x86_64.rpm: mysql-community-server-5.7.18-1.el7.x86_64
Marking mysql-community-server-5.7.18-1.el7.x86_64.rpm to be installed
Resolving Dependencies
--> Running transaction check
---> Package mysql-community-server.x86_64 0:5.7.18-1.el7 will be installed
--> Processing Dependency: mysql-community-common(x86-64) = 5.7.18-1.el7 for package: mysql-community-server-5.7.18-1.el7.x86_64
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

这里报依赖错误,只需要根据指出的依赖将安装包在命令中补上即可。

yum localinstall mysql-community-server-5.7.18-1.el7.x86_64.rpm mysql-community-common-5.7.18-1.el7.x86_64.rpm mysql-community-client-5.7.18-1.el7.x86_64.rpm mysql-community-libs-5.7.18-1.el7.x86_64.rpm
  • 1

这里还是不让安装,我们需要卸载mariadb postfix

[root@node2 mysqlPackage]# rpm -e mariadb-libs postfix
  • 1

在这里插入图片描述
然后就可以安装了。
在这里插入图片描述
启动mysql,并过滤密码。

[root@node2 mysqlPackage]# systemctl start mysqld
[root@node2 mysqlPackage]# grep 'password' /var/log/mysqld.log 
2023-07-05T15:40:02.408047Z 1 [Note] A temporary password is generated for root@localhost: &rfDnlA?q6ii
  • 1
  • 2
  • 3

临时密码:&rfDnlA?q6ii

在这里插入图片描述

在线安装:

同样去官网找到rpm包。
在这里插入图片描述
在这里插入图片描述
一样的上传到虚拟机。
在这里插入图片描述

yum localinstall mysql80-community-release-el7-7.noarch.rpm
  • 1

下载完成后会生产仓库文件。

#使用该命令查看仓库的状态,那些启用或没启用
yum repolist all | grep mysql
#然后直接下载即可
yum install mysql-community-server
  • 1
  • 2
  • 3
  • 4

因为官方的仓库会很慢我推荐用国内的镜像源。
例如我自己配的仓库:

[mysql]
name=mysql
baseurl=https://mirrors.tuna.tsinghua.edu.cn/mysql/yum/mysql-5.7-community-el7-x86_64/
enabled=1
gpgcheck=0
  • 1
  • 2
  • 3
  • 4
  • 5

该镜像地址是清华大学的镜像源,速度快很多。
完成后直接下载即可。
在这里插入图片描述

二进制安装:

官网下载包
在这里插入图片描述
在这里插入图片描述
当然这里是8版本,若需要5.7版本只需要点击右上方的Looking for即可。
然后传到虚拟机。
在这里插入图片描述
创建系统组下的组和用户:

[root@node3 ErPackage]# groupadd -r mysql
[root@node3 ErPackage]# useradd mysql -r -g mysql -c "MySQL Server" -s /bin/false
# -c是用于描述该用户
  • 1
  • 2
  • 3

解压:

[root@node3 ErPackage]# tar -xvf mysql-5.7.14-linux-glibc2.5-x86_64.tar -C /usr/local/
  • 1

在这里插入图片描述
这里还需要在解压一次。

 tar -xvf mysql-5.7.14-linux-glibc2.5-x86_64.tar.gz -C /usr/local/
  • 1

最终效果如下所示:
在这里插入图片描述
创建软链接:
目的:方便以后升级MySQL的版本。

[root@node3 local]# ln -sv /usr/local/mysql-5.7.14-linux-glibc2.5-x86_64 /usr/local/mysql
  • 1

在这里插入图片描述

初始化:

/usr/local/mysql/bin/mysqld --initialize --user=mysql --basedir=/usr/local/mysql/ --datadir=/usr/local/mysql/data
  • 1

初始化后就能拿到密码,一定要记下来。
在这里插入图片描述
#FGdQL?he83Y

提供配置文件和服务启动脚本:

[root@node3 local]# cp /usr/local/mysql/support-files/my-default.cnf /etc/my.cnf
cp: overwrite ‘/etc/my.cnf’? y
修改配置文件:vim /etc/my.cnf
			[mysqld]
			...
			basedir = /usr/local/mysql
			datadir = /usr/local/mysql/data
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

在这里插入图片描述
服务脚本:

#将该脚本复制过去
[root@node3 local]# cp /usr/local/mysql/support-files/mysql.server /etc/init.d/mysqld
#添加系统服务
[root@node3 local]# chkconfig --add mysqld
#开启mysqld系统服务
[root@node3 local]# chkconfig mysqld on
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

启动MYSQL:

/usr/local/mysql/bin/mysqld_safe --user=mysql &
#RES:
[1] 2434
[root@node3 local]# 2023-07-05T17:47:51.130340Z mysqld_safe Logging to '/usr/local/mysql/data/node3.err'.
2023-07-05T17:47:51.181562Z mysqld_safe Starting mysqld daemon with databases from /usr/local/mysql/data
  • 1
  • 2
  • 3
  • 4
  • 5

添加到环境变量:

vim /etc/profile.d/mysql.sh
#内容:
export PATH=/usr/local/mysql/bin:$PATH
  • 1
  • 2
  • 3

加载使其生效
最后完成安装。
在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/677005
推荐阅读
相关标签
  

闽ICP备14008679号