zoukankan      html  css  js  c++  java
  • mysql-xtrabackup备份sh: xtrabackup_56: command not found与error while loading shared libraries: libssl.so.6: cannot open shared object file: No such file or directory

    sh: xtrabackup_56: command not found
    innobackupex: fatal error: no 'mysqld' group in MySQL options
    解决办法:cp xtrabackup_56 /usr/bin

    xtrabackup_56: error while loading shared libraries: libssl.so.6: cannot open shared object file: No such file or directory
    innobackupex: fatal error: no 'mysqld' group in MySQL options
    解决办法:
    [root@zabbixdb2 backup]# cd /usr/lib64/
    [root@zabbixdb2 lib64]# ls -l |grep libssl
    -rwxr-xr-x. 1 root root 273600 Mar 23 2016 libssl3.so
    lrwxrwxrwx. 1 root root 16 Oct 19 2016 libssl.so -> libssl.so.1.0.1e
    lrwxrwxrwx. 1 root root 16 Oct 19 2016 libssl.so.10 -> libssl.so.1.0.1e
    -rwxr-xr-x. 1 root root 444184 Feb 24 2016 libssl.so.1.0.1e
    找不到libssl.so.6。创建软连接:
    ln -s /usr/lib64/libssl.so.10 /usr/lib64/libssl.so.6
    ln -s /usr/lib64/libcrypto.so.10 /usr/lib64/libcrypto.so.6

  • 相关阅读:
    自适应高度的 文本框
    点击小图片遮罩显示大图片
    C++中的声明与定义
    LeetCode_Bit Manipulation
    “纯”面向对象
    指针和引用
    new和delete用法小结
    C++中的变量属性小结
    C++的一些黑暗料理
    Python中的字典和集合
  • 原文地址:https://www.cnblogs.com/datalife/p/8286569.html
Copyright © 2011-2022 走看看