摘要: Ubuntu18安装Jenkins 一、安装JDK cd /opt/soft tar -zxvf jdk-8u333-linux-x64.tar.gz #设置环境变量 vim /etc/profile #Set JDK export JAVA_HOME=/opt/soft/jdk1.8.0_333 阅读全文
posted @ 2023-03-18 16:42 Cool_Yang 阅读(130) 评论(0) 推荐(0) 编辑
摘要: nacos 安装版本:v2.1.1 #获取压缩包、解压 wget https://github.com/alibaba/nacos/releases/download/2.1.1/nacos-server-2.1.1.zip unzip nacos-server-2.1.1.zip ######## 阅读全文
posted @ 2023-03-18 16:42 Cool_Yang 阅读(90) 评论(0) 推荐(0) 编辑
摘要: 防火墙策略【针对Centos】 firewall-cmd --help #帮助命令 systemctl status firewalld #查看防火墙状态 systemctl start firewalld #开启防火墙 systemctl stop firewalld #关闭防火墙 systemc 阅读全文
posted @ 2023-03-18 16:42 Cool_Yang 阅读(1187) 评论(0) 推荐(0) 编辑
摘要: MySQL 安装版本:5.7.35 #获取压缩包 wget https://cdn.mysql.com/archives/mysql-5.7/mysql-5.7.35-linux-glibc2.12-x86_64.tar.gz #解压 tar -zxvf mysql-5.7.35-linux-gli 阅读全文
posted @ 2023-03-18 16:42 Cool_Yang 阅读(463) 评论(0) 推荐(0) 编辑
摘要: ## MinIO安装 官网地址:https://min.io/ 文档地址:https://min.io/docs ### 一、Docker 环境安装 #### 1.安装minio【默认文件加密】 ```bash #1.拉取镜像 docker pull minio/minio #2.运行容器 dock 阅读全文
posted @ 2023-03-18 09:12 Cool_Yang 阅读(1217) 评论(0) 推荐(0) 编辑