zoukankan      html  css  js  c++  java
  • 安装 Percona XtraBackup 2.3

    Installing Percona XtraBackup from Percona yum repository

    1. Install the Percona repository

      You can install Percona yum repository by running the following command as a root user or with sudo:

      yum install http://www.percona.com/downloads/percona-release/redhat/0.1-4/percona-release-0.1-4.noarch.rpm
      

      You should see some output such as the following:

      Retrieving http://www.percona.com/downloads/percona-release/redhat/0.1-4/percona-release-0.1-4.noarch.rpm
      Preparing...                ########################################### [100%]
         1:percona-release        ########################################### [100%]
      

    Note

    RHEL/Centos 5 doesn’t support installing the packages directly from the remote location so you’ll need to download the package first and install it manually with rpm:

    wget http://www.percona.com/downloads/percona-release/redhat/0.1-4/percona-release-0.1-4.noarch.rpm
    rpm -ivH percona-release-0.1-4.noarch.rpm
    
    1. Testing the repository

      Make sure packages are now available from the repository, by executing the following command:

      yum list | grep percona
      

      You should see output similar to the following:

      ...
      percona-xtrabackup-20.x86_64               2.0.8-587.rhel5             percona-release-x86_64
      percona-xtrabackup-20-debuginfo.x86_64     2.0.8-587.rhel5             percona-release-x86_64
      percona-xtrabackup-20-test.x86_64          2.0.8-587.rhel5             percona-release-x86_64
      percona-xtrabackup-21.x86_64               2.1.9-746.rhel5             percona-release-x86_64
      percona-xtrabackup-21-debuginfo.x86_64     2.1.9-746.rhel5             percona-release-x86_64
      percona-xtrabackup-22.x86_64               2.2.13-1.el5                percona-release-x86_64
      percona-xtrabackup-22-debuginfo.x86_64     2.2.13-1.el5                percona-release-x86_64
      percona-xtrabackup-debuginfo.x86_64        2.3.5-1.el5                 percona-release-x86_64
      percona-xtrabackup-test.x86_64             2.3.5-1.el5                 percona-release-x86_64
      percona-xtrabackup-test-21.x86_64          2.1.9-746.rhel5             percona-release-x86_64
      percona-xtrabackup-test-22.x86_64          2.2.13-1.el5                percona-release-x86_64
      ...
      
    2. Install the packages

      You can now install Percona XtraBackup by running:

      yum install percona-xtrabackup
      

    Warning

    In order to sucessfully install Percona XtraBackup libev package will need to be installed first. libev package can be installed from the EPEL repositories.

    Percona yum Testing Repository

    Percona offers pre-release builds from our testing repository. To subscribe to the testing repository, you’ll need to enable the testing repository in /etc/yum.repos.d/percona-release.repo. To do so, set both percona-testing-$basearch and percona-testing-noarch to enabled 1 (Note that there are 3 sections in this file: release, testing and experimental - in this case it is the second section that requires updating). NOTE: You’ll need to install the Percona repository first (ref above) if this hasn’t been done already.

    Installing Percona XtraBackup using downloaded rpm packages

    Download the packages of the desired series for your architecture from the download page. Following example will download Percona XtraBackup 2.3.5 release package for CentOS 7:

    $ wget https://www.percona.com/downloads/XtraBackup/Percona-XtraBackup-2.3.5/binary/redhat/7/x86_64/percona-xtrabackup-2.3.5-1.el7.x86_64.rpm
    

    Now you can install Percona XtraBackup by running:

    $ yum localinstall percona-xtrabackup-2.3.2-1.el7.x86_64.rpm
    

    Note

    When installing packages manually like this, you’ll need to make sure to resolve all the dependencies and install missing packages yourself.

    Uninstalling Percona XtraBackup

    To completely uninstall Percona XtraBackup you’ll need to remove all the installed packages.

    Remove the packages

    yum remove percona-xtrabackup

    测试:
    $xtrabackup --version
    xtrabackup version 2.3.10 based on MySQL server 5.6.24 Linux (x86_64) (revision id: bd0d4403f36)
     
  • 相关阅读:
    一个网卡绑定多个IP和多个网卡用一个ip的设置
    Linux操纵细碎以太网卡的装配及设置2
    教你若何制作软盘版的 Linux系统防火墙
    Ubuntu Linux体系中装置GNOME初步劈脸菜单
    构筑Linux防火墙之集团用户设置防火墙1
    Linux系统Iptables端方执行按次过细讲解
    Proxy源代码分析 谈Linux收集编程身手
    Linux使用系统以太网卡的安装及设置装备陈设1
    操持Linux下Oracle Tomcat 8080端口争持2
    Linux操作体系上差别文件体系的兼容成就
  • 原文地址:https://www.cnblogs.com/weifeng1463/p/9652938.html
Copyright © 2011-2022 走看看