摘要: 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-g 阅读全文
posted @ 2023-12-28 16:36 Cool_Yang 阅读(133) 评论(0) 推荐(0) 编辑
摘要: ```bash cd /opt/soft wget https://cdn.npmmirror.com/binaries/node/v16.15.1/node-v16.15.1-linux-x64.tar.xz tar -xvf node-v16.15.1-linux-x64.tar.xz mv n 阅读全文
posted @ 2023-06-15 16:13 Cool_Yang 阅读(35) 评论(0) 推荐(0) 编辑
摘要: ```bash cd /opt/soft #安装maven wget https://dlcdn.apache.org/maven/maven-3/3.8.6/binaries/apache-maven-3.8.6-bin.tar.gz tar -zxvf apache-maven-3.8.6-bi 阅读全文
posted @ 2023-06-15 16:12 Cool_Yang 阅读(17) 评论(0) 推荐(0) 编辑
摘要: ### 报错信息: [root@vm ~]# sudo yum install -y kubelet-1.20.9 kubeadm-1.20.9 kubectl-1.20.9 --disableexcludes=kubernetes Loaded plugins: fastestmirror Loa 阅读全文
posted @ 2023-06-04 21:55 Cool_Yang 阅读(320) 评论(0) 推荐(0) 编辑
摘要: ```bash docker run -d --name=gch-aas-nacos \ --env SPRING_DATASOURCE_PLATFORM=mysql \ --env MYSQL_SERVICE_HOST=127.0.0.1 \ --env MYSQL_SERVICE_PORT=33 阅读全文
posted @ 2023-06-02 14:16 Cool_Yang 阅读(22) 评论(0) 推荐(0) 编辑
摘要: ## 当前情况 #### 1. 查看当前网桥 ![](https://img2023.cnblogs.com/blog/1230118/202305/1230118-20230531145220851-1201211823.png) #### 2. 运行容器、查看容器IP ```bash docke 阅读全文
posted @ 2023-05-31 15:15 Cool_Yang 阅读(207) 评论(0) 推荐(0) 编辑
摘要: 官网安装地址: [Install Docker Engine on Ubuntu](https://docs.docker.com/engine/install/ubuntu/) ubuntu清华大学云源地址: [ubuntu | 镜像站使用帮助 | 清华大学开源软件镜像站 | Tsinghua O 阅读全文
posted @ 2023-05-25 17:04 Cool_Yang 阅读(70) 评论(0) 推荐(0) 编辑
摘要: 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 阅读(118) 评论(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 阅读(87) 评论(0) 推荐(0) 编辑
摘要: 防火墙策略【针对Centos】 firewall-cmd --help #帮助命令 systemctl status firewalld #查看防火墙状态 systemctl start firewalld #开启防火墙 systemctl stop firewalld #关闭防火墙 systemc 阅读全文
posted @ 2023-03-18 16:42 Cool_Yang 阅读(1053) 评论(0) 推荐(0) 编辑