docker常用命令 docker 列出images docker images docker 镜像保存 nginx-fun 为镜像名字 docker commit -m "fun" 034b9f9528c4 nginx-fun docker 删除镜像 docker rmi 1d0ae87c852d ...
分类:
其他好文 时间:
2021-02-09 12:00:57
阅读次数:
0
目的:为了使git提交的代码能够方便的code review,因此需要搭建一套code review环境。根据网上的建议,选择使用RBTools源码安装(www.reviewboard.org)。 当前系统环境:centos8.1.1911仅支持python3.6 (1)下载RBTools源码:RB ...
分类:
其他好文 时间:
2021-02-08 12:43:19
阅读次数:
0
安装maven必须要有java环境,如果没有安装java环境,请按照博文安装java环境! 一、安装 官网:http://maven.apache.org/download.cgi $ wget https://mirrors.tuna.tsinghua.edu.cn/apache/maven/ma ...
分类:
其他好文 时间:
2021-02-08 12:26:55
阅读次数:
0
官方参考文档 https://docs.docker.com/engine/install/centos/ 1、安装 [root@localhost opt]# yum install -y yum-utils device-mapper-persistent-data lvm2[root@loca ...
分类:
其他好文 时间:
2021-02-08 12:24:35
阅读次数:
0
默认centos, unbtan都已经安装了python3版本,可以通过 whereis python来检查已经安装的版本。 root@hecs-x-medium-2-linux-20200619090653:/usr/bin# whereis pythonpython: /usr/bin/pyth ...
分类:
编程语言 时间:
2021-02-08 12:04:26
阅读次数:
0
#零 修订记录 | 序号 | 修订内容 |修订时间 | | | | | | 1 | 新增 |2021/2/6| #一 摘要 前文linux 基于三台物理机安装ceph nautilus 介绍了 ceph 在centos 7.6 上的安装。 ceph nautilus 横向扩容 介绍了ceph 横向扩 ...
分类:
其他好文 时间:
2021-02-08 11:45:21
阅读次数:
0
配置站点使用 https,并且将 http 重定向至 https。 1. nginx 的 ssl 模块安装 查看 nginx 是否安装 http_ssl_module 模块。 $ /usr/local/nginx/sbin/nginx -V 1 如果出现 configure arguments: - ...
分类:
Web程序 时间:
2021-02-08 11:41:11
阅读次数:
0
1.vue配置 /** * * 相对于该配置的nginx服务器请参考nginx配置文件 * */ module.exports = { // 基本路径 publicPath: '/', // 输出文件目录 outputDir: 'dist', // webpack-dev-server 相关配置 d ...
分类:
编程语言 时间:
2021-02-08 11:40:26
阅读次数:
0
查看CentOS-Base.repo部分内容,文件路径 /etc/yum.repos.d/CentOS-Base.repo [base] baseurl=http://mirror.centos.org/centos/$releasever/os/$basearch/ mirrorlist=http ...
分类:
其他好文 时间:
2021-02-05 10:29:54
阅读次数:
0
将可执行的开机启动脚本加入到/etc/init.d/目录下,并利用chkconfig配置开机自启动,重启生效 1)、切换到/etc/init.d/ [root@www ~]# cd /etc/init.d/ 2)、编辑开机启动服务脚本 nano xxxx.sh #!/bin/sh#配置Tomcat开 ...
分类:
其他好文 时间:
2021-02-04 12:23:33
阅读次数:
0