[root@localhost ~]# docker run hello-world
Unable to find image 'hello-world:latest' locally
docker: Error response from daemon: Get "https://registry-1.docker.io/v2/": x509: certificate has expired or is not yet valid: current time 2022-05-27T12:16:44+08:00 is before 2022-06-12T00:00:00Z.
这种报错是由于系统时间与实际不一致所导致的
此时可通过date命令确定本地时间是否正确。若本地时间错误,可以尝试使用ntp进行系统时间同步
ntpdate cn.pool.ntp.org
如果提示找不到ntp命令,可以先通过如下命令进行安装(若有提示输入y即可)
yum install ntp
安装完成后再次执行更新系统时间即可