RHEL生命周期管理 -- Should I stay, or should I go?
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.1Unlike 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?的更多相关文章
- 【Microsoft Azure 的1024种玩法】六、使用Azure Cloud Shell对Linux VirtualMachines 进行生命周期管理
[文章简介] Azure Cloud Shell 是一个用于管理 Azure 资源的.可通过浏览器访问的交互式经验证 shell. 它使用户能够灵活选择最适合自己工作方式的 shell 体验,本篇文章 ...
- ASP.NET Core中的依赖注入(4): 构造函数的选择与服务生命周期管理
ServiceProvider最终提供的服务实例都是根据对应的ServiceDescriptor创建的,对于一个具体的ServiceDescriptor对象来说,如果它的ImplementationI ...
- 【转】Tomcat组件生命周期管理
Tomcat组件生命周期管理 Tomcat中Server,Service,Connector,Engine,Host,Context,它们都实现了org.apache.catalina.Lifecyc ...
- Castle IOC容器组件生命周期管理
主要内容 1.生命处理方式 2.自定义生命处理方式 3.生命周期处理 一.生命处理方式 我们通常创建一个组件的实例使用new关键字,这样每次创建出来的都是一个新的实例,如果想要组件只有一个实例,我们会 ...
- Java实现生命周期管理机制
先扯再说 最近一直在研究某个国产开源的MySQL数据库中间件,拉下其最新版的代码到eclipse后,启动起来,然后做各种测试和代码追踪:用完想要关闭它时,拉出它的STOP类想要运行时,发现这个类里赫然 ...
- 6、Khala的登录生命周期管理
khala能够对设备进行生命周期管理,并提供了与生命周期相关的接口,用户只需在具体的设备类型实现类中重写这些生命周期接口,即可享受khala对于生命周期管理的同时定制与业务相关的操作.具体接口解释如下 ...
- 依赖注入及AOP简述(十一)——生命周期管理 .
2. 生命周期管理 各种依赖注入框架提供了替开发者管理各种Scope的便利功能,随之而来的就必然是被管理的依赖对象的生命周期管理的问题.所谓生命周期管理,就是一个对象在它所属的Scope中从被 ...
- Windows 8 动手实验系列教程 实验5:进程生命周期管理
动手实验 实验5:进程生命周期管理 2012年9月 简介 进程生命周期管理对构建Windows应用商店应用的开发者来说是需要理解的最重要的概念之一.不同于传统的Windows应用(它们即使在后台仍然继 ...
- 快速构建Windows 8风格应用30-应用生命周期管理
原文:快速构建Windows 8风格应用30-应用生命周期管理 引言 Windows 8 中可以启动多个应用并在其中切换,我们没有必要担心降低系统速度或消耗电池电量. 因为系统会自动挂起(有时会终止) ...
随机推荐
- SqlServer索引、优化、约束、连接
索引的创建和删除 create index in_name on person(name) --创建索引 drop index person.in_name --删除索引 create index i ...
- Mac 10.12安装Go2Shell在资源管理器快速打开Shell并跳转到指定位置
下载: (链接: https://pan.baidu.com/s/1qXAUqxY 密码: bf7g)
- wap 往下拉自动加载更多数据
var stop=true; $(window).scroll(function(){ totalheight = parseFloat($(window).height()) + parseFloa ...
- mongo 语法 增删改查
1.增 db.collection.insert()与db.collection.save() 都是增加,区别:save()遇到相同_id后,则更新此_id数据. 而insert()则报错 > ...
- PHP 对字符串 进行填充
1.str_pad — 使用另一个字符串填充字符串为指定长度 . 我觉得str_pad可以满足普通的数字,字符串的简单填充. string str_pad ( string $input , int ...
- split使用和特殊使用(包括截取第一个字符后的数据)
javaScript中关于split()的使用 1.一般使用对一个字符串使用split(),返回一个数组 例子: var testArr = "1,2,3,4,5": var ...
- 深入分析java web技术内幕目录一览
Web请求过程 如何发起请求:browser,httpclient http解析:chrome ,cache Dns域名解析:域名缓存 cdn:负载,动态加速,回源 Java I/O I/0类库的基本 ...
- Android6.0内核移植(2):kernel编译内核
普通步骤是:用来编译整个Android源码 source build/envsetup.sh lunch sabresd_6dq-user make -j20 不过每次这样太繁琐,下面来单独编译ker ...
- 很实用的web性能测试插件:Yslow , PageSpeed
package org.springframework.web.servlet.resource; import java.io.IOException; import java.io.Unsuppo ...
- 搭建Eclipse和MyEclipse的开发环境
主要步骤: 下载并配置Eclipse 建立并运行一个简单的javaSE项目 下载并破解MyEclipse 整合Eclipse和MyEclipse 开发环境和Tomcat结合 关于这个配置也可以参考:h ...