摘要:
方法一:IP命令 ip link show 如果知道具体网卡如eth0, ip link show eth0 或者 ip addr 如果知道具体网卡如eth0, ip addr show eth0 方法二:ifconfig命令 ifconfig -a 如果知道具体网卡如eth0, ifconfig 阅读全文
摘要:
镜像操作: docker login docker.io 登陆docker docker search (image-name) 查找 docker pull (image-name) 从远端拉取 docker images (本地镜像) 列出本地镜像 docker tag IMAGEID 别名 命 阅读全文
摘要:
更换k8s集群,或者创建集群使用用户不对,导致ranchar无法显示容器处理方式如下: 报错如下: Error from server (AlreadyExists): clusterrolebindings.rbac.authorization.k8s.io "cluster-admin-bind 阅读全文
摘要:
1、下载: 使用wget或者curl从链接下载: 2、解压安装包到指定位置 tar -xvf mysql-5.7.30-el7-x86_64.tar -C /usr/local 下载的包解压除两个,使用不带test的 再次解压: tar -zxvf mysql-5.7.30-el7-x86_64.t 阅读全文
摘要:
1、安装redis yum -y install redis 2、修改redis配置 vim /etc/redis.conf 找到redis.conf 并修改 daemonize no 为 daemonize yes 3、启动redis redis-server /etc/redis.conf 4、 阅读全文
摘要:
Linux tr 命令用于转换或删除文件中的字符。 tr 指令从标准输入设备读取数据,经过字符串转译后,将结果输出到标准输出设备。 语法 tr [-cdst][--help][--version][第一字符集][第二字符集] tr [OPTION]…SET1[SET2] 参数说明: -c, --co 阅读全文
摘要:
LVS的三种包转发方式: LVS提供了三种包转发方式:NAT(网络地址映射)、IP Tunneling(IP隧道)、Direct Routing(直接路由) 不同的转发模式决定了不同的cluster的网络结构,下面对三种转发方式分别介始: 1、NAT(网络地址映射): NAT方式可支持任何的操作系统 阅读全文
摘要:
1、8代CPU和同期主板,设置boot为传统模式,硬盘模式raid on,关闭secaure boot 安装WIN7需要注意,系统会打不上USB3.O驱动,安装系统后无法使用使用USB3.0连接的设备 2、安装win10,推荐使用UEFI,将系统拷进U盘或者写入U盘直接安装 使用PE安装镜像:设置s 阅读全文
摘要:
配置好官方源后,yum install docker-ce 一直报错https://download.docker.com/linux/centos/7/x86_64/stable/repodata/repomd.xml: [Errno 12] Timeout on https://download 阅读全文