上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 31 下一页
摘要: 一、maven依赖 <!-- redisson --> <dependency> <groupId>org.redisson</groupId> <artifactId>redisson</artifactId> <version>3.19.3</version> </dependency> 二、C 阅读全文
posted @ 2024-11-14 17:19 vello 阅读(511) 评论(0) 推荐(0)
摘要: 一、maven依赖 com.alibaba druid-spring-boot-starter <!-- Mysql驱动包 --> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> 阅读全文
posted @ 2024-11-14 17:13 vello 阅读(710) 评论(0) 推荐(0)
摘要: 一、maven依赖 org.springframework.boot spring-boot-starter-data-redis io.lettuce lettuce-core 二、nacos配置 spring: redis: sentinel: master: mymaster nodes: s 阅读全文
posted @ 2024-11-14 17:00 vello 阅读(1471) 评论(0) 推荐(0)
摘要: 一、下载redis镜像 二、redis主库配置 redis.conf 绑定的IP地址和端口 bind 0.0.0.0 必须使用6379,因为容器内默认是6379端口 port 6379 设置密码 requirepass 123456 启用持久化 appendonly yes 三、主库sentinel 阅读全文
posted @ 2024-11-14 16:52 vello 阅读(609) 评论(0) 推荐(0)
摘要: 如果某个主库执行了很多sql操作,导致mysql-bin的位置很大,如下图 从库设置同步的主库时,千万不能设置在这个binlog位置,否则后续的很多主库操作,在从库都会失败,报这种坐标位置等等的错误 Coordinator stopped because there were error(s) in 阅读全文
posted @ 2024-11-14 10:58 vello 阅读(30) 评论(0) 推荐(0)
摘要: Mysql中导入数据时,报 [ERR] 1118 - Row size too large (> 8126). Changing some columns to TEXT or BLOB or using ROW_FORMAT=DYNAMIC or ROW_FORMAT=COMPRESSED may 阅读全文
posted @ 2024-11-13 21:08 vello 阅读(1924) 评论(0) 推荐(0)
摘要: Multiple files found for the same tablespace ID: 说明表空间ID重复了,无法启动mysql 需要到mysql的data目录将相应冲突的表空间ID删除或者备份 阅读全文
posted @ 2024-11-13 21:04 vello 阅读(431) 评论(0) 推荐(0)
摘要: 一、下载mysql镜像 略 ![](https://img2024.cnblogs.com/blog/3440595/202411/3440595-20241113160413461-1927204408.png) 二、主节点 my.cnf配置 [mysqld] ## 设置server_id,同一局 阅读全文
posted @ 2024-11-13 16:14 vello 阅读(72) 评论(0) 推荐(0)
摘要: linux使用挂载命令时报/dev/vdb2 is write-protected, mounting read-only,unknown filesystem type '(null)' 这是因为磁盘没有格式化 mkfs.xfs /dev/vdb2 再进行挂载就可以了 mount /dev/vdb 阅读全文
posted @ 2024-11-11 14:44 vello 阅读(350) 评论(0) 推荐(0)
摘要: 一、fdisk /dev/vdb 创建第二个分区后,使用lsblk分区没有显示出来 二、解决办法 使用partprobe /dev/vdb 更新一下磁盘 三、显示 使用lsblk分区就出现了 阅读全文
posted @ 2024-11-11 13:06 vello 阅读(62) 评论(0) 推荐(0)
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 31 下一页