摘要: 安装依赖 JDK要求 需求java 17 系统要求 centos 8centos 7需要自行升级glibc到某个版本,哪一个忘记了,风险很大,不要尝试! 基础依赖 # 缺什么就下什么,其中cmake是最重要的 yum -y install epel-release yum install gcc g 阅读全文
posted @ 2024-04-28 17:25 好记性不如烂笔头啊 阅读(1) 评论(0) 推荐(0) 编辑
摘要: Centos7 下安装OpenCV 3.4.6 转自 https://blog.csdn.net/MaXiaoTiancsdn/article/details/115336499(本人参考这个步骤,在openEuler操作系统安装了OpenCV 3.4.10 的版本) 1. 参考资料 本文主要参考自 阅读全文
posted @ 2024-04-25 16:39 好记性不如烂笔头啊 阅读(2) 评论(0) 推荐(0) 编辑
摘要: server { listen 443 ssl; server_name www.XXX.com; proxy_read_timeout 3600s; # 设置读取超时时间 ssl_certificate C:/xxxx.pem; ssl_certificate_key C:/xxxx.key; s 阅读全文
posted @ 2024-01-19 15:43 好记性不如烂笔头啊 阅读(102) 评论(0) 推荐(0) 编辑
摘要: -- 创建临时表CREATE TEMPORARY TABLE temp1 AS ( SELECT (@rowindex := @rowindex +1) AS rowindex,a.city_id,b.name as 'city_name' ,a.dept_name,a.final_point FR 阅读全文
posted @ 2023-09-25 11:36 好记性不如烂笔头啊 阅读(26) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/Supreme7/article/details/125891513 阅读全文
posted @ 2023-09-13 12:01 好记性不如烂笔头啊 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 操作步骤:1:找到redis的配置文件,2:停止redis服务,3:修改配置文件,4启动服务 1,找到redis的配置文件 首先直接试试 whereis redis.conf 看能不能返回路径 试过2个不同的centos版本,但是一个能找到地址,一个不能,如果不能找到的话,试试 ps -ef|gre 阅读全文
posted @ 2022-09-30 15:57 好记性不如烂笔头啊 阅读(1760) 评论(0) 推荐(0) 编辑
摘要: 记录一下使用若依框架配置多数据库时踩到的坑,主数据库是mysql,从数据库是oracle 1,修改yml文件,将单一数据源配置修改成多数据源配置 # 数据源配置 spring: datasource: type: com.alibaba.druid.pool.DruidDataSource # 多数 阅读全文
posted @ 2022-08-04 16:40 好记性不如烂笔头啊 阅读(6908) 评论(0) 推荐(0) 编辑
摘要: 1,npm下载 npm install vue-qr --save 2,在package.json查看是否安装成功 3,创建自定义组件 <template> <div> <vue-qr :text="textParam" :size="sizeParam"></vue-qr> </div></tem 阅读全文
posted @ 2022-07-22 14:09 好记性不如烂笔头啊 阅读(1256) 评论(0) 推荐(0) 编辑
摘要: 原文链接 https://blog.csdn.net/pedro7k/article/details/115415675 阅读全文
posted @ 2022-07-01 11:47 好记性不如烂笔头啊 阅读(11) 评论(0) 推荐(0) 编辑
摘要: https://youzan.github.io/vant/#/zh-CN/home <!-- 引入样式文件 --> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/vant@2.8/lib/index.css" /> <link 阅读全文
posted @ 2021-06-21 10:16 好记性不如烂笔头啊 阅读(1711) 评论(0) 推荐(0) 编辑