1. RHEL的支持策略是怎么样的?

标准支持(一般7年)+ 延长支持(3年)

2. 升级RHEL的好处有哪些?

More advantageous to upgrade completely to newer releases
— Take advantage of latest hardware and virtualization capabilities
— New management, technologies and deployment stacks
— Realize more scaling, more performance and more flexibility with newer releases

3. 我应该采取哪种方式的生命周期管理策略?

详见 https://www.redhat.com/f/pdf/RHEL-4-EOL_Consideration-Options_Customer_22DEC11.pdf

4. RHEL程序兼容性指南

RHEL6: http://dynamic.ziftsolutions.com/clients/redhat/pdf/rhel6/RHEL6_App_Compatibility_WP.pdf

RHEL7: https://access.redhat.com/articles/rhel-abi-compatibility

5. What does RHEL use OpenSSL compatibility packages for?

RHEL 6 includes an openssl098e compatibility library, compatible with openssl packages from RHEL 5.
RHEL 5 includes an openssl097a compatibility library, compatible with openssl packages from RHEL 3 and 4.
RHEL 3 and 4 include an openssl096b compatibility library, compatible with openssl packages from RHEL 2.1

Unlike most other such compability packages, the OpenSSL ones do not have "compat" in their name to indicate their status as compatiblity packages. As they are only intended for runtime compatibility, there is no corresponding "devel" package for them like there is for the regular openssl package.

6. What is the glibc?

The glibc package contains standard libraries which are used by multiple programs on the system. In order to save disk space and memory, as well as to make upgrading easier, common system code is kept in one place and shared between programs. This particular package contains the most important sets of shared libraries: the standard C library and the standard math library. Without these two libraries, a Linux system will not function.

7. What glibc version is shipped with a particular Red Hat Enterprise Linux Update?

RHEL 4

RHEL 5

RHEL 6

RHEL 7

version

glibc-2.3.4-2.X

glibc-2.5-X

glibc-2.12-1.X glibc-2.17-X

Note 1 : compat-glibc-2.3.2 package is shipped with Red Hat Enterprise Linux 4.
Note 2 : compat-glibc-2.3.4 package is shipped with Red Hat Enterprise Linux 5.
Note 3 : compat-glibc-2.5 package is shipped with Red Hat Enterprise Linux 6.
Note 4 : compat-glibc-2.12 package is shipped with Red Hat Enterprise Linux 7.
Note 5 : To keep binary compatibility, Red Hat does not support glibc major-version upgrade in the same major Updates.

RHEL生命周期管理 -- Should I stay, or should I go?的更多相关文章

  1. 【Microsoft Azure 的1024种玩法】六、使用Azure Cloud Shell对Linux VirtualMachines 进行生命周期管理

    [文章简介] Azure Cloud Shell 是一个用于管理 Azure 资源的.可通过浏览器访问的交互式经验证 shell. 它使用户能够灵活选择最适合自己工作方式的 shell 体验,本篇文章 ...

  2. ASP.NET Core中的依赖注入(4): 构造函数的选择与服务生命周期管理

    ServiceProvider最终提供的服务实例都是根据对应的ServiceDescriptor创建的,对于一个具体的ServiceDescriptor对象来说,如果它的ImplementationI ...

  3. 【转】Tomcat组件生命周期管理

    Tomcat组件生命周期管理 Tomcat中Server,Service,Connector,Engine,Host,Context,它们都实现了org.apache.catalina.Lifecyc ...

  4. Castle IOC容器组件生命周期管理

    主要内容 1.生命处理方式 2.自定义生命处理方式 3.生命周期处理 一.生命处理方式 我们通常创建一个组件的实例使用new关键字,这样每次创建出来的都是一个新的实例,如果想要组件只有一个实例,我们会 ...

  5. Java实现生命周期管理机制

    先扯再说 最近一直在研究某个国产开源的MySQL数据库中间件,拉下其最新版的代码到eclipse后,启动起来,然后做各种测试和代码追踪:用完想要关闭它时,拉出它的STOP类想要运行时,发现这个类里赫然 ...

  6. 6、Khala的登录生命周期管理

    khala能够对设备进行生命周期管理,并提供了与生命周期相关的接口,用户只需在具体的设备类型实现类中重写这些生命周期接口,即可享受khala对于生命周期管理的同时定制与业务相关的操作.具体接口解释如下 ...

  7. 依赖注入及AOP简述(十一)——生命周期管理 .

    2.     生命周期管理 各种依赖注入框架提供了替开发者管理各种Scope的便利功能,随之而来的就必然是被管理的依赖对象的生命周期管理的问题.所谓生命周期管理,就是一个对象在它所属的Scope中从被 ...

  8. Windows 8 动手实验系列教程 实验5:进程生命周期管理

    动手实验 实验5:进程生命周期管理 2012年9月 简介 进程生命周期管理对构建Windows应用商店应用的开发者来说是需要理解的最重要的概念之一.不同于传统的Windows应用(它们即使在后台仍然继 ...

  9. 快速构建Windows 8风格应用30-应用生命周期管理

    原文:快速构建Windows 8风格应用30-应用生命周期管理 引言 Windows 8 中可以启动多个应用并在其中切换,我们没有必要担心降低系统速度或消耗电池电量. 因为系统会自动挂起(有时会终止) ...

随机推荐

  1. 从源码层面解析SpringIOC容器

    Spring IOC容器继承关系图 MessageSource支持消息国际化.ResouceLoader资源加载.BeanFactory创建Bean.ApplicationEventPublisher ...

  2. springboot: mybatis逆向工程

    第一步: pom文件配置 黄线的部分是所要配置的 <?xml version="1.0" encoding="UTF-8"?> <projec ...

  3. mongo 语法 增删改查

    1.增 db.collection.insert()与db.collection.save() 都是增加,区别:save()遇到相同_id后,则更新此_id数据. 而insert()则报错 > ...

  4. 利用setTimeout来实现setInterval

    在Js中,当我们要在一定间隔时间内不断执行同一函数,我们可以使用setInterval函数,但setInterval在某些情况下使用时也存在一定问题. 1.不去关心回调函数是否还在运行 在某些情况下, ...

  5. 解决securecrt连接centos使用VIM编辑中文时乱码

    vim ~/.vimrc 添加两行 set encoding=utf-8 set fileencodings=ucs-bom,utf-8,cp936

  6. css3基础下

    box-shadow:0 5px 5px rgba(0,0,0,0.5) 文本 text-shadow:5px 5px 4px green; word-wrap: 背景: background:#ff ...

  7. BST转换成有序链表

    把二元查找树转变成排序的双向链表(树)题目:输入一棵二元查找树,将该二元查找树转换成一个排序的双向链表.要求不能创建任何新的结点,只调整指针的指向. struct BSTreeNode{ int va ...

  8. BZOJ1050 旅行comf(kruskal)

    旅行comf 给你一个无向图,N(N<=500)个顶点, M(M<=5000)条边,每条边有一个权值Vi(Vi<30000).给你两个顶点S和T,求一条路径,使得路径上最大边和最小边 ...

  9. npm安装过程中的win环境变量设置

    我们要先配置npm的全局模块的存放路径以及cache的路径,例如我希望将以上两个文件夹放在NodeJS的主目录下,便在NodeJs下建立”node_global”及”node_cache”两个文件夹. ...

  10. java并发编程(10)Fork/Join

    Fork/Join JAVA7中出现的Fork/Join,类似于分布式文件系统hadoop的mapreduce思想,就是将任务分割,再分割,直到分割到满足条件 为了便于理解:编程逻辑可以借用 递归的思 ...