posts - 158,  comments - 0,  views - 11万
< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5
02 2023 档案
Rocky Linux 9 安装 Redis 6 哨兵配置
摘要:1、环境 服务器名称 IP地址 备注 sentinel-161-130 10.32.161.130 Sentinel redis-161-131 10.32.161.131 redis主节点 redis-161-132 10.32.161.132 redis副本节点 redis-161-133 10 阅读全文
posted @ 2023-02-28 18:02 a120608yby 编辑
Rocky Linux 9 安装 Redis 6 主副本复制
摘要:1、安装Redis 6.2(两个节点,一主一副本) dnf -y install redis 2、修改主节点配置 # 修改部分的配置文件 # vim /etc/redis/redis.conf ... bind 0.0.0.0 timeout 600 daemonize yes min-replic 阅读全文
posted @ 2023-02-28 17:30 a120608yby 编辑
Rocky Linux 9 安装 Redis 6
摘要:1、安装Redis 6.2 dnf -y install redis 2、修改配置 # 修改部分的配置文件 # vim /etc/redis/redis.conf ... bind 0.0.0.0 timeout 600 daemonize yes requirepass password maxm 阅读全文
posted @ 2023-02-28 16:42 a120608yby 编辑
Rocky Linux 9 安装 MySQL 8.0
摘要:1、安装MySQL dnf -y install mysql-server 2、修改配置 # vim /etc/my.cnf [client] port = 3306 socket = /var/lib/mysql/mysql.sock default-character-set = utf8mb4 阅读全文
posted @ 2023-02-28 16:10 a120608yby 编辑
Pig nacos 不支持 moxm/java:1.8-full 缺少 so 问题
摘要:使用如下Dockerfile构建镜像 # vim Dockerfile FROM moxm/java:1.8-full as builder WORKDIR /build ARG JAR_FILE=target/pig-register.jar COPY ${JAR_FILE} app.jar RU 阅读全文
posted @ 2023-02-28 14:52 a120608yby 编辑
Windows 11 22H2 跳过微软账户登录系统
摘要:1、安装完Windows 11系统最新版22H2后,进入到网络设置界面时,使用快捷键Shift + F10打开“命令提示符”(注意:部分笔记本快捷键为Fn + Shift + F10,另外先断开电脑的有线或者无线连接) 2、在弹出的命令窗口输入以下命令,并回车 oobe\bypassnro.cmd 阅读全文
posted @ 2023-02-22 15:39 a120608yby 编辑
基于 kubeasz 的 Kubernetes 部署最佳实践
摘要:一、环境准备 1、三台8核/16G内存/500G高速硬盘服务器和三台16核/32G内存/500G高速硬盘服务器 2、CentOS 7 3、关闭selinux和关闭防火墙 4、升级系统内核(参考:https://www.cnblogs.com/a120608yby/p/10169364.html) 二 阅读全文
posted @ 2023-02-21 16:44 a120608yby 编辑
基于 Docker Compose 安装 Nexus 3
摘要:1、Docker CE安装 参考:https://www.cnblogs.com/a120608yby/p/9883175.html 2、Docker Compose安装 参考:https://www.cnblogs.com/a120608yby/p/14582853.html 3、部署Nexus 阅读全文
posted @ 2023-02-21 15:00 a120608yby 编辑
基于 OVS 配置 Proxmox 主机网络
摘要:一、安装Open vSwitch包 apt update apt install openvswitch-switch -y 二、配置多网卡绑定 # vim /etc/network/interfaces auto bond0 iface bond0 inet manual ovs_bridge v 阅读全文
posted @ 2023-02-21 14:36 a120608yby 编辑
基于 KubeSphere 的 Kubernetes 管理平台最佳实践
摘要:简介 KubeSphere 是在 Kubernetes 之上构建的面向云原生应用的分布式操作系统,完全开源,支持多云与多集群管理,提供全栈的 IT 自动化运维能力,简化企业的 DevOps 工作流。它的架构可以非常方便地使第三方应用与云原生生态组件进行即插即用 (plug-and-play) 的集成 阅读全文
posted @ 2023-02-21 13:59 a120608yby 编辑
基于腾讯云 TKE 的开源微服务开发平台 Pig 最佳实践
摘要:一、Pig架构(该图来自Pig白皮书中的基础架构图) 二、CI/CD架构图 # 服务Jenkins流水线 pipeline { agent { label "master" } tools { maven 'maven3' jdk 'java1.8' } options { ansiColor('x 阅读全文
posted @ 2023-02-21 13:17 a120608yby 编辑
Docker 运行纯命令行版 EasyConnect VPN
摘要:1、Docker、Docker-Compose安装 https://www.cnblogs.com/a120608yby/p/9883175.html https://www.cnblogs.com/a120608yby/p/14582853.html 2、服务Docker-Compose配置 # 阅读全文
posted @ 2023-02-16 12:38 a120608yby 编辑
SSH 通过代理连接服务器
摘要:1、nc命令安装 dnf install nc -y 2、通过socks 5代理连接服务器(10.10.10.30为代理服务器) ssh -o ProxyCommand="nc -X 5 -x 10.10.10.30:1080 %h %p" root@100.100.100.30 3、通过https 阅读全文
posted @ 2023-02-16 11:51 a120608yby 编辑

点击右上角即可分享
微信分享提示