docker单机网络类型概述 Docker 安装时会自动在 host 上创建三种网络 分别为 bridge host none . 可用 docker network ls 命令查看 none 网络 none 网络就是什么都没有的网络.挂在这个网络下的容器除了 lo,没有其他任何网卡 一些对安全性要 ...
分类:
其他好文 时间:
2018-09-10 11:07:50
阅读次数:
269
docker的介绍docker的定义:1.docker的三个概念:Docker是一个开源的引擎,可以轻松的为任何应用创建一个轻量级的、可移植的、自给自足的容器Docker镜像-Dockerimages:Docker镜像是Docker容器运行时的只读模板Docker仓库-Dockerregisteries:Docker仓库用来保存镜像,可以理解为代码控制中的代码仓库(DockerHub)Docker
分类:
Web程序 时间:
2018-09-09 00:46:08
阅读次数:
248
原文地址:Nginx Linux详细安装部署教程 一、Nginx简介 Nginx是一个web服务器也可以用来做负载均衡及反向代理使用,目前使用最多的就是负载均衡,具体简介我就不介绍了百度一下有很多,下面直接进入安装步骤 二、Nginx安装 1、下载Nginx及相关组件 下载相关组件 安装c++编译环 ...
分类:
编程语言 时间:
2018-09-05 20:02:12
阅读次数:
204
1、首先确定linux系统有网络。 使用ipconfig查看是否有ip地址,没有的话需要先配置。 2、打开sshd服务:service sshd start 3、关闭防火墙服务:service iptables stop 最后还可以把sshd设置为开机启动,而防火墙为开机不启动,命令为: chkco ...
分类:
系统相关 时间:
2018-08-21 15:21:24
阅读次数:
211
构建一个有http和ssh服务的镜像
mkdir /root/build
cd /root/build
mkdir /root/build/dockerfile
cp /etc/yum.repos.d/xixi.repo /root/build/
vim oo.sh
#!/bin/bash
EnvironmentFile=/etc/sysconfig/sshd
/usr/sbin/sshd -D &
EnvironmentFile=/etc/sysconfig/httpd
/usr/sbin/httpd -DFOREGROUND &
wait
chmod 755 oo.sh
vim Dockerfile
FROM centos
MAINTAINER luozixu
RUN rm -rf /etc/yum.repos.d/*.repo
ADD local.repo /etc/yum.repos.d/xix.repo
RUN yum -y install net-tools psmisc vim-enhanced iproute httpd openssh-server
EN
分类:
其他好文 时间:
2018-08-17 11:13:36
阅读次数:
259
开启远程访问: GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'root' WITH GRANT OPTION; 允许任何ip以root用户登录 flush privileges;立即生效 CentOS 7.0默认使用的是firewa ...
分类:
其他好文 时间:
2018-08-16 19:46:28
阅读次数:
828
列表: 172.16.0.40 (swarm-master) 172.16.0.160 (swarm-worker) 172.16.0.170 (swarm-worker) 172.16.0.30 (mariadb-master) 172.16.0.43 (mariadb-slave) 172.16 ...
分类:
其他好文 时间:
2018-08-12 21:35:56
阅读次数:
464
ssh服务: 类似于TeamView,进行远程控制 客户端安装:openssh-clients(xshell、putty、secureCRT、VNC) 服务器安装:openssh-server 网络配置文件: /etc/sysconfig/network-scripts/ifcfg-eth0 ssh ...
分类:
其他好文 时间:
2018-08-12 15:36:58
阅读次数:
161
上次防火墙重启,关闭了443端口导致https域名无效: 查看防火墙端口: service iptables status 开启443端口: iptables -I INPUT -p tcp --dport 443 -j accept ...
分类:
其他好文 时间:
2018-08-09 12:21:25
阅读次数:
190
1 [linuxidc@localhost ~]$service iptable status 1 [linuxidc@localhost ~]$service iptable status 1 [linuxidc@localhost ~]$service iptable status 1 [lin ...
分类:
其他好文 时间:
2018-08-07 15:19:36
阅读次数:
340