RocketMQ 安装和部署 部署 RocketMQ 单机安装构建 安装 JDK 1.8.0 1 yum install java-1.8.0-openjdk* 安装 Maven 1 2 3 4 5 6 7 8 9 10 11 wget http://dlcdn.apache.org/maven/maven-3/3.8.4/binaries/apache-maven-3.8.4-bin.tar.gz tar -zxvf apache-maven-3.8.4-bin.tar.gz mv -f apache-maven-3.8.4 /usr/local/ vim /etc/profile # 末尾添加 export MAVEN_HOME=/usr/local/apache-maven-3.8.4 export PATH=${PATH}:${MAVEN_HOME}/bin # 保存 source /etc/profile # 查看maven
安装 minIO 通过 docker 安装 1 2 3 4 docker run -p 9000:9000 -p 41863:41863 -d --name azure-s3 \ -e "MINIO_ACCESS_KEY=azure存储账户" \ -e "MINI
Keepalived 高可用 配置文件存放位置:/usr/share/doc/keepalived/samples VVRP 虚拟路由冗余协议 组成 LB 集群:Load Balan
ansible 安装和部署 Ansible 默认通过 SSH 协议管理机器. 安装 ansible 下载安装 1 2 3 4 5 6 7 # ubuntu 安装 apt-get install software-properties-common apt-add-repository ppa:ansible/ansible apt-get update apt-get install ansible # centos 安装 yum install ansible 检查文件 1 2 #检查 ansible --version ansible 配置 添加
yaml 语法 我们使用 YAML 是因为它像 XML 或 JSON 是一种利于人们读写的数据格式. 此外在大多数变成语言中有使用 YAML 的库.YAML 语法的基本概述, 它被用来描述一个 p
logrotate 日志滚动的使用 logrotate 日志滚动切割工具,是 linux 默认安装的工具,配置文件位置: 1 2 /etc/logrotate.conf /etc/logrotate.d/ 参数 以 nginx 配置为例 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 /opt/log/nginx/*.log { daily missingok
安装 docker 通过 docker 脚本安装 1 2 curl -fsSL https://get.docker.com | bash -s docker --mirror Aliyun curl -sSL https://get.daocloud.io/docker | sh docker-compose 安装 1 2 3 4 5 6 7 8 #下载安装 sudo curl -L "https://github.com/docker/compose/releases/download/v2.2.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose #可执行权限 sudo chmod +x /usr/local/bin/docker-compose #创建软链: sudo ln -s /usr/local/bin/docker-compose
gitlab 与 github 同步项目 本地同步项目 1 git clone 创建一个同名的项目,命令行终端中添加 remote 地址 1 git remote add githubOrigin git@github.com:sjtfreaks/blog.git 项目同步到 Github 上 1 git push -u githubOrigin main 分别同步 github 与 gitlab 即可 1 2 git push -u
iptables 基础知识 内核包过滤与 NAT 管理工具.是 linux 系统中在用户空间中运行的运来配置内核防火墙的工具。它可以设置,维护和检查 linux 内核中的 ipv4 包过滤规则和管理网
k3s 升级版本 停止所有的 K3s 容器(慎用) 从 server 节点运行 killall 脚本 1 /usr/local/bin/k3s-killall.sh 开始升级 使用安装脚本升级 K3s 1 2 3 curl -sfL https://get.k3s.io | sh - #国内可用 curl -sfL http://rancher-mirror.cnrancher.com/k3s/k3s-install.sh | INSTALL_K3S_MIRROR=cn sh - 重启 k3s 1 sudo systemctl restart k3s