- 2024-11-20【Linux Ops】如何替换 libstdc++ 提升 GLIBCXX 版本
【环境】kos5.8sp2,kernel5.10还是上一篇提到的那个软件环境,其依赖的GLIBCXX版本较高,因此在安装时给出了以下错误:xxx:/lib64/libstdc++.so.6:version`GLIBCXX_3.4.29'notfound(requiredbyxxx)执行strings/usr/lib64/libstdc++.so.6|grepGLIBCXX,查看当前环境中
- 2024-11-06OpenSSL 3.0编译升级
安装前准备编译需要yuminstallpampam-develgcc-c++zlib-develperl-IPC-Cmd源码下载地址https://www.openssl.org/source/启动xinetd服务此服务仅限于临时用,作为升级完后重启失败时备选登录远程服务器,注意使用完及时停止服务servicexinetdstart创建变量,当前日期
- 2024-10-25Linux基础——虚机mysql库覆盖/usr/lib64/libcrypto.so.1.1.1f无法启动
1、问题描述租户新增数据库mysql,手动覆盖/usr/lib64中的libcrypto.so.1.1.1f库文件,导致主机重启进入救援模式。 2、问题分析i.发现报错poweroff:errorwhileloadingsharedlibraries:libcrypto.so.1.1:cannotopensharedobjectfile:Nosuchfileordirectoryii.检
- 2024-10-24Linux 安装 .net 8 运行时环境
https://blog.51cto.com/zicl/11168846检查有没有安装其他版本的.net环境,进行卸载。[root@kylindotnet]#whichdotnet/usr/bin/dotnet查找到dotnet命令后,查看是用yum命令默认安装路径的。yum安装的dotnet文件路径/usr/share/dotnet/,软链接路径/usr/bin/dotnet。
- 2024-10-16Kylinv10 curl报错:SSLv3_client_method version OPENSSL_1_1_0 not define
curl http://127.0.0.1出现问题#curlhttps://www.example.comcurl:relocationerror:/lib64/libcurl.so.4:symbolSSLv3_client_methodversionOPENSSL_1_1_0notdefinedinfilelibssl.so.1.1withlinktimereference错误是/usr/lib64中的动态链接中无法识别
- 2024-10-14openssl 1.1.1 安装
https://download.csdn.net/blog/column/10942194/125836859root@VM-0-10-ubuntu:/home/ubuntu#wgethttps://www.openssl.org/source/openssl-1.1.1n.tar.gzopenssl:errorwhileloadingsharedlibraries:libssl.so.1.1在执行opensslversion出现如下错误:openssl:erro
- 2024-09-28llama-factory挂载pm2出现问题:node: /lib64/libstdc++.so.6: version `CXXABI_1.3.9' not found (required
使用ssh连接服务器上运行llama-factory进行微调,但是一旦关闭ssh,程序也会随之关闭,而使用nohup命令会出现nohup:ignoringinput尝试采用pm2:(base)[hongjiayin@localhostLLaMA-Factory]$pm2startstart.shnode:/lib64/libstdc++.so.6:version`CXXABI_1.3.9'notfound
- 2024-09-24【ldd命令详解】
文章目录一、命令概述二、基本语法三、工作原理四、示例五、注意事项
- 2024-09-14OpenSSH 远程代码执行漏洞(CVE-2024-6387) Ubuntu22.04 和 centos7处理方法
这是文档,不是脚本,请一行一行复制粘贴执行,不用批量自动执行下面是Ubuntu22.04和centos7的处理方法,其他系统可能需要适当调整#!/bin/bash#========================================================================================##Ubuntu22.04升级openssh#
- 2024-09-09Centos7 故障排除_a tpm error occurred get tpm pcr allocation
误操作/实验故意破坏系统重要文件,如何修复系统;系统起来不时使用光盘引导,启动系统故障排除模式1)光盘引导系统启动2)选择故障排除3)救援系统4)5)6)注意:此模式下原本系统的根下的目录均被挂载至/mnt/sysimage/目录下示例1:删除许多命令依赖的共享库文件ldd-可查
- 2024-09-05python 搜索路径及设置模块
模块搜索路径当import某个模块时,解释器首先搜索具有该名称的内置模块,如果没有找到,将在变量sys.path给出的目录列表中搜索名为模块名.py的文件。sys.path包含了一下几个目录:输入脚本的当前目录;PYTHONPATH环境变量;python安装时的系统目录;>>>importsys>>>sys.pat
- 2024-08-31CentOS 7 安装 .net 8 环境
1)下载.net8运行时https://dotnet.microsoft.com/zh-cn/download/dotnet/8.0依据运行程序类型,下载运行时,比如需要运行web应用,下载如同运行时,一般选择x64版本 2)上传到服务器解压tar-xzfdotnet-runtime-8.0.x-linux-x64.tar.gz-C/opt/dotnet/ 3)配置环境变量编
- 2024-08-18CentOS 7.9 运行某些软件时缺少GLIBCXX_3.4.21、GLIBC_2.28解决办法
dotnet:/lib64/libstdc++.so.6:version`GLIBCXX_3.4.20'notfound(requiredbydotnet)dotnet:/lib64/libstdc++.so.6:version`GLIBCXX_3.4.21'notfound(requiredbydotnet) 这可能是因为CentOS版本太低或者缺少libstdc++.so.6 版本 GLIBCXX_3.4.20 和 GLIB
- 2024-08-13/lib64/libstdc++.so.6: version GLIBCXX_3.4.20 not found
java应用运行出现了2个错误,error1:/lib64/libstdc++.so.6:versionGLIBCXX_3.4.20notfounderror2:/lib64/libstdc++.so.6:versionCXXABI_1.3.8notfound查阅了网上的解决方法,都说要更新libstdc++.so.6,按照教程操作,一直没有成功,最后参考了好几篇文章,综合了大家的方法,成功更新
- 2024-08-01OracleLinux9安装GlusterFS nfs-Ganesha
安装环境系统信息NAME="OracleLinuxServer"VERSION="9.4"ID="ol"ID_LIKE="fedora"VARIANT="Server"VARIANT_ID="server"VERSION_ID="9.4"PLATFORM_ID="platform:el9"PRETTY_NAME="
- 2024-07-30Linux环境下如何升级openssl?
访问官网地址下载最新版本下载所需版本可访问:历史版本1.下载OpenSSL源码包wgethttps://www.openssl.org/source/old/3.3/openssl-3.3.0.tar.gz安装必要的依赖yuminstall-yopenssl-develperlgccgcc-c++zlib解压源码包tar-zxvfopenssl-3.3.0.tar.gz进入源码目录并
- 2024-07-27perf抓取火焰图
目录一、Perf工具安装(压缩包在帖子下方的附件中)二、热点信息生成火焰图1、容器外抓取热点信息生成火焰图2、容器内抓取热点信息生成火焰图3、生成火焰图效果三、在容器中查看实时热点信息一、Perf工具安装(压缩包在帖子下方的附件中)*****************************ARM********
- 2024-07-22如何用 WinDbg 调试Linux上的 .NET程序
一:背景1.讲故事最新版本1.2402.24001.0的WinDbg真的让人很兴奋,可以将自己伪装成GDB来和远程的GDBServer打通来实现对Linux上.NET程序进行调试,这样就可以继续使用熟悉的WinDbg命令,在这个版本中我觉得WinDbg不再是WinDbg,而是XDbg了,画个简图如下:简图有了,接下来就
- 2024-07-17麒麟sp3安装mongodb报错
环境:OS:麒麟V10sp3db:4.4.22 [root@localhostconf]#/usr/local/services/mongodb/bin/mongod-f/home/middle/mongodb/conf/mongo.cnf/usr/local/services/mongodb/bin/mongod:errorwhileloadingsharedlibraries:libcrypto.so.10:cannotopensharedobjectfile:
- 2024-07-05opnEuler下使用xtrabackup报错libgcrypt.so.11
环境:OS:openEuler2203sp4xtrabackup:2.4.7 [root@19copt]#/opt/xtrabackup-2.4.7/bin/innobackupex--defaults-file=/opt/mysql57/conf/my.cnf--user=root--password=mysql--socket=/tmp/mysql.sock--stream=tar/tmp|gzip>/tmp/mydb.tar.gz/opt/xtrabackup-2.
- 2024-05-29node.js安装
环境:Os:Centos71.官网下载地址地址:https://nodejs.org/en/download/prebuilt-binariesnode-v20.14.0-linux-x64.tar.xz 2.解压安装tar-xvfnode-v20.14.0-linux-x64.tar.xzmvnode-v20.14.0-linux-x64/opt/node-v20.14.03.添加环境变量vi/etc/profileexportNODEJS_H
- 2024-05-23编译安装nginx 1.26.0、openssl 3.0.13 常见报错
报错1[
[email protected]]#./config--prefix=/usr/local/openssl--openssldir=/usr/local/opensslsharedCan'tlocateIPC/Cmd.pmin@INC(@INCcontains:/root/nginx-install/openssl-3.0.13/util/perl/usr/local/lib64/perl5/usr/lo
- 2024-05-23openssl版本升级
【openssl版本升级】查看openssl版本opensslversion查看openssl路径whichopenssl下载opensslwgethttp://www.openssl.org/source/openssl-1.1.1q.tar.gz下载perlwgethttps://www.cpan.org/src/5.0/perl-5.30.0.tar.gz安装依赖yuminstall-yzl
- 2024-05-20netcore6 发布到linux centos7 踩坑记录
具体dotnet6部署的过程,用守护进程。参考:https://blog.csdn.net/qq_45602658/article/details/129299814还有解决出现dotnet:/lib64/libstdc++.so.6:versionGLIBCXX_3.4.21'notfound(requiredbydotnet)dotnet:/lib64/libstdc++.so.6:未找到版本GLIBCXX_3.4.21(dot
- 2024-05-16nginx: /lib64/libcrypt.so.1: version `XCRYPT_2.0' not found
1.报错信息[root@ba6649b3a783sbin]#./nginx--t./nginx:/lib64/libcrypt.so.1:version`XCRYPT_2.0'notfound(requiredby./nginx)./nginx:/lib64/libc.so.6:version`GLIBC_2.27'notfound(requiredby./nginx)./nginx:/lib64/libc.so.6:version