摘要:
1、环境 服务器名称 IP地址 备注 db-161-131 10.32.161.131 主 db-161-132 10.32.161.132 从 2、MySQL安装 参考:https://www.cnblogs.com/a120608yby/p/17164694.html 3、修改配置并重启服务 # 阅读全文
摘要:
1、添加Minio服务地址 # 查看Minio服务地址情况 mcli config host ls 或者 cat ~/.mcli/config.json # 配置迁移源服务地址 mcli alias set minio1 http://10.32.161.131:9000/ admin Admin- 阅读全文
摘要:
1、环境 8核/16G内存/500G硬盘 2、安装依赖 # 安装依赖 dnf install -y curl policycoreutils openssh-server perl postfix # 启动邮件服务 systemctl enable --now postfix 3、安装源配置(或者离 阅读全文
摘要:
1、Docker安装 参考:https://www.cnblogs.com/a120608yby/p/9883175.html 2、Docker Compose安装 https://www.cnblogs.com/a120608yby/p/14582853.html 3、服务配置文件 # vim d 阅读全文
摘要:
1、离线安装包下载 https://dev.mysql.com/downloads/mysql/5.5.html?os=31&version=5.1 2、解压并安装 # 解压 tar xf mysql-8.0.33-1.el9.x86_64.rpm-bundle.tar # 安装MySQL dnf 阅读全文
摘要:
1、安装 dnf -y install dnsmasq 2、配置文件修改 # vim /etc/dnsmasq.conf ... resolv-file=/etc/resolv.dnsmasq.conf strict-order user=dnsmasq group=dnsmasq listen-a 阅读全文
摘要:
1、环境 服务器名称 IP地址 备注 stack-161-131 10.32.161.131 stack-161-132 10.32.161.132 stack-161-133 10.32.161.133 2、安装源配置 # cat > /etc/yum.repos.d/elasticsearch. 阅读全文
摘要:
1、安装服务端和客户端 # 服务端 dnf install https://dl.minio.org.cn/server/minio/release/linux-amd64/minio-20230518000536.0.0.x86_64.rpm -y # 客户端 dnf install https: 阅读全文
摘要:
1、Ansible安装 # 安装 dnf -y install ansible-core # 查看版本 ansible --version 2、修改配置文件 # 备份并从新生成配置文件 mv /etc/ansible/ansible.cfg /etc/ansible/ansible.cfg.org 阅读全文
摘要:
1、配置安装源 # 安装 dnf install http://mirrors.ustc.edu.cn/mysql-repo/mysql80-community-release-el9.rpm -y # 修改配置 sed -i 's@http://repo.mysql.com/@http://mir 阅读全文