摘要: 问题起因:因为大数据环境,服务器资源有限,磁盘很容易被数据跑满,长期需要手动清理,导致有时候清理出现问题。 问题: 文件无法删除成功,执行ls命令报错: ls: cannot access blk_xxxxxxxx: Structure needs cleaning 分析:这个错误信息表明文件系统的 阅读全文
posted @ 2023-09-20 17:28 难止汗 阅读(534) 评论(0) 推荐(0) 编辑
摘要: 部署在k8s中的应用日志中文乱码问题解决过程 问题: java程序部署在k8s中,查看日志时,发现日志中的中文显示乱码。 分析: 中文乱码无非就是编码格式问题。 问题排查: 1、客户端,排查客户端编码配置,我使用的是xshell,“文件--属性--终端--编码”,查看编码是否为UTF-8。 2、程序 阅读全文
posted @ 2023-09-07 14:21 难止汗 阅读(3152) 评论(0) 推荐(0) 编辑
摘要: 需求:因内网环境,无法访问公网,机房新上架一批服务器,使用了centos8的操作系统,为安装软件时方便安装依赖,在内网服务器中搭建了一个centos8.5.2111的yum源。 yum源服务器:centos7.9系统。 外网服务器操作: 1、在一台能够使用外网的服务器中,搭建好网络源(这里使用阿里的 阅读全文
posted @ 2023-07-19 17:24 难止汗 阅读(133) 评论(0) 推荐(0) 编辑
摘要: FastDFS 6.9.5 单机版安装 一、下载需要的安装包 cd /usr/local/src #下载fastdfs依赖库 wget https://github.com/happyfish100/libfastcommon/archive/refs/tags/V1.0.67.tar.gz mv 阅读全文
posted @ 2023-06-19 13:35 难止汗 阅读(244) 评论(1) 推荐(0) 编辑
摘要: 操作系统:centos7.9 安装数据库:mysql-8.0.33-linux-glibc2.28 一、升级gcc(传送阵:升级gcc) 1、添加mysql8依赖库软连接 mv /lib64/libstdc++.so.6 /lib64/libstdc++.so.6_oldln -s /usr/loc 阅读全文
posted @ 2023-06-18 23:28 难止汗 阅读(2639) 评论(0) 推荐(1) 编辑
摘要: 使用Xtrabackup备份和恢复MySQL数据库 测试环境信息:centos7.9 Xtrabackup2.4.28 mysql5.7.33 qpress1.1 一、使用Xtrabackup备份MySQL数据库 1、安装qpress命令 yum install https://repo.perco 阅读全文
posted @ 2023-06-02 16:58 难止汗 阅读(617) 评论(0) 推荐(0) 编辑
摘要: 一、安装openssl-1.1.1s 版本,否则可能运行程序会报错:ModuleNotFoundError: No module named '_ssl' 1、安装编译工具和依赖包 yum -y install gcc-c++ openssl-devel zlib-devel 2、下载openssl 阅读全文
posted @ 2023-05-26 15:02 难止汗 阅读(643) 评论(0) 推荐(0) 编辑
摘要: 在CI/CD中,使用pipeline脚本,遇到的一个小知识。 pipeline { agent any environment { #自定义一个变量,然后通过shell命令去执行一个获取时间的结果,并赋值给变量。 time= sh(script: "date +%Y%m%d%H%M%S" , ret 阅读全文
posted @ 2023-04-14 15:54 难止汗 阅读(372) 评论(0) 推荐(0) 编辑
摘要: 1、下载相应版本的erlang安装包 版本对比 https://www.rabbitmq.com/which-erlang.html mkdir /opt/src cd /opt/src wget http://erlang.org/download/otp_src_21.3.tar.gz 2、安装 阅读全文
posted @ 2023-04-10 14:06 难止汗 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 一、安装mongodb服务 1、下载mongodb二进制包,解压,移动到/usr/local/下。 下载地址:https://www.mongodb.com/try/download/community tar zxf mongodb-linux-x86_64-rhel70-4.4.17.tgz m 阅读全文
posted @ 2022-11-02 16:24 难止汗 阅读(874) 评论(0) 推荐(0) 编辑