CentOS 6.5通过yum安装mysql 5.5、5.6、5.7版本

本文涉及的产品
RDS MySQL Serverless 基础系列,0.5-2RCU 50GB
云数据库 RDS PostgreSQL,高可用系列 2核4GB
RDS MySQL Serverless 高可用系列,价值2615元额度,1个月
简介:

1、安装mysql的yum源,这个源包括5.5、5.6、5.7版本:

备注:如果要专门下载某个版本,可以到http://dev.mysql.com/downloads/repo/yum下载。

1
2
3
4
5
[root@agile ~] # rpm -ivh http://repo.mysql.com/mysql-community-release-el6.rpm
Retrieving http: //repo .mysql.com /mysql-community-release-el6 .rpm
warning:  /var/tmp/rpm-tmp .C87LHo: Header V3 DSA /SHA1  Signature, key ID 5072e1f5: NOKEY
Preparing...                 ########################################### [100%]
    1:mysql-community-release ########################################### [100%]


2、打开mysql的yum源文件,如果要安装mysql哪个版本,选择后把里面的enable设置为1。

备注:或者用yum-config-manager命令方式开启或关闭。

yum-config-manager --disable mysql55-community
yum-config-manager --enable mysql56-community
yum-config-manager --disable mysql57-community

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[root@agile ~] #vim /etc/yum.repos.d/mysql-community.repo
# Enable to use MySQL 5.5
[mysql55-community]
name=MySQL 5.5 Community Server
baseurl=http: //repo .mysql.com /yum/mysql-5 .5-community /el/6/ $basearch/
enabled=0
gpgcheck=1
gpgkey= file : ///etc/pki/rpm-gpg/RPM-GPG-KEY-mysql
# Enable to use MySQL 5.6
[mysql56-community]
name=MySQL 5.6 Community Server
baseurl=http: //repo .mysql.com /yum/mysql-5 .6-community /el/6/ $basearch/
enabled=1
gpgcheck=1
gpgkey= file : ///etc/pki/rpm-gpg/RPM-GPG-KEY-mysql
[mysql57-community]
name=MySQL 5.7 Community Server
baseurl=http: //repo .mysql.com /yum/mysql-5 .7-community /el/6/ $basearch/
enabled=0
gpgcheck=1
gpgkey= file : ///etc/pki/rpm-gpg/RPM-GPG-KEY-mysql


3、yum安装mysql组件。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
[root@agile ~] #yum install mysql-community-client mysql-community-devel mysql-community-server php-mysql
正在安装:
  mysql-community-client                    x86_64               5.6.38-2.el6                 mysql56-community                18 M
  mysql-community-devel                     x86_64               5.6.38-2.el6                 mysql56-community               3.3 M
  mysql-community-libs                      x86_64               5.6.38-2.el6                 mysql56-community               1.9 M
      replacing  mysql-libs.x86_64 5.1.73-8.el6_8
  mysql-community-libs-compat               x86_64               5.6.38-2.el6                 mysql56-community               1.6 M
      replacing  mysql-libs.x86_64 5.1.73-8.el6_8
  mysql-community-server                    x86_64               5.6.38-2.el6                 mysql56-community                55 M
  php-mysql                                 x86_64               5.3.3-49.el6                 base                             86 k
为依赖而安装:
  mysql-community-common                    x86_64               5.6.38-2.el6                 mysql56-community               308 k
  numactl                                   x86_64               2.0.9-2.el6                  base                             74 k
  php-common                                x86_64               5.3.3-49.el6                 base                            530 k
  php-pdo                                   x86_64               5.3.3-49.el6                 base                             80 k


4、启动mysql命令,并设置开机自启动。

1
2
[root@agile ~] #service mysqld start
[root@agile ~] #chkconfig mysqld on


5、mysql设置root密码。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[root@agile ~] #mysql_secure_installation
NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MySQL
       SERVERS 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): 
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
New password: 
Re-enter new password: 
Password updated successfully!
Reloading privilege tables..
  ... Success!
By default, a MySQL installation has an anonymous user, allowing anyone
to log into MySQL without having to have a user account created  for
them.  This is intended only  for  testing, and to  make  the installation
go a bit smoother.  You should remove them before moving into a
production environment.
Remove anonymous  users ? [Y /n ] y
  ... Success!
Normally, root should only be allowed to connect from  'localhost' .  This
ensures that someone cannot guess at the root password from the network.
Disallow root login remotely? [Y /n ] y
  ... Success!
By default, MySQL comes with a database named  'test'  that anyone can
access.  This is also intended only  for  testing, and should be removed
before moving into a production environment.
Remove  test  database and access to it? [Y /n ] y
  - Dropping  test  database...
ERROR 1008 (HY000) at line 1: Can 't drop database ' test '; database doesn' t exist
  ... Failed!  Not critical, keep moving...
  - Removing privileges on  test  database...
  ... Success!
Reloading the privilege tables will ensure that all changes made so far
will take effect immediately.
Reload privilege tables now? [Y /n ] y
  ... Success!
All  done !  If you've completed all of the above steps, your MySQL
installation should now be secure.
Thanks  for  using MySQL!
Cleaning up...





