Dify-遇到的问题
参考文献
上传知识库时,使用bge-m3,报错Vector database connection error
具体指无法连接到weaviate
使用官网的版本
1234# 假设当前最新版本为 0.15.3git clone https://github.com/langgenius/dify.git --branch 0.15.3docker-compose up -d
排查下来docker-compose.yaml中的weaviate没有启动,以及服务器docker-compose版本
1234567891011121314151617181920212223# The Weaviate vector store.weaviate: image: semitechnologies/weaviate:1.19.0 profiles: - '' - weaviate restart: always volumes: # Mount the Weaviate data directory to the con tainer. ...
NodeJs遇到的问题
libtool: error: unrecognised option: '--static'
解决办法 1export PATH=/Library/Developer/CommandLineTools/usr/bin:$PATH
Windows-遇到的问题
参考文献
I have some issues when I run “kubeadm init”
kubeadm init error
123456789101112# kubeadm init --image-repository='registry.cn-hangzhou.aliyuncs.com/google_containers'I0814 13:18:08.628892 4337 version.go:256] remote version is much newer: v1.31.0; falling back to: stable-1.28W0814 13:18:18.638114 4337 version.go:104] could not fetch a Kubernetes version from the internet: unable to get URL "https://dl.k8s.io/release/stable-1.28.txt": Get "https://cdn.dl.k8s. ...
MyBatis-遇到的问题
参考文献
多表关联+多表多条件查询+分页的问题
表结构
123456789101112131415161718192021222324252627282930313233343536373839404142mysql> desc sys_user;+--------------------+--------------+------+-----+-------------------+-------------------+| Field | Type | Null | Key | Default | Extra |+--------------------+--------------+------+-----+-------------------+-------------------+| id | bigint | NO | PRI | NULL | auto_increment || user_id ...
Maven-遇到的问题
参考文献
Maven遇到的问题
maven pom.xml中repository标签不生效
配置错误:请确认 <repository> 标签中的 URL 和仓库 ID 是否正确,并且 Maven 能够访问该 URL.如果 URL 不正确或无法访问,则 Maven 无法从该仓库中下载依赖项.
依赖项已经存在:如果您的项目中已经存在所需的依赖项,那么即使您将 <repository> 标签添加到 pom.xml 文件中,Maven 也不会从该仓库中下载依赖项.这是因为 Maven 会优先使用本地仓库和缓存,以提高构建速度和效率.您可以使用 -U 标志强制 Maven 更新依赖项,以便它从您指定的仓库中下载最新的版本.
Maven 设置覆盖:如果您在 settings.xml 文件中配置了 <mirrors> 标签或其他仓库相关的设置,则可能会覆盖 pom.xml 文件中的 <repository> 标签设置.请检查您的 settings.xml 文件并确认是否有任何与仓库相关的设置可能会影响 Maven 的行为.
若仍然无法解 ...
Kali-遇到的问题
参考文献
apt-get update签名验证失败
解决办法
1234# 下载签名wget archive.kali.org/archive-key.asc # 安装签名apt-key add archive-key.asc
dcm4che-遇到的问题
参考文献
DICOM压缩遇到的问题
注意: 操作系统为Windows
使用dcm4che源码中的dcm4che-tool/dcm4che-tool-dcm2dcm进行DICOM图像压缩时报如下错误
12345678910111213141516171819Exception in thread "main" java.lang.UnsatisfiedLinkError: no opencv_java in java.library.path: [G:\env\jdk-11.0.20_windows-x64_bin\jdk-11.0.20\bin, .] at java.base/java.lang.ClassLoader.loadLibrary(ClassLoader.java:2662) at java.base/java.lang.Runtime.loadLibrary0(Runtime.java:827) at java.base/java.lang.System.loadLibrary(System.java:1884) at org.opencv. ...
SpringBoot-遇到的问题
参考文献
SpringBoot之RedisTemplate存取Long类型数据自动变Integer问题
视频播放异常
使用@JsonProperty注解会多出一个字段的原因
SpringBoot项目中正式环境中获取resources目录下报错
错误信息
12345[] 2023-07-04 10:20:51.624 [http-nio-3345-exec-8] ERROR o.a.c.c.C.[.[localhost].[/].[dispatcherServlet] - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is java.lang.RuntimeException: java.io.FileNotFoundException: class path resource [fronts/Alibaba-PuHuiTi-Medium.ttf] canno ...
Gitlab-遇到的问题
参考文献
Gitlab runner Server certificate verification failed
Gitlab问题
Gitlab runner Server certificate verification failed
解决方法
123sduo apt-get updatesudo apt-get install apt-transport-https ca-certificates -y sudo update-ca-certificates
Gradle-遇到的问题
参考文献
Gradle项目下载依赖报错,显示走代理服务器被拒绝
12345Could not download mybatis-plus-boot-starter-3.5.1.jar (com.baomidou:mybatis-plus-boot-starter:3.5.1)Could not get resource 'https://maven.aliyun.com/nexus/content/groups/public/com/baomidou/mybatis-plus-boot-starter/3.5.1/mybatis-plus-boot-starter-3.5.1.jar'.Could not HEAD 'https://maven.aliyun.com/nexus/content/groups/public/com/baomidou/mybatis-plus-boot-starter/3.5.1/mybatis-plus-boot-starter-3.5.1.jar'.Connect to 127.0.0.1:9090 [/127. ...