前言:不断学习就是程序员的宿命 一、kubeadm搭建k8s集群 1、系统准备 三台ECS(8C、16G、Centos7.x) 2、环境配置 2.1 关闭防火墙 systemctl stop firewalld systemctl disable firewalld 2.2 关闭selinux se ...
分类:
其他好文 时间:
2020-06-26 14:24:23
阅读次数:
86
CentOS7 防火墙相关命令 查看防火墙状态 firewall-cmd --state 停止firewall systemctl stop firewalld.service 开启firewall systemctl stop firewalld.service 禁止firewall 开机启动 s ...
分类:
其他好文 时间:
2020-06-26 12:34:39
阅读次数:
43
CentOS7默认的防火墙不是iptables,而是firewalle.要停止firewall systemctl disable firewalld.service systemctl stop firewalld.service systemctl status firewalld.servic ...
分类:
其他好文 时间:
2020-06-26 12:28:47
阅读次数:
61
参考: https://blog.csdn.net/weixin_34101229/article/details/90595932?utm_medium=distribute.pc_relevant_t0.none-task-blog-BlogCommendFromMachineLearnPai2 ...
分类:
其他好文 时间:
2020-06-26 10:44:44
阅读次数:
75
有时候通过ssh连接远程主机,常常遇到自动断开连接的问题。这是由于sshd进程的keepalive机制决定的: sshd会定期向client发送keepalive报文(发送间隔可通过ClientAliveInterval参数配置)。 如果累计未收到回应达到上限就会主动断开与client的连接(失败上 ...
分类:
其他好文 时间:
2020-06-26 10:31:42
阅读次数:
96
开机就进入命令窗口,窗口提示信息如下: generating “/run/initramfs/rdsosreport.txt”entering emergencymode. exit the shell to continuetype “journalctl” to view system logs ...
分类:
其他好文 时间:
2020-06-26 10:23:19
阅读次数:
143
新建虚拟机步骤同Vmware安装linux centos6 打开虚拟机,选择第一项 选择安装过程中使用的语言 localization本地化配置中 配置日期和时间,键盘和语言默认 software中,安装源默认为本地光盘,软件套件选择server with GUI system中网络和主机名暂时不配... ...
分类:
系统相关 时间:
2020-06-26 01:18:02
阅读次数:
119
docker images 查看镜像 docker pill nginx 这是下载nginx docker version 查看版本 docker search centos 搜索有关centos多种镜像 docker export 容器ID >生成新的容器 导出镜像 docker run cent ...
分类:
其他好文 时间:
2020-06-25 23:02:03
阅读次数:
58
centos7安装docker ,再下载rabbitmq镜像,启动容器后无法访问容器内的服务,防火墙也关闭了,但是还是不行,后来重新设置了网卡,就可以了,解决过程如下: #下载镜像docker pull rabbitmq:3.7.15#启动docker容器docker run -d --name r ...
分类:
其他好文 时间:
2020-06-25 21:55:03
阅读次数:
177
1、可能大家在安装双系统的时候会遇到这样的问题:在安装Win10的情况下,安装CentOS7,然后重启之后,无法进入到win10,直接进入到Linux系统,你说气不气!不要生气,下面就跟随着小编来看看具体的解决方法。 解决方法: 进入到Linux系统,安装epel-release源,yum inst ...