1. Adding the MySQL Yum Repository

    First, add the MySQL Yum repository to your system's
    repository list. Follow these steps:

    1. Go to the download page for MySQL Yum repository at
      https://dev.mysql.com/downloads/repo/yum/.

    2. Select and download the release package for your
      platform.

    3. Install the downloaded release package with the
      following command, replacing
      platform-and-version-specific-package-name
      with the name of the downloaded package:

      Press CTRL+C to copy
      shell> sudo rpm -Uvh platform-and-version-specific-package-name.rpm

      For example, for version n of
      the package for EL6-based systems, the command is:

      Press CTRL+C to copy
      shell> sudo rpm -Uvh mysql80-community-release-el6-n.noarch.rpm
    Note

    Once the release package is installed on your system, any
    system-wide update by the yum update
    command (or dnf upgrade for dnf-enabled
    systems) will automatically upgrade MySQL packages on your
    system and also replace any native third-party packages, if
    Yum finds replacements for them in the MySQL Yum repository.
    See Upgrading MySQL with the MySQL Yum Repository and
    Replacing a Native Third-Party Distribution of MySQL for details.

  2. Selecting a Release Series

    When using the MySQL Yum repository, the latest GA release of
    MySQL is selected for installation by default. If this is what
    you want, you can skip to the next step,
    Installing MySQL with Yum.

    Within the MySQL Yum repository
    (https://repo.mysql.com/yum/),
    different release series of the MySQL Community Server are
    hosted in different subrepositories. The subrepository for the
    latest GA series (currently MySQL 8.0)

          is enabled by default, and the subrepositories for all other
    series (for example, the MySQL 5.7 series) are
    disabled by default. Use this command to see all the
    subrepositories in the MySQL Yum repository, and see which of
    them are enabled or disabled (for dnf-enabled systems, replace
    <span class="command"><strong>yum</strong></span> in the command with
    <span class="command"><strong>dnf</strong></span>):
    Press CTRL+C to copy
    shell> yum repolist all | grep mysql

    To install the latest release from the latest GA series, no
    configuration is needed. To install the latest release from a
    specific series other than the latest GA series, disable the
    subrepository for the latest GA series and enable the
    subrepository for the specific series before running the
    installation command. If your platform supports the
    yum-config-manager or dnf
    config-manager
    command, you can do that by issuing,
    for example, the following commands, which disable the
    subrepository for the 8.0 series and enable the
    one for the 5.7 series; for platforms that are
    not dnf-enabled:

    Press CTRL+C to copy
    shell> sudo yum-config-manager --disable mysql80-community
    shell> sudo yum-config-manager --enable mysql57-community

    For dnf-enabled platforms:

    Press CTRL+C to copy
    shell> sudo dnf config-manager --disable mysql80-community
    shell> sudo dnf config-manager --enable mysql57-community

    Besides using yum-config-manager or the
    dnf config-manager command, you can also
    select a series by editing manually the
    /etc/yum.repos.d/mysql-community.repo
    file. This is a typical entry for a release series'
    subrepository in the file:

    Press CTRL+C to copy
    [mysql80-community]
    name=MySQL 8.0 Community Server
    baseurl=http://repo.mysql.com/yum/mysql-8.0-community/el/6/$basearch/
    enabled=1
    gpgcheck=1
    gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-mysql
          Find the entry for the subrepository you want to configure,
    and edit the <code class="option">enabled</code> option. Specify
    <code class="option">enabled=0</code> to disable a subrepository, or
    <code class="option">enabled=1</code> to enable a subrepository. For
    example, to install MySQL 5.7, make sure you
    have <code class="option">enabled=0</code> for the above subrepository
    entry for MySQL 8.0, and have
    <code class="option">enabled=1</code> for the entry for the
    5.7 series:
    </p><div class="copytoclipboard-wrapper" style="position: relative;"><pre class="programlisting line-numbers language-ini"><div class="docs-select-all right" id="sa47436371" style="display: none;"><div class="copy-help left" style="display: none;">Press CTRL+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class=" language-ini"><span class="token comment" spellcheck="true"># Enable to use MySQL 5.7</span>

    [mysql57-community]

    name=MySQL 5.7 Community Server

    baseurl=http://repo.mysql.com/yum/mysql-5.7-community/el/6/$basearch/

    enabled=1

    gpgcheck=1

    gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-mysql

You should only enable subrepository for one release series at

any time. When subrepositories for more than one release

series are enabled, the latest series will be used by Yum.

Verify that the correct subrepositories have been enabled and

disabled by running the following command and checking its

output (for dnf-enabled systems, replace

yum in the command with

dnf):

Press CTRL+C to copy
shell> yum repolist enabled | grep mysql
  • Installing MySQL

    Install MySQL by the following command (for dnf-enabled
    systems, replace yum in the command with
    dnf):

    Press CTRL+C to copy
    shell> sudo yum install mysql-community-server

    This installs the package for the MySQL server, as well as
    other required packages.

  • Starting the MySQL Server

    Start the MySQL server with the following command:

    Press CTRL+C to copy
    shell> sudo service mysqld start

    For EL7-based platforms, this is the preferred command:

    Press CTRL+C to copy
    shell> sudo systemctl start mysqld.service

    You can check the status of the MySQL server with the
    following command:

    Press CTRL+C to copy
    shell> sudo service mysqld status

    For EL7-based platforms, this is the preferred command:

    Press CTRL+C to copy
    shell> sudo systemctl status mysqld.service

    MySQL Server Initialization (as of MySQL
    5.7):
    At the initial start up of the server, the
    following happens, given that the data directory of the server
    is empty:

    • The server is initialized.

    • An SSL certificate and key files are generated in the data
      directory.

    • The validate_password
      plugin
      is installed and enabled.

    • A superuser account 'root'@'localhost'
      is created. A password for the superuser is set and stored
      in the error log file. To reveal it, use the following
      command:

      Press CTRL+C to copy
      shell> sudo grep 'temporary password' /var/log/mysqld.log

      Change the root password as soon as possible by logging in
      with the generated, temporary password and set a custom
      password for the superuser account:

      Press CTRL+C to copy
      shell> mysql -uroot -p
      Press CTRL+C to copy
      mysql> ALTER USER 'root'@'localhost' IDENTIFIED BY 'MyNewPass4!';
    Note

    MySQL's
    validate_password
    plugin is installed by default. This will require that
    passwords contain at least one upper case letter, one lower
    case letter, one digit, and one special character, and that
    the total password length is at least 8 characters.

  • 在 centos6 安装 MySQL5.7 官方文档的更多相关文章

    1. linux安装oracle的官方文档

      1:https://docs.oracle.com/cd/E11882_01/install.112/e47689/toc.htm 2:https://oracle-base.com/articles ...

    2. MySQL8.0.28安装教程全程参考MySQL官方文档

      前言 为了MySQL8.0.28安装教程我竟然在MySQL官方文档逛了一天,至此献给想入门MySQL8.0的初学者.以目前最新版本的MySQL8.0.28为示例进行安装与初步使用的详细讲解,面向初学者 ...

    3. CentOS7.3利用kubeadm安装kubernetes1.7.3完整版(官方文档填坑篇)

      安装前记: 近来容器对企业来说已经不是什么陌生的概念,Kubernetes作为Google开源的容器运行平台,受到了大家的热捧.搭建一套完整的kubernetes平台,也成为试用这套平台必须迈过的坎儿 ...

    4. 在 Ubuntu 上安装 TensorFlow (官方文档的翻译)

      本指南介绍了如何在 Ubuntu 上安装 TensorFlow.这些指令也可能对其他 Linux 变体起作用, 但是我们只在Ubuntu 14.04 或更高版本上测试了(我们只支持)  这些指令. 一 ...

    5. kafka安装配置及操作(官方文档)http://kafka.apache.org/documentation/(有单节点多代理配置)

      https://www.cnblogs.com/biehongli/p/7767710.html w3school https://www.w3cschool.cn/apache_kafka/apac ...

    6. selenium安装及官方文档

      selenium-python官方文档: https://selenium-python.readthedocs.io/ python3.5已安装的情况下,安装示意图如下 命令行输入 pip3 ins ...

    7. ubuntu16.04下snort的安装(官方文档安装)(图文详解)

      不多说,直接上干货! 最近为了科研,需要安装和使用Snort. snort的官网 https://www.snort.org/ Snort作为一款优秀的开源主机入侵检测系统,在windows和Linu ...

    8. ubuntu14.04下snort的安装(官方文档安装)(图文详解)

      不多说,直接上干货! 最近为了科研,需要安装和使用Snort. snort的官网 https://www.snort.org/ Snort作为一款优秀的开源主机入侵检测系统,在windows和Linu ...

    9. 【Phabricator】教科书一般的Phabricator安装教程(配合官方文档并带有踩坑解决方案)

      随着一声惊雷和滂沱的大雨,我的Phabricator页面终于在我的学生机上跑了起来. 想起在这五个小时内踩过的坑甚如大学隔壁炮王干过的妹子,心里的成就感不禁油然而生. 接下来,我将和大家分享一下本人在 ...

    随机推荐

    1. mysql 的奇妙历险

      mysql 的奇妙历险 这几天在练习sql的时候,碰到下面几个题, 如下 他的表字段是这些 create table Student( SId varchar(10), # 学生id Sname va ...

    2. 【基础知识】CPU上下文切换(进程上下文切换 - 线程上下文切换 - 中断上下文切换)

      CPU 上下文切换是什么 CPU 上下文切换,就是先把前一个任务的 CPU 上下文(也就是 CPU 寄存器和程序计数器)保存起来,然后加载新任务的上下文到这些寄存器和程序计数器,最后再跳转到程序计数器 ...

    3. 【windows 操作系统】【CPU】用户模式和内核模式(用户层和内核层)

      所有的现代操作系统中,CPU是在两种不同的模式下运行的: 注意以下内容来自微软: windows用户模式和内核模式 运行 Windows 的计算机中的处理器有两个不同模式:用户模式 和内核模式 . 用 ...

    4. Java课程设计---修改学生基本信息

      1.修改窗体 2.在StudentDao中增加修改学生信息的方法 /** * 修改的方法 * * @param student * @return * @throws SQLException */ ...

    5. Linux的用户与用户组管理

      1.Linux用户与用户组 Linux 是多用户多任务操作系统,Linux 系统支持多个用户在同一时间内登陆,不同用户可以执行不同的任务,并且互不影响.不同用户具有不问的权限,毎个用户在权限允许的范围 ...

    6. boostrap的select2自动换行的问题解决

      最近在使用boostrap的select2控件实现多选效果时发现一个问题正常效果:但是当选择了两个长一些的option时,发现select2莫名其妙的换了一行空白行:经过F12调试发现是因为selec ...

    7. petite-vue源码剖析-属性绑定`v-bind`的工作原理

      关于指令(directive) 属性绑定.事件绑定和v-modal底层都是通过指令(directive)实现的,那么什么是指令呢?我们一起看看Directive的定义吧. //文件 ./src/dir ...

    8. JZ-032-把数组排成最小的数

      把数组排成最小的数 题目描述 输入一个正整数数组,把数组里所有数字拼接起来排成一个数,打印能拼接出的所有数字中最小的一个.例如输入数组{3,32,321},则打印出这三个数字能排成的最小数字为3213 ...

    9. oracle 中的decode函数

      decode(条件,值1,返回值1,值2,返回值2,...值n,返回值n,缺省值) 该函数的含义如下:IF 条件=值1 THEN RETURN(翻译值1)ELSIF 条件=值2 THEN RETURN ...

    10. CSS简介,基础选择器,字体属性,文本属性

      欢迎大家去博客冰山一树Sankey,浏览效果更好.直接右上角搜索该标题即可 博客园主页:博客园主页-冰山一树Sankey CSDN主页:CSDN主页-冰山一树Sankey 前端学习:学习地址:黑马程序 ...