1 2 3 4 5 ··· 20 下一页
摘要: [root@ecm-8cc1 minio]# ./minio server /opt/minioINFO: Formatting 1st pool, 1 set(s), 1 drives per set.INFO: WARNING: Host local has more than 0 drives 阅读全文
posted @ 2024-07-30 16:47 三驾马车 阅读(1) 评论(0) 推荐(0) 编辑
摘要: Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running? 执行docker的命令时出现上面问题。 原因:此时已确定Docker本身已经安装正常。 问题原因是因为d 阅读全文
posted @ 2024-07-23 10:27 三驾马车 阅读(5) 评论(0) 推荐(0) 编辑
摘要: show variables like 'event_scheduler'; set global event_scheduler = on; -- 登录root 进行设置 CREATE EVENT gmp_remainDays_eventON SCHEDULEEVERY 1 MinuteON CO 阅读全文
posted @ 2024-07-19 15:44 三驾马车 阅读(5) 评论(0) 推荐(0) 编辑
摘要: rpm -qa|grep ntpsystemctl status chronyd.service [hik@HikvisionOS ~]$ systemctl status chronyd.service○ chronyd.service Loaded: masked (Reason: Unit c 阅读全文
posted @ 2024-06-21 19:41 三驾马车 阅读(7) 评论(0) 推荐(0) 编辑
摘要: numconvert软件上显示的十六进制是大端顺序,即数值顺序。 modbus协议规定是按大端传输(见英文版说明),但是确切的说,它只是借用“大端”这个术语以表示它是由左往右依次字节传输的,因为毕竟大小端只有到了数值层面才有意义。 针对16位传输,只存在正序(AB)或反序(BA)两种方式。 针对双字 阅读全文
posted @ 2024-04-25 10:02 三驾马车 阅读(128) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/xhmico/article/details/136680013 今天对我本地的数据库迁移服务器上,完成之后启动项目报错 说数据库中不存在 quartz_LOCKS 这张表 我打开服务器上面的数据上面展示的表名是 quartz_LOCKS,然后通过查询 l 阅读全文
posted @ 2024-04-17 14:29 三驾马车 阅读(631) 评论(0) 推荐(0) 编辑
摘要: [root@VM-16-14-centos /]# sudo gitlab-rails console user Loading production environment (Rails 4.2.6)irb(main):001:0> user = User.find_by_username('ro 阅读全文
posted @ 2023-12-13 17:22 三驾马车 阅读(39) 评论(0) 推荐(0) 编辑
摘要: 查看远程连接 git remote -v 取消与远程库的连接 git remote remove origin 初始化仓库(生成.git文件夹) git init 连接新仓库 git remote add origin (url) 检查状态 git status 检查分支 git branch 创建 阅读全文
posted @ 2023-05-12 16:16 三驾马车 阅读(93) 评论(0) 推荐(0) 编辑
摘要: [root@VM-16-14-centos ~]# su - git-sh-4.2$ gitlab-rails console productionLoading production environment (Rails 4.2.6)irb(main):001:0> user = User.whe 阅读全文
posted @ 2023-05-09 22:09 三驾马车 阅读(81) 评论(0) 推荐(0) 编辑
摘要: 项目上使用POI导出数据库大数据量为Excel时,发现代码运行时 实例化工作簿 失败! SXSSFWorkbook workbook = new SXSSFWorkbook(100); trycatch问题代码后,在debug中也并未进入异常处理,而是直接进入了finally 最后发现问题所在:缺少 阅读全文
posted @ 2023-03-21 09:00 三驾马车 阅读(227) 评论(0) 推荐(0) 编辑
1 2 3 4 5 ··· 20 下一页