yum介绍 yum(全称为 Yellow dog Updater, Modified)是一个在 Fedora和 RedHat 以及 CentOS 中的 Shell 前端软件包管理器。基于 RPM 包管理,能够从指定的服务器自动下载 RPM 包并且安装,可以自动处理依赖性关系,并且一次安装所有依赖的软 ...
分类:
其他好文 时间:
2019-10-31 18:44:30
阅读次数:
75
1、配置NTP服务端 环境:redhat 6.5 服务器主机名 ip地址 说明 server 192.168.57.20 NTP服务端 client 192.168.57.21 NTP客户端 搭建说明: 本地server使用外网ntp源同步时间,再作为NTP服务端同步时间给本地client服务器NT ...
分类:
其他好文 时间:
2019-10-31 16:36:16
阅读次数:
747
1、在之前的版本中关闭防火墙等服务的命令是 service iptables stop /etc/init.d/iptables stop 2、RHEL7开始,使用systemctl工具来管理服务程序,包括了service和chkconfig systemctl list-unit-files|gr ...
分类:
其他好文 时间:
2019-10-31 11:52:58
阅读次数:
196
由于redhat自带安装了jdk,我们需要现将其进行卸载 1、 先检查自带的JDK 结果如下 2、使用rpm e nodeps 命令删除上面查找的内容: 3、新建目录重新安装 4、切换目录 5、将 环境搭建练习 中的 apache tomcat 7.0.88.tar.gz 和 jdk 7u65 li ...
分类:
其他好文 时间:
2019-10-30 18:17:20
阅读次数:
91
环境: redhat6.5 MySQL Community Server 5.7.28 https://dev.mysql.com/downloads/mysql/5.7.html 安装RMP包的具体操作如下: 1、如有mariadb,先卸载 rpm -qa |grep mariadb rpm -q ...
分类:
数据库 时间:
2019-10-30 16:40:59
阅读次数:
114
OpenShift4.2详细安装参考同事王征的安装手册(感谢王征大师的研究和答疑解惑, 大坑文章都已经搞定了,我这里是一些小坑) https://github.com/wangzheng422/docker_env/blob/master/redhat/ocp4/4.2.disconnect.ins ...
分类:
其他好文 时间:
2019-10-30 13:49:52
阅读次数:
556
sudo yum install yum-changelogyum changelog httpd yum install -y epel-release cd /etc/yum.repos.d && wget https://repo.codeit.guru/codeit.el`rpm -q -- ...
分类:
Web程序 时间:
2019-10-30 13:47:23
阅读次数:
1136
1.下载git包 下载网址:https://mirrors.edge.kernel.org/pub/software/scm/git/ //自己下载想要的版本 或者直接在Linux 直接使用wget下载 wget https://mirrors.edge.kernel.org/pub/softwar ...
分类:
其他好文 时间:
2019-10-29 23:28:41
阅读次数:
146
之前写了一篇网络成组的文章,使用的是nmtui图形界面配置,但JSON字符串输入很繁琐。因此,建议nmcli进行配置。另外,在CentOS7中推荐网络成组的方式替代以往的网卡绑定,对于具体的操作在红帽子的白皮书中已经有详细的论述,具体可以参看https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/7/html/N
分类:
Web程序 时间:
2019-10-28 22:38:40
阅读次数:
441
1.按名字查找 find ./ -name filename //精确查找 ,./ 代表当前目录 -name 查询名称 filename具体文件名称 find ./ -name "*file*" //模糊查找 2.按时间查找 find ./ -mtime -2 //数字单位为天数,2天之内.+2 2 ...
分类:
其他好文 时间:
2019-10-28 21:08:57
阅读次数:
129