安装docker的准备工作 参考文档>>>https://yeasy.gitbook.io/docker_practice/ DockerHub官网>>>https://hub.docker.com/ 升级centos的yum源 sudo yum update 设置yum源 官方源>sudo yum ...
分类:
其他好文 时间:
2021-06-21 20:16:40
阅读次数:
0
DER编码 1. Attribute Type编码 ? 对于标识串,采用低标识编码方式,只需1个字节。OBJECT IDENTIFIER的 tag为Ox06;class选择universal,则位8和位7为0,OBJECT IDENTIFIER为基本类型,则位6为0。因此,标识串=0x06。 ? 对 ...
分类:
其他好文 时间:
2021-06-21 19:59:16
阅读次数:
0
1、122 公钥 加入120 121 的 authorized_keys2、搭私服3、主机安装jenkins4、jenkins命令行 build tag push ssh 远程服务器 ' pull' ssh 远程服务器 ' run' ...
分类:
其他好文 时间:
2021-06-21 19:56:06
阅读次数:
0
#!/bin/bash rm -rf /var/lib/docker yum remove docker \ docker-client \ docker-client-latest \ docker-common \ docker-latest \ docker-latest-logrotate ...
分类:
其他好文 时间:
2021-06-21 19:53:25
阅读次数:
0
注:实例环境 vue cli构建的项目 app.vue <template> <Example></Example> </template> <script> import Example from './components/Example' export default { name: 'App ...
分类:
其他好文 时间:
2021-06-20 18:21:34
阅读次数:
0
函数组件 // /src/index.js...function Welcome (props) { return ( <div> <h3>hello function component</h3> <span>{props.data}</span> </div> )} 声明一个函数,以返回值的形式 ...
分类:
其他好文 时间:
2021-06-20 18:15:24
阅读次数:
0
1.列表渲染 .map遍历数组。index标记元素(更新、删除和修改的时候方便快速找到对应元素-更详细解释请看官网); 注意点: key只能用在上下文为array的情况。比如我们在遍历一个组件时,key只能放在循环数组时调用的组件上,而不能用在组件里面(请看官网) 在遍历同一数组时,不同数组项的ke ...
分类:
其他好文 时间:
2021-06-20 18:11:38
阅读次数:
0
创建 Nginx 容器 docker run --name nginx-demo -p 8080:80 -d nginx 参数说明: --name nginx-demo:容器名称 -p 8080:80: 端口进行映射,将本地 8080 端口映射到容器内部的 80 端口 -d nginx: 设置容器在 ...
分类:
其他好文 时间:
2021-06-20 17:51:22
阅读次数:
0
启动 docker 服务 systemctl start docker 查看docker服务状态 systemctl status docker 列出当前所有正在运行的容器 docker ps -a CONTAINER ID 7bb8b4a58c79 为 ID号 启动容器,命令:docker sta ...
分类:
系统相关 时间:
2021-06-20 17:44:18
阅读次数:
0
通过搭建ssm框架,然后通过mybatis的分页插件pagehelper-5.1.2.jar和jsqlparser-0.9.7.jar进行分页查询。 index.jsp <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Inser ...
分类:
其他好文 时间:
2021-06-20 17:34:55
阅读次数:
0