上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 16 下一页
摘要: 1、登陆Centos官网下载镜像 https://www.centos.org/download/ 这里需要下载ARM框架点击进入: 点击进入选择一个镜像仓库进行下载: http://isoredirect.centos.org/altarch/7/isos/aarch64/ 本次使用清华大学开源镜 阅读全文
posted @ 2023-04-29 10:15 sowler 阅读(1137) 评论(0) 推荐(0) 编辑
摘要: 1、docker下载JDK1.8镜像 docker pull java:8 2、进行需要编译的镜像文件目录编写Dockerfile文件 #依赖的父镜像FROM java:8#作者MAINTAINER docker-admin#jar包添加到镜像中ADD xxl-job-admin-2.1.2.jar 阅读全文
posted @ 2023-04-25 15:50 sowler 阅读(402) 评论(0) 推荐(0) 编辑
摘要: //默认为轮询 ,权重默认值为1 upstream servers{ server 192.168.1.101:80 weight = 4 down; //不参与随机 server 192.168.1.102:80 weight = 2 ; server 192.168.1.102:80 weigh 阅读全文
posted @ 2023-04-25 14:04 sowler 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 1、安装Xxl-job: 可以使用docker拉取镜像部署和源码编译两种方式,这里选择源码编译安装。 代码拉取地址: https://github.com/xuxueli/xxl-job/tree/2.1.2 官方开发文档: https://www.xuxueli.com/xxl-job/#%E3% 阅读全文
posted @ 2023-04-25 11:02 sowler 阅读(1944) 评论(1) 推荐(3) 编辑
摘要: <beans xmlns:context="http://www.springframework.org/schema/context" xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:xsi="http://www.w3.or 阅读全文
posted @ 2023-04-23 11:26 sowler 阅读(228) 评论(0) 推荐(0) 编辑
摘要: 1、搜索nginx docker search nginx 2、拉取nginx镜像库 docker pull nginx:latest 3、查看获取的镜像 docker images 4、启动容器: docker run --name nginx -d -p 80:80 --privileged=t 阅读全文
posted @ 2023-04-20 11:36 sowler 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 一、linux安装 1.先下载repo的安装包 : sudo wget --no-check-certificate -O /etc/yum.repos.d/jenkins.repo https://pkg.jenkins.io/redhat-stable/jenkins.repo2.再下载秘钥:s 阅读全文
posted @ 2023-04-12 17:00 sowler 阅读(60) 评论(0) 推荐(0) 编辑
摘要: 1、测试数据 public class Test { public static void main(String[] args){ System.out.println("Response.success(ErrorEnum.SUCCESS) = " + Response.success(Erro 阅读全文
posted @ 2023-04-11 11:29 sowler 阅读(68) 评论(0) 推荐(0) 编辑
摘要: 1、编写代码 main方法: public static void main(String[] args) throws IOException { String pathFileUrl ="C:/Users/xxx/Desktop/boardDevice/videoFiles/1677749222 阅读全文
posted @ 2023-04-10 17:37 sowler 阅读(66) 评论(0) 推荐(0) 编辑
摘要: gradle下载:https://services.gradle.org/distributions/src.zip源码 、bin.zip安装文件、all.zip源码+安装文件 配置环境变量。 阅读全文
posted @ 2023-04-10 16:44 sowler 阅读(82) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 16 下一页