Check Kernel version of J2EE Engine
1912674 - How to check kernel version of an AS Java
Two types of the kernel are in SAP NetWeaver Java system:
Native Kernel
Java Kernel
Native Kernel:
Native Kernel is executables of java startup framework which are written in C-code, like jcontrol, jstart, jlaunch, sapstartsrv etc.
We can update using file like SAPEXEDB.SAR and SAPEXE.SAR.
GetVersionInfo function of sapcontrol command can display the kernel version.
Java Kernel:
Java Kernel is a java binaries of J2EE Engine itself, like boot.jar, jstartup,jar...etc
We can update it during system release or Support Package Stack(SP/SPS) upgrade.
The System Information page and other tools like Visual Administrator can display the kernel version
Note:
When SAP Consultant request for kernel version, which implies that Native Kernel unless clearly mention to get Java Kernel
If the user only performs the update for Native Kernel then they only need to follow [For Native Kernel version] section to confirm whether kernel indeed gets updated to expect one. The user doesn't need to follow the [For Java Kernel] section.
For Native Kernel Version
Please use either way listed below to get it.
(1) Use the command 'usr/sap//SYS/exe/.../sapcontrol -user -nr -function GetVersionInfo' .
For 7.0X version:Updating Native Kernel do not affect the version of Java Kernel.
For 7.1X onwards version:
(2) Using SAP MMC:
(3) Go to folder usr/sap//SYS/exe/.../ and execute file like jlaunch jstart etc with option -version or -v . Please note the 'source id' is the real patch number other than 'patch number'.
For Java Kernel
Please check System Information page to know its kernel version.
For 7.0X version:
http://:/sap/monitoring/SystemInfo
For 7.1X onwards version:
http://:/nwa/sysinfo
Check Kernel version of J2EE Engine的更多相关文章
- How to check Ubuntu version
Below you can find some tips on how to check Ubuntu version you are currently running. The first pla ...
- Linux Kernel Version Numbering
Because there are numerous revisions and releases of the Linux kernel and new ones are developed at ...
- Cookie Version in J2EE
Cookie Version in J2EE 原文章:http://villadora.me/2014/05/06/cookie-version/ 在处理Cookie的时候发现不能处理servlet ...
- How to check HTML version of any website
http://howtocheckversion.com/check-html-version-website/ Check HTML version via W3C W3 Consortium ha ...
- Linux kernel version dirty
在我们使用git来管理Linux Kernel的时候,在编译的时候会在你的kernel version加上git commit number 有时候还会出现dirty字样,字面意思是内核被污染的意思. ...
- Check .NET Version with Inno Setup
原文 http://www.kynosarges.org/DotNetVersion.html Inno Setup by Jordan Russell is a great installation ...
- 各个安卓版本 使用的 Linux Kernel Version
Android Version |API Level |Linux Kernel in AOSP --------------------------------------------------- ...
- Fedora version history --- kernel version
Fedora version history https://en.wikipedia.org/wiki/Fedora_version_history Version (Code name)[ ...
- Understanding Linux Kernel version 3 读书笔记
P30, preemptive kernel .kernel threading 和Multithreaded application support没太好理解,我想如果设计个多线程的程序来运行运行 ...
随机推荐
- String的疑问
ss[]//var ss:String; 和 Pointer(ss)^ 是不是一个意思呢? 答:不是. ss[]表示第一个字符.如:ss:='abc' 则表示]=Length(ss); Pointer ...
- SpringCloud之服务注册与发现Eureka(一)
Eureka是Spring Cloud Netflix微服务套件中的一部分,可以与Springboot构建的微服务很容易的整合起来.Eureka包含了服务器端和客户端组件.服务器端,也被称作是服务注册 ...
- java反射以及动态代理的学习
java反射学习 1)字节码文件的三种获取方式 ①:Object类的getClass()方法:对象.getClass() ②:数据类型的静态的class属性:类名.class ③:通过Class类的静 ...
- ALGO-115_蓝桥杯_算法训练_和为T(枚举)
问题描述 从一个大小为n的整数集中选取一些元素,使得它们的和等于给定的值T.每个元素限选一次,不能一个都不选. 输入格式 第一行一个正整数n,表示整数集内元素的个数. 第二行n个整数,用空格隔开. 第 ...
- Ubuntu16.04 创建桌面快捷方式
一.基本概念 Linux 系统中的Desktop Entry 文件以desktop为后缀名.Desktop Entry 文件是 Linux 桌面系统中用于描述程序启动配置信息的文件. 进入/usr/s ...
- pandas.DataFrame 插入列和行
转载:www.360doc.com/content/17/0225/23/1489589_632032302.shtml 以csv实例文件操作插入DataFrame的行和列 文件名:example.c ...
- Java-Runoob-高级教程-实例-方法:12. Java 实例 – Enum(枚举)构造函数及方法的使用-um
ylbtech-Java-Runoob-高级教程-实例-方法:12. Java 实例 – Enum(枚举)构造函数及方法的使用 1.返回顶部 1. Java 实例 - Enum(枚举)构造函数及方法的 ...
- 学习笔记之Data analysis
Data analysis - Wikipedia https://en.wikipedia.org/wiki/Data_analysis Data analysis is a process of ...
- C++ Programming Language中的Calculator源代码
C++ Programming Language 4th中的Calculator源代码整理,因为在C++ Programming Language中,涉及了很多文件位置之类的变化,所以,这里只是其中的 ...
- HBase - Filter - 过滤器的介绍以及使用
1 过滤器HBase 的基本 API,包括增.删.改.查等.增.删都是相对简单的操作,与传统的 RDBMS 相比,这里的查询操作略显苍白,只能根据特性的行键进行查询(Get)或者根据行键的范围来查询( ...