在Linux上部署Redis
Redis的下载与安装1.Redis下载下载地址:https://redis.io/download 2.Redis安装 将redis-6.2.6.tar.gz 上传到 /opt目录(也可以直接用yum下载到linux) 进入 /opt目录 ,执行解压命令:tar-zxvf redis-6.2.6.tar.gz 解压完成后进入redis-6.2.6目录:cd redis-6.2.6 在redis-6.2.6目录下执行make命令(编译指令) 执行 make install 进行安装 到此安装完成 , 安装目录在 /usr/local/bin 查看安装目录: [root@chenbaohui bin]# lsdump.rdb redis-benchmark redis-check-rdb redis-sentinelgenhash redis-check-aof redis-cli redis-server redis-benchmark:性能测试工具,可以在自己机器运行,看看自己机器性能如何...
nacos笔记
Nacos 是什么? 一句话:Nacos 就是注册中心[替代Eureka]+配置中心[替代Config] , (Nacos:Dynamic Naming and Configuration Service) Nacos:架构理论基础:CAP理论 (支持AP和CP, 可以切换) Nacos对比Zookeeper和Eureka一、一致性协议与架构设计1.Nacos Cap模式:支持 AP(高可用性)和 CP(数据一致性)模式的动态切换。默认采用 AP 模式,适合服务发现场景;当需要强一致性时(如配置管理),可通过 Raft 协议切换至 CP 模式 连接方式:基于 Netty 长连接,支持服务列表变更的实时推送,减少客户端轮询开销 2.Zookeeper CAP 模式:严格遵循 CP 模式,通过 ZAB 协议保证数据强一致性,但在网络分区或 Leader 选举期间(30-120 秒)服务不可用,牺牲了可用性 数据模型:基于树形节点(ZNode)存储服务信息,依赖临时节点实现服务上下线自动感知 3.Eureka CAP 模式:纯 AP...
docker拉取镜像时出现的BUG
BUG起始: 使用docker拉取镜像仓库时提示Error response from daemon: Get ‘https://registry-1.docker.io/v2/’ 原因: 使用的镜像源网站不能用了 解决方法:到docker的配置文件/etc/docker/daemon.json 换新的镜像源(可以网上直接查)后执行以下命令: sudo systemctl daemon-reload && sudo systemctl restart docker "registry-mirrors": [ "https://docker.1ms.run", "https://docker.xuanyuan.me" ]
启动docker的容器出现的bug
Bug起始: 使用docker run –name test命令启动并创建容器发现容器一启动就自动退出 , 使用 docker start test 命令也没用 [root@localhost vagrant]# docker run --name test -d centos /bin/bash956977ec4620bf6882dc80a6bfc4e42b94533c30ba3a487281b230b4aa47d41c[root@localhost vagrant]# docker ps -aCONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES956977ec4620 centos "/bin/bash" 31 seconds ago Exited...
搭建keepalived+nginx集群出现的一些bug
BUG1起始:ping不到keepalived的虚拟IP 解决方法:注释掉keepalived.conf的vrrp_strict global_defs { notification_email { acassen@firewall.loc failover@firewall.loc sysadmin@firewall.loc } notification_email_from Alexandre.Cassen@firewall.loc smtp_server 192.168.200.1 smtp_connect_timeout 30 router_id cbh100 vrrp_skip_check_adv_addr #vrrp_strict vrrp_garp_interval 0 vrrp_gna_interval 0} BUG2起始:给keepalived写了一个根据nginx是否关闭来终止keepalived的监控脚本,但是无法执行 ,...
整合openfeign和seata出现的Bug2025.2.28
2025.2.28BugBug1(已解决)起始:启动服务时不能与seata-server建立连接,发现是application.yml的seata事物组tx_service_group配置错误(与seata-server的file.conf的tx_service_group不一致)解决方法:改成一样就好了 cloud: alibaba: seata: #指定事务组名称 , 与seata-server对应/conf/file.conf tx-service-group: cbh_order_tx_group nacos: discovery: server-addr: localhost:8848 service { #vgroup->rgroup vgroup_mapping.cbh_order_tx_group = "default" #only support single node default.grouplist =...
启动seata-server出现的Bug2025.2.27
2025.2.27Bug日志Bug1(已解决)起始:想将jdk19修改为jdk8结果jdk环境路径修改后使用 java ...
简单JAVA程序
一个简单JAVA程序public class helloworld { public static void main(String[] args) { System.out.println("Hello world!!!"); }}
Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub. Quick StartCreate a new post$ hexo new "My New Post" More info: Writing Run server$ hexo server More info: Server Generate static files$ hexo generate More info: Generating Deploy to remote sites$ hexo deploy More info: Deployment