Docker 安装 Oracle 和 Nginx
前言 Linux 安装 Oracle 太麻烦了,还需要去官网下载,官网下载需要登录 Oracle 账号,下载后还需要上传安装,而使用 Docker 安装更简单,下面就是整个安装过程。 更新 Yum 源 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 # 备份原有Yum源 mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup # 选择和配置新的Yum源 # 阿里云镜像源 curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo # 网易镜像源 # curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.163.com/.help/CentOS-Base.repo # 清华大学镜像源 # curl -o /etc/yum.repos.d/CentOS-Base.repo https://mirrors.tuna.tsinghua.edu.cn/help/centos/7/.repo # 更新Yum缓存 # 清除旧的缓存并生成新的缓存,以确保Yum能够正确识别新的源 yum clean all yum makecache # 测试Yum源 # 正常显示软件包列表,说明Yum源配置成功 yum list Docker的安装 安装Docker ...