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没太好理解,我想如果设计个多线程的程序来运行运行 ...
随机推荐
- CPS(Cyber-Physical Systems)白皮书-摘选
<中国制造2025>提出,“基于信息物理系统的智能装备.智能工厂等智能制造正在引领制造方式变革”,要围绕控制系统.工业软件.工业网络.工业云服务和工业大数据平台等,加强信息物理系统的研发与 ...
- ML: 聚类算法R包-K中心点聚类
K-medodis与K-means比较相似,但是K-medoids和K-means是有区别的,不一样的地方在于中心点的选取,在K-means中,我们将中心点取为当前cluster中所有数据点的平均值, ...
- 关于信号的延迟---verilog
关于信号的延迟---verilog `timescale 1ns / 1ps ///////////////////////////////////////////////////////////// ...
- Python 变量比较
类型一定转换成一样,比如 float 与 int 比较都会出错,坑了我一个小时
- XML 增、删、改
作为一个小型的数据存储传递的工具——XML,大家肯定也不陌生,今天就关于XML的一些简单操作做些总结. 这些都是在控制台进行操作的····· 1.创建XML 1)创建普通XML static void ...
- Java Base64编码
使用commons-codec, 下载地址 http://commons.apache.org/proper/commons-codec/ 下载commons-codec-1.12-bin.zip,解 ...
- g6 cavans
{ // 默认模式 default: [ 'dragNode', 'dragEdge', 'dragBlank', 'clickBlankClearActive', 'resizeEdge', 'cl ...
- 前端入门应该掌握的html+css知识点
* 文档流 元素从上自下从左到右排列,即文档流 (所以一个普通的元素前面有一个向右浮动的元素,这个元素不会和这个浮动元素发生重叠,但是如果这个普通元素前面是一个向左浮动的元素,可以看到 元素会和浮动元 ...
- uoj#29. 【IOI2014】Holiday
http://uoj.ac/problem/29 经过的点集一定是一个包含start的区间,为了经过这个区间内所有点,必须先到达一个区间端点,再到达另一个区间端点,剩余的步数则贪心选区间内最大价值的点 ...
- P1033自由落体
传送 杯具wa,惨痛的教训————别写一些情况多到要打表的判断,写着写着就wa了 这个题,我主要死在判断上了 第一遍20分的思路:看小车此时跨越几个整数点.因为我求出了此时小车的车头坐标和车尾坐标.然 ...