03 2025 档案

摘要:github.com/langgenius/dify.git 链接前使用 gitclone git clone https://gitclone.com/github.com/langgenius/dify.git 阅读全文
posted @ 2025-03-27 17:20 TIFOSI_Z 阅读(52) 评论(0) 推荐(0)
摘要:centos9 [yuan@iv-yds4ws7x8gcva4g7cazq ~]$ docker ps permission denied while trying to connect to the Docker daemon socket at unix:///var/run/docker.so 阅读全文
posted @ 2025-03-27 16:18 TIFOSI_Z 阅读(414) 评论(0) 推荐(0)
摘要:下载对应文件,并解压 cd /usr/lib/jvm/ tar xzf jdk-17.0.12_linux-x64_bin.tar.gz 配置环境 vi /etc/profile 在profile文件中添加 # java enviroment export JAVA_HOME=/usr/lib/jv 阅读全文
posted @ 2025-03-26 12:12 TIFOSI_Z 阅读(168) 评论(0) 推荐(0)
摘要:连接Docker Hub失败的问题时,首先确认自己主机可以访问registry-1.docker.io: ping registry-1.docker.io curl -v https://registry-1.docker.io/v2/ 若不通:检查网络配置, 设置镜像加速 参考 https:// 阅读全文
posted @ 2025-03-25 16:52 TIFOSI_Z 阅读(2285) 评论(0) 推荐(0)
摘要:centos9 安装docker出现此问题 使用国内镜像源 sudo dnf config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo 重新安装docker sudo dnf i 阅读全文
posted @ 2025-03-25 15:58 TIFOSI_Z 阅读(595) 评论(0) 推荐(0)
摘要:[渲染层错误] Uncaught ReferenceError: Trace is not defined(env: Windows,mp,1.06.2412050; lib: 3.1.5) [渲染层错误] Uncaught TypeError: Cannot read property 'enab 阅读全文
posted @ 2025-03-24 20:52 TIFOSI_Z 阅读(592) 评论(0) 推荐(0)
摘要:java17 <springdoc.version>2.3.0</springdoc.version> 错误信息 jakarta.servlet.ServletException: Handler dispatch failed: java.lang.NoSuchMethodError: 'bool 阅读全文
posted @ 2025-03-22 15:33 TIFOSI_Z 阅读(110) 评论(0) 推荐(0)
摘要:引用 https://blog.csdn.net/dont_curry/article/details/136855442 解决方法:引入mybatis-plus3.5.5版本 注意是mybatis-plus-spring-boot3-starter <dependency> <groupId>co 阅读全文
posted @ 2025-03-21 02:01 TIFOSI_Z 阅读(298) 评论(0) 推荐(0)
摘要:File file = new File(imgPath); FileSystemResource resource = new FileSystemResource(file); // 2. 构建请求体 MultiValueMap<String, Object> body = new Linked 阅读全文
posted @ 2025-03-05 01:01 TIFOSI_Z 阅读(87) 评论(0) 推荐(0)
摘要:不要添加前缀 控制器和类 @PostMapping("text-only") public List<TextDto> ocrTextOnly(@RequestBody OcrParam ocrParam) { //TODO return ocrapiService.ocrText(ocrParam 阅读全文
posted @ 2025-03-05 00:53 TIFOSI_Z 阅读(142) 评论(0) 推荐(0)
摘要:systemctl stop docker cd /var/lib/docker/containers cd 容器id vim hostconfig.json修改json文件中portbinding内容 阅读全文
posted @ 2025-03-03 17:45 TIFOSI_Z 阅读(9) 评论(0) 推荐(0)
摘要:# 下载镜像 docker pull redis # 检查当前所有Docker下载的镜像 docker images 启动前需要先创建Redis外部挂载的配置文件 ( /home/redis/conf/redis.conf ) 之所以要先创建 , 是因为Redis本身容器只存在 /etc/redis 阅读全文
posted @ 2025-03-03 14:21 TIFOSI_Z 阅读(40) 评论(0) 推荐(0)
摘要:Could not find a version that satisfies the requirement 先确认python版本对不对 考虑是否使用国内镜像 阅读全文
posted @ 2025-03-02 12:24 TIFOSI_Z 阅读(15) 评论(0) 推荐(0)