logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

vagrant制作box

1. 制作box的虚拟机准备防止制作box后,无法使用vagrant ssh登陆虚拟机.虚拟机内部执行 用户vagrant在用户目录执行#!/bin/bash# 1. 下载官方公钥wget https://raw.githubusercontent.com/mitchellh/vagrant/master/keys/vagrant.pub &&amp

docker 端口

实验环境介绍:本机使用的virtual box + vagrant的centos7虚拟机,虚拟机中装了docker。docker里面会运行一个官方nginx镜像。以下过程用来讲解docker的端口映射。mac笔记本的ip地址是本地回环127.0.0.1,虚拟机在mac上的ip是192.168.205.10(vagrantfile文件中自定义),nginx容器的ip是172.17.0.2(连...

【fork/exec /proc/self/exe: no such file or directory】namespace里面mount /proc 后,退出后要重新mount

根据mydocker项目实现了简单的docker后,发现在容器中mount /proc 后, 结束程序,再执行就会报错:{"level":"error","msg":"fork/exec /proc/self/exe: no such file or directory","time":"2019-05-30T20:49:35+08:00"}水平有限,不知道问题出在哪,于是去github上找...

docker bridge网络

docker网络常用命令查看所有网络:docker network ls查看某个网络详情:docker network inspect 容器IDdocker 4种网络模式bridge模式,使用–net=bridge指定,默认设置。host模式,使用–net=host指定。container模式,使用–net=container:容器名称或ID指定none模式,使...

jenkin执行shell脚本,找不到命令

jenkins默认是用非登录模式来执行shell命令,所有没有加载环境变量配置文件。source /etc/profile可以如下修改:添加source /etc/profile缺点:这样的话控制台的输出会有很多无用的日志信息。# !/bin/sh -l还有更优雅的方式是让jenkins以登录的模式来执行shell脚本。添加#!/bin/sh -l(在#...

docker-compose启动nginx卡在Attaching to nginx

docker-compose.yml文件version: '3'services:nginx:image: "nginx:latest"container_name: nginxvolumes:- ./conf.d:/etc/nginx/conf.d- ./access.log...

ubuntu docker 开启ssh

1. 下载ubuntu镜像因为从docker hub上下载的镜像apt-get update报错,所以就直接从网易蜂巢上下载已经装好各种工具的ubuntu镜像了。docker pull hub.c.163.com/public/ubuntu:16.04-tools2. 启动镜像docker run -itd -p 10022:22 1196ea15dad6将本机10022端口,映射到容器

#ssh#ubuntu
在mac上 树莓派3B/3B+安装linux(ubuntu centos)系统

官方文档https://wiki.centos.org/SpecialInterestGroup/AltArch/armhfp1. 查看分区df -h2. 卸载分区// 注意别卸载错了disk2s1是内存卡diskutil unmount /dev/disk2s13. 确认设备diskutil list4. 写入系统镜像(http://mirror....

k8s 日志级别

k8s 相关组件启动时 -v参数指定的日志级别:--v=0Generally useful for this to ALWAYS be visible to an operator.--v=1A reasonable default log level if you don’t want verbosity.--v=2Useful steady state informat...

k8s-ConfigMap使用

目标应用程序部署的最佳实践就是配置信息和程序进行分离。这样可以使应用程序被复用,通过不同的配置也可以实现更灵活的功能。创建ConfigMap的用处:1.生成为容器内的环境变量2. 设置容器启动的命令参数3. volume形式挂载成容器内的文件或目录1.通过yml文件创建一个configmap:2. 通过命令行创建kubectl create conf...

    共 12 条
  • 1
  • 2
  • 请选择