0℃
2021年11月09日
⁄ MySQL
⁄ 被围观 5,186次+
准备篇
一、防火墙配置
#防火墙请根据个人需求进行选择和设置,下面以iptables防火墙为例
CentOS 8.x默认使用的是firewall作为防火墙,这里改为iptables防火墙。
1、关闭firewall:
systemctl stop firewalld.service #停止firewall
systemctl disable firewalld.service #禁止firewall开机启动
systemctl mask firewalld
systemctl stop firewalld
yum remove firewalld
2、安装iptables防火墙
yum install iptables-services #安装
vi /etc/sysconfig/iptables #编辑防火墙配置文件
# sample configuration for...
CentOS, mysql阅读全文
0℃
2021年11月03日
⁄ Docker
⁄ 被围观 6,498次+
CentOS 7.x 安装Docker-ce社区版本
https://www.osyunwei.com/archives/11592.html
搭建docker本地私有镜像仓库
https://www.osyunwei.com/archives/11928.html
CentOS 7.x安装部署NFS文件共享服务器
https://www.osyunwei.com/archives/11942.html
使用Docker-Compose实现Docker容器编排
https://www.osyunwei.com/archives/11903.html
一、通过在Docker Swarm集群内每台服务器挂载nfs目录实现共享存储
1、在nfs服务器配置好挂载目录
/nfs 192.168.21.0/24(insecure,rw,sync,no_subtree_check,no_root_squash)
2...
docker, nfs阅读全文