安装 Docker 及 Docker Compose 命令:

yum update -y
yum install -y yum-utils device-mapper-persistent-data lvm2 epel-release gcc libffi-devel python-devel openssl-devel git net-tools
yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
yum update -y
yum makecache fast
yum install -y docker-ce
service docker start
systemctl enable docker
yum install -y python3-pip
pip3 install --upgrade pip
pip3 install docker-compose --ignore-installed requests

CentOS7 安装防火墙:

#安装防火墙
yum install firewalld
systemctl unmask firewalld
systemctl enable firewalld
systemctl start firewalld

关闭防火墙:

systemctl stop firewalld.service
systemctl disable firewalld.service

进入docker xxx容器,弹出引导命令:

docker exec -it xxx bash

查看系统时间的命令: date

查看硬件时间的命令:  hwclock

服务器时间命令:

#时间服务器上的时间同步的方法
#安装ntpdate工具
yum -y install ntp ntpdate
#设置系统时间与网络时间同步
ntpdate cn.pool.ntp.org
#将系统时间写入硬件时间
hwclock --systohc

Logo

权威|前沿|技术|干货|国内首个API全生命周期开发者社区

更多推荐