1、网站无法使用旧版本php解析? 原因分析:安装时使用了默认版本或版本过低。 解决方法:安装指定php版本(以php7.1.*为例);指令为如下所述。 yum -y remove php* rpm -Uvh https://mirror.webtatic.com/yum/el7/epel-rele ...
分类:
Web程序 时间:
2020-07-11 19:24:30
阅读次数:
76
安装EPEL Release,因为安装需要使用其他的repo源,所以需要EPEL支持: yum install -y epel-release #如果出现缺少Code提示,可以: sudo rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-7 #安装完成之 ...
分类:
其他好文 时间:
2020-07-10 17:10:23
阅读次数:
69
概述 ansible 当前主流的批量配置管理工具,相比于saltstack 它是无agent 模式,基于ssh 去远程管理主机。有密码和密钥两种方式远程认证方式。 安装 yum -y install ansible (前提是有epel 源,如果没有需要安装) pip install ansible ...
分类:
其他好文 时间:
2020-07-10 13:45:45
阅读次数:
79
1.docker在线安装与启动 1.1安装docker [root@localhost /]#yum install –y epel-release [root@localhost /]# yum -y install docker-io 1.2启动docker服务 [root@localhost ...
分类:
其他好文 时间:
2020-07-08 01:32:28
阅读次数:
187
源码安装 php # yum install epel-release # rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm # 先安装下依赖 yum install -y wget gcc gcc-c++ autoc ...
分类:
Web程序 时间:
2020-07-03 12:25:34
阅读次数:
56
#!/bin/bash yum -y install epel-release yum -y update yum -y remove firewalld yum -y install iptables iptables-services yum -y install gcc vim wget ma ...
分类:
Web程序 时间:
2020-07-01 20:32:05
阅读次数:
238
正文: php官网:https://www.php.net/ 搜狐镜像源:http://mirrors.sohu.com/ (推荐,国内源下载速度嗖嗖的) 1.php编译安装前解决依赖包 yum -y install epel-release yum -y install gcc gcc-c++ m ...
分类:
Web程序 时间:
2020-06-30 22:37:07
阅读次数:
86
网络文件共享部署 1. 安装 epel 库 yum upgrade -y yum -y install epel-release 2. 配置防火墙 firewall-cmd --add-service=nfs --permanent --zone=public firewall-cmd --add- ...
分类:
其他好文 时间:
2020-06-30 12:39:16
阅读次数:
46
$ sudo curl -sL -o /etc/yum.repos.d/khara-nodejs.repo \ https://copr.fedoraproject.org/coprs/khara/nodejs/repo/epel-7/khara-nodejs-epel-7.repo$ sudo y ...
分类:
Web程序 时间:
2020-06-29 13:05:57
阅读次数:
301
在主机上安装saltstack 首先需要epel源, 其次安装:yum install salt-master -y 开机自启动:chkconfig salt-master on 在别的服务器上应该安装yum install salt-minion -y 开机自启动:chkconfig salt-m ...
分类:
其他好文 时间:
2020-06-28 18:44:53
阅读次数:
51