本文转自 sailikung 51CTO博客,原文链接:http://blog.51cto.com/net881004/2054052,如需转载请自行联系原作者
相关实践学习
每个IT人都想学的“Web应用上云经典架构”实战
本实验从Web应用上云这个最基本的、最普遍的需求出发,帮助IT从业者们通过“阿里云Web应用上云解决方案”,了解一个企业级Web应用上云的常见架构,了解如何构建一个高可用、可扩展的企业级应用架构。
MySQL数据库入门学习
本课程通过最流行的开源数据库MySQL带你了解数据库的世界。   相关的阿里云产品:云数据库RDS MySQL 版 阿里云关系型数据库RDS(Relational Database Service)是一种稳定可靠、可弹性伸缩的在线数据库服务,提供容灾、备份、恢复、迁移等方面的全套解决方案,彻底解决数据库运维的烦恼。 了解产品详情: https://www.aliyun.com/product/rds/mysql 
相关文章
|
2月前
|
安全 关系型数据库 MySQL
CentOS 7 yum 安装 MySQL教程
在CentOS 7上安装MySQL 8,其实流程很清晰。首先通过官方Yum仓库来安装服务,然后启动并设为开机自启。最重要的环节是首次安全设置:需要先从日志里找到临时密码来登录,再修改成你自己的密码,并为远程连接创建用户和授权。最后,也别忘了在服务器防火墙上放行3306端口,这样远程才能连上。
571 16
|
1月前
|
存储 关系型数据库 MySQL
MySQL介绍和MySQL包安装 -- RHEL系列(Yum资源库安装MySQL)
MySQL是一款开源关系型数据库,高性能、易用、跨平台,支持多种存储引擎,广泛应用于Web开发、企业级应用等领域。本教程介绍其特点、架构及在主流Linux系统中的安装配置方法。
509 0
MySQL介绍和MySQL包安装 -- RHEL系列(Yum资源库安装MySQL)
|
5月前
|
缓存 Ubuntu 前端开发
yum的安装和使用(包含安装过程中遇到的问题及解决方法)
yum的安装和使用(包含安装过程中遇到的问题及解决方法)
759 1
yum的安装和使用(包含安装过程中遇到的问题及解决方法)
|
8月前
|
关系型数据库 MySQL Linux
MySQL8官方YUM仓库使用指南
MySQL 8 是广受欢迎的开源关系数据库管理系统,引入了诸多新特性和性能提升。本文介绍如何在 Linux 上通过 MySQL 官方 YUM 仓库安装和管理 MySQL 8。首先配置 YUM 仓库并安装 MySQL,启动服务后获取临时密码并登录。接着创建数据库与用户,使用 SQL 命令创建表格、插入及查询数据。此方法简便高效,适合快速上手 MySQL 8 的基本操作。
650 13
|
Linux
升级CentOS到最新版本
升级CentOS到最新版本
488 0
|
Linux
[Ansible] 升级 CentOS 到指定版本
今天接到一个需求,需要把一些 7.4 版本的 CentOS 升到 7.5 而不是 7.6。查了一下手动升级的方案,然后写成 ansible playbook。做个记录。 - hosts: all become: yes serial: - 1 - 33% vars: upgrade_to: "7.
2244 0
|
3月前
|
存储 Ubuntu Linux
VMware-安装CentOS系统教程及安装包
虚拟机相当于是一个独立于你电脑的环境,在这个环境上面,你可以安装Linux、Windows、Ubuntu等各个类型各个版本的系统,在这个系统里面你不用担心有病读等,不用担心文件误删导致系统崩溃。 虚拟机也和正常的电脑系统是一样的,也可以开关机,不用的时候,你关机就可以了,也不会占用你的系统资源,使用起来还是比较方便 这里也有已经做好的CentOS 7系统,下载下来解压后直接用VMware打开就可以使用
769 69
|
2月前
|
存储 分布式计算 Linux
安装篇--CentOS 7 虚拟机安装
VMware 装 CentOS 7 不知道从哪下手?这篇超详细图文教程手把手教你在 VMware Workstation 中完成 CentOS 7 桌面系统的完整安装流程。从 ISO 镜像下载、虚拟机配置,到安装图形界面、设置用户密码,每一步都有截图讲解,适合零基础新手快速上手。装好之后无论你是要搭 Hadoop 集群,还是练 Linux ,这个环境都够你折腾一整天!
1081 2
|
3月前
|
Ubuntu Linux 索引
Centos 7、Debian及Ubuntu系统中安装和验证tree命令的指南。
通过上述步骤,我们可以在CentOS 7、Debian和Ubuntu系统中安装并验证 `tree`命令。在命令行界面中执行安装命令,然后通过版本检查确认安装成功。这保证了在多个平台上 `tree`命令的一致性和可用性,使得用户无论在哪种Linux发行版上都能使用此工具浏览目录结构。
387 78
|
4月前
|
Linux 网络安全 Apache
针对在Centos/Linux安装Apache过程中出现的常见问题集锦
以上每个问题的解决方案应深入分析错误日志、系统消息和各种配置文件,以找到根本原因并加以解决。务必保持系统和Apache软件包更新到最新版本,以修复已知的bugs和安全漏洞。安装和管理Web服务器是一项需要细致关注和不断学习的任务。随着技术的发展,推荐定期查看官方文档和社区论坛,以保持知识的更新。
239 80