热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

Linux安装mysql的几种方法

1.ATP方式安装在ubuntu系统的apt软件仓库中,默认存在MySQL数据库,所以直接使用apt命令就可以安装。使用命令:aptapt-getin

1.ATP方式安装

在ubuntu系统的apt软件仓库中,默认存在MySQL数据库,所以直接使用apt命令就可以安装。 使用命令:
apt/apt-get install mysql-server mysql-client


2 mariadb

CentOS YUM中存在mariadb的源,因此安装很是简单(如果在安装CentOS时选择了,可能已经默认 安装了)。
安装过程:
1、如果使用官方源,直接yum install MariaDB-server MariaDB-client -y命令安装即可。
2、建议使用国内的源:添加mariadb10.2的国内yum源,之前添加的是国外的源,安装很耗时,因此可以使用国内yum源,通过这个源安装较快。
vim /etc/yum.repos.d/Mariadb.repo
添加以下内容:
[mariadb]
name = MariaDB
baseurl =https://mirrors.ustc.edu.cn/mariadb/yum/10.2/centos7-amd64
gpgkey=https://mirrors.ustc.edu.cn/mariadb/yum/RPM-GPG-KEY-MariaDB
gpgcheck=1
官方yum源:
#MariaDB 10.2 CentOS repository list - created 2018-06-06 03:42 UTC
#http://downloads.mariadb.org/mariadb/repositories/
[mariadb]
name = MariaDB
baseurl = http://yum.mariadb.org/10.2/centos7-amd64
gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB
gpgcheck=1
3、清除yum源缓存数据
yum clean all
4、安装mariadb10.2
yum install MariaDB-server MariaDB-client -y
5、启动并添加开机自启:
systemctl start mariadb.service
systemctl enable mariadb.service
6、安全插件初始化密码(如果安装系统时已经安装了MariaDB,则直接初始化密码即可)
/usr/bin/mysql_secure_installation
一般建议按以下进行配置:
Enter current password for root (enter for none): Just press the Enter button
Set root password? [Y/n]: Y
New password: your-MariaDB-root-password
Re-enter new password: your-MariaDB-root-password
Remove anonymous users? [Y/n]: Y
Disallow root login remotely? [Y/n]: n
Remove test database and access to it? [Y/n]: Y
Reload privilege tables now? [Y/n]: Y


3 YUM安装

通过官网查找需要的版本和对应的平台版本 https://dev.mysql.com/downloads/repo/yum/ 。
然后,在Linux上打开终端并输入命令进行下载:
wget https://dev.mysql.com/get/mysql80-community-release-el7-3.noarch.rpm
使用以下命令安装下载的发行包: -Uvh:升级软件包
rpm -Uvh mysql80-community-release-el7-3.noarch.rpm
选择发行版本,进行安装:
使用MySQL Yum存储库时,默认情况下会选择要安装的最新GA版本MySQL。如果这是您想要的,则 可以跳到下一步。
默认情况下,默认启用最新GA系列(当前为MySQL 8.0)的子存储库,而所有其他系列(例如, MySQL 5.7系列)的子存储库均被禁用。使用此命令可查看MySQL Yum存储库中的所有子存储库,并查 看已启用或禁用了哪些子存储库。
列出所有版本:
yum repolist all | grep mysql
发现8.0版本是enabled的,5.7版本是disabled的 这里我们需要安装5.7版本的,所以把8.0的进行禁用,然后再启用5.7版本 先禁用8.0版本:
yum-config-manager --disable mysql80-community
运行 yum-config-manager命令提示 -bash: yum-config-manager: command not found 命令未找到,因 为 yum-config-manager 在 yum-utils包里面。由于系统默认没有这个命令,需要另外进行安装。
yum -y install yum-utils
然后启用5.7版本:
检查启用版本:
进行安装时请确保只有一个版本启用,否则会显示版本冲突
安装Mysql:
安装成功后验证版本:
mysql --version
2.2.3.2 案例:安装5.7
yum install mysql-community-server
yum install mysql-server mysql-client -y
yum -y install mysql-community-server
#取消自动更新
#还有一个问题,就是因为安装了Yum Repository,以后每次yum操作都会自动更新,需要把这个卸载掉yum -y remove mysql57-community-release-el7-10.noarch


4 通用二进制格式安装

1、下载glibc版本的Mysql: https://downloads.mysql.com/archives/community/
选择Linux - Generic,之后选择需要的版本即可
mysql-5.7.14-linux-glibc2.5-x86_64.tar
2、新建用户以安全方式运行进程
groupadd -r -g 306 mysql
useradd -g 306 -r -u 306 mysql


推荐阅读
author-avatar
mobiledu2502868933
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有