上一页 1 2 3 4 5 6 ··· 12 下一页
  2021年11月3日
摘要: 1、创建的容器未启动 $ docker create image $ docker commit –m “Added a new file” –a “Docker Newbee” a925cb40b3f0 test OPTIONS说明(常用): -a, --author=”” 作者信息 -m, -- 阅读全文
posted @ 2021-11-03 16:29 蜗牛也是妞 阅读(213) 评论(0) 推荐(0) 编辑
摘要: 1、 创建镜像(使用Dockerfile文件生成镜像) $ docker build -t registrcsphere/centos:7.1 ./path OPTIONS说明: -t 镜像名字 ./path: Dockerfile 文件所在的目录 2、搜索镜像 $ docker search [O 阅读全文
posted @ 2021-11-03 16:08 蜗牛也是妞 阅读(1327) 评论(0) 推荐(0) 编辑
摘要: Docker安装 1、Docker 要求 CentOS 系统的内核版本高于 3.10 ,查看本页面的前提条件来验证你的CentOS 版本是否支持 Docker 。 通过 uname -r 命令查看你当前的内核版本 $ uname -r 2、使用 root 权限登录 Centos。确保 yum 包更新 阅读全文
posted @ 2021-11-03 15:35 蜗牛也是妞 阅读(220) 评论(0) 推荐(0) 编辑
  2021年11月2日
摘要: 一、jenkins安装 1、docker-compose-jenkins.yml 采用docker-compose安装jenkins2.222.3,docker-compose-jenkins.yml存放目录/opt/docker-compose-files目录下 version: '3' serv 阅读全文
posted @ 2021-11-02 13:28 蜗牛也是妞 阅读(136) 评论(0) 推荐(0) 编辑
  2021年10月11日
摘要: 1、windows #安装virtualenv pip3 install virtualenv pip3 install virtualenvwrapper-win #配置windows环境变量 配置windows环境变量,变量名为WORKON_HOME路径可以自定义,默认路径为:C:\Users\ 阅读全文
posted @ 2021-10-11 16:51 蜗牛也是妞 阅读(167) 评论(0) 推荐(0) 编辑
  2021年7月2日
摘要: 1、查看当前内存剩余 free -h 2、首先写缓存到文件系统 sync 3、释放页面缓存 echo 1 > /proc/sys/vm/drop_caches 3、释放目录缓存和索引节点缓存 echo 2 > /proc/sys/vm/drop_caches 3、释放页面缓存,目录缓存和索引节点缓存 阅读全文
posted @ 2021-07-02 16:52 蜗牛也是妞 阅读(437) 评论(0) 推荐(0) 编辑
  2021年7月1日
摘要: 在 jenkins Script Console 页面设置如下属性取消了 Workspace clean up hudson.model.WorkspaceCleanupThread.disabled = true PS:每次重启jenkins都要设置一下 作者:啊哈_0042链接:https:// 阅读全文
posted @ 2021-07-01 14:20 蜗牛也是妞 阅读(533) 评论(0) 推荐(0) 编辑
  2021年5月25日
摘要: 1、oracle启动/关闭命令 #1 切换到oracle 用户 su - oracle #2 打开监听 lsnrctl start #3 监听启动成功后,打开sqlplus 程序 sqlplus /nolog #4 在sqlplus连接数据库 connect /as sysdba #5 显示连接成功 阅读全文
posted @ 2021-05-25 11:01 蜗牛也是妞 阅读(899) 评论(0) 推荐(0) 编辑
  2021年5月14日
摘要: 行转列 1.oracle的pivot函数 原表 使用pivot函数: with temp as(select '四川省' nation ,'成都市' city,'第一' ranking from dual union allselect '四川省' nation ,'绵阳市' city,'第二' r 阅读全文
posted @ 2021-05-14 15:51 蜗牛也是妞 阅读(160) 评论(0) 推荐(0) 编辑
摘要: 方案一:wm_concat函数 select username, id, wmsys.wm_concat(subject) as subject, wmsys.wm_concat(score) as score from STUDENTSCORES group by username, id 方案二 阅读全文
posted @ 2021-05-14 14:10 蜗牛也是妞 阅读(4405) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 12 下一页