##安装依赖 yum install gcc gcc-c++ automake pcre pcre-devel zlip zlib-devel openssl openssl-devel ##解压 tar xf nginx-1.18.0.tar.gz -C /data/ ##创建虚拟用户 usera ...
分类:
其他好文 时间:
2021-03-12 13:27:36
阅读次数:
0
线上PHP环境的安装一般使用编译的方式,但是需要手动一个一个安装,这次使用yum来进行安装 1.安装EPEL源 rpm -ivh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm 或者 yum install ...
分类:
Web程序 时间:
2021-03-11 20:48:12
阅读次数:
0
安装podmen [root@localhostl ~]# yum -y remove docker-ce [root@localhostl ~]# yum -y install podman [root@localhostl ~]# cd /etc/containers/ [root@localh ...
分类:
其他好文 时间:
2021-03-10 13:05:54
阅读次数:
0
Haproxy的使用 1.安装haproxy yum install -y haproxy 2.配置haproxy vim /etc/haproxy/haproxy.cfg global maxconn 100000 chroot /var/lib/haproxy uid 99 gid 99 dae ...
分类:
其他好文 时间:
2021-03-09 13:56:04
阅读次数:
0
网络dhcp功能 把linux配置成路由器 dhcp分配信息包括: ip地址 子网掩码 网关 dns dhcp租约时间 dhcp服务安装 yum install dhcp -y cat > /etc/dhcp/dhcpd.conf <<EOF subnet 172.16.1.0 netmask 25 ...
分类:
其他好文 时间:
2021-03-09 12:57:44
阅读次数:
0
docker swarm 环境准备 在本地搭建3台虚拟机1C2G,用于swarm集群。 ip地址 192.168.1.10,192.168.1.11,192.168.1.12. 配置yum源使用阿里云,使用xshell发送到所有session功能,一次操作3台机器 安装docker #配置yum源使 ...
分类:
其他好文 时间:
2021-03-08 13:33:34
阅读次数:
0
原文how to build RPM Author: Chris Negus Editor: Allison Pranger Date: 09/16/2011 译者:philoenglish.com 团队 译文: 概览 您已经创建了一些要安装在Red Hat Enterprise Linux系统上的 ...
分类:
其他好文 时间:
2021-03-08 13:15:27
阅读次数:
0
emqx 安装教程 启动失败 根据提示,我们查看启动失败日志 接着我们查看官网,对应常见错误,找到对应的解决办法, 查询 crypto依赖的 .so 动态库列表及其在内存中的地址:(其中 OPENSSL_1.0.2' not found表明指定的 OPENSSL 版本的 .so 库未正确安装) 我是 ...
分类:
其他好文 时间:
2021-03-06 14:53:32
阅读次数:
0
冒泡排序思想 基本思想: 冒泡排序,类似于水中冒泡,较大的数沉下去,较小的数慢慢冒起来,假设从小到大,即为较大的数慢慢往后排,较小的数慢慢往前排。 直观表达,每一趟遍历,将一个最大的数移到序列末尾。 算法描述 比较相邻的元素,如果前一个比后一个大,交换之。 第一趟排序第1个和第2个一对,比较与交换, ...
分类:
编程语言 时间:
2021-03-06 14:13:04
阅读次数:
0
第一步:卸载老版本 $ sudo yum remove docker docker-client docker-client-latest docker-common docker-latest docker-latest-logrotate docker-logrotate docker-engi ...
分类:
其他好文 时间:
2021-03-05 13:18:40
阅读次数:
0