您的当前位置:TAGS -> CentOS8
  • centos8中使用yum安装nginx的详细过程

    服务器4小时前

    目录 centos8中怎样使用yum安装 nginx yum 直接安装 使用vim编辑 nginx基本命令 centos8中怎样使用yum安装 nginx centos8 安装 nginx yum 直接安装 centos8和centos7安装nginx有点点不一样,centos8 自带了nginx 1.14.1 ,我们先升级到新稳定版1.20.1 1.在e...

  • centOS8安装Docker

    服务器2025年06月24日

    首先安装执行: [root@Centos8Node1 ~]# yum install -y docker-ce 上次元数据过期检查:0:13:32 前,执行于 2020年04月04日 星期六 00时18分50秒。 错误: 问题: package docker-ce-3:19.03.8-3.el7.x86_64 requires containerd.io ...

  • 在CentOS7中安装Docker并开一台CentOS8的容器

    服务器2025年06月17日

    第一步:首先安装docker yum install tmux yum install docker systemctl enable docker systemctl start docker 第二步:启动一台centos8 docker pull centos: docker rm -f centos8 docker run -itd --name c...

  • Centos8 防火墙

    服务器2025年06月13日

    一: 防火墙端口相关操作 1:查看防火墙某个端口是否开放 firewall-cmd --query-port=/tcp 2:开放防火墙端口 注意:开放端口后要重启防火墙生效 firewall-cmd --zone=public --add-port=3306/tcp --permanent 3:重启防火墙 systemctl restart firewal...

  • Centos8防火墙配置

    服务器2025年06月06日

    1、安装 yum install iptables-services #安装iptables 2、systemctl使用 systemctl unmask firewalld #执行命令,即可实现取消服务的锁定 systemctl mask firewalld # 下次需要锁定该服务时执行 systemctl start firewalld.service...

  • centos8更改镜像源

    服务器2025年05月28日

    centos8更改镜像源 阿里云:阿里云社区关于centos8镜像 https://developer.aliyun.com/mirror/centos curl -o /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-8.repo sed -i -e '/mi...

  • centos8 yum 升级nginx

    服务器2025年05月25日

    添加nginx yum源 Nginx官网提供了三个类型的版本Mainline version:Mainline 是 Nginx 目前主力在做的版本,可以说是开发版Stable version:最新稳定版,生产环境上建议使用的版本Legacy versions:遗留的老版本的稳定版 sudo vim /etc/yum.repos.d/nginx.repo 使...

  • centos8安装 rabbitmq

    服务器2025年05月19日

    系统版本 cat /etc/redhat-release CentOS Linux release 8.2.2004 (Core) 关闭防火墙 systemctl disable firewalld sed -i 's@SELINUX=enforcing@SELINUX=disabled@g' /etc/selinux/config 添加阿里云epel源 ...

  • CentOS8常用基础命令

    服务器2025年05月04日

    1)查看历史命令history 2)清除历史命令history -c 3)关闭系统init 0 4)重启系统init 6 5)查看当前目录下的所有非隐藏文件ls 6)查看当前目录下的所有非隐藏文件及权限ll 或 ls -l 7)查看当前目录下的所有文件及权限ll -a 或ls -al 8)切换目录cd 9)进入最近一次使用的目录cd - 10)查看当前路径...

  • centos8中如何使用yum安装nginx

    服务器2023年07月31日

    这篇文章主要介绍了centos8中如何使用yum安装nginx的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇centos8中如何使用yum安装nginx文章都会有所收获,下面我们一起来看看吧。 centos8中怎样使用yum安装 nginx centos8 安装 nginx yum 直接安装 centos8和centos7安装n...