摘要:
cat /etc/redhat-releaseCentOS Linux release 7.0.1406 (Core)使用BIND构建DNS服务器1.BIND服务器安装yum install bind* -y2.修改配置vim /etc/named.conf//// named.conf//// P... 阅读全文
摘要:
一般情况下,如果能找到可用的证书,就可以直接使用,只不过会因证书的某些信息不正确或与部署证书的主机不匹配而导致浏览器提示证书无效,但这并不影响使用。需要手工生成证书的情况有:找不到可用的证书需要配置双向SSL,但缺少客户端证书需要对证书作特别的定制首先,无论是在Linux下还是在Windows下的C... 阅读全文
摘要:
Kubernetes是Google开源的容器集群管理系统。它构建于docker技术之上,为容器化的应用提供资源调度、部署运行、服务发现、扩容缩容等整一套功能,本质上可看作是基于容器技术的mini-PaaS平台。本文旨在梳理Kubernetes的架构、概念及基本工作流,并且通过运行一个简单的示例应用来... 阅读全文
摘要:
何为 systemd?systemd 是一个 Linux 下的系统和会话管理器,与 SysV 和 LSB 启动脚本兼容。systemd 提供了积极的并行处理能力,使用套接字(socket)和 D-bus 的激活启动服务,可使守护进程按需启动,使用 Linux 的 cgroups 保持对进程的追踪,支... 阅读全文
摘要:
http://golang.org/dl/下载golanghttps://codeload.github.com/GoClipse/goclipse/tar.gz/v0.8.1解压安装eclipse go 插件http://goclipse.github.io/releases/勾选GoClipse... 阅读全文
摘要:
docker systemd unit file[Unit]Description=Docker Application Container EngineDocumentation=http://docs.docker.comAfter=network.target docker.socketReq... 阅读全文
摘要:
Ubuntu:从源代码编译安装安装gcc工具,因为golang有些功能是使用c写的,所以构建golang的编译是必须的apt-get install bison gawk gcc libc6-dev make安装mercurial工具,目的使用hg命令来提取golang的源代码apt-get ins... 阅读全文
摘要:
apt proxyvim /etc/apt/apt.confAcquire::http::proxy "http://10.48.127.169:8080/"; Acquire::ftp::proxy "ftp://10.48.127.169:8080/"; Acquire::https::pr... 阅读全文
摘要:
运行一个ubuntu容器docker run -i -t ubuntu /bin/bash备份apt源cp /etc/apt/sources.list /etc/apt/sources.list.bak修改apt源vi /etc/apt/sources.list替换所有源为sohu源deb http... 阅读全文
摘要:
命令行的组成结构:Commands: attach Attach to a running containerbuild Build a container from a Dockerfilecommit Create a new image from a container's... 阅读全文