- Community Home
- >
- Servers and Operating Systems
- >
- HPE ProLiant
- >
- ProLiant Servers (ML,DL,SL)
- >
- gen9 update from v3 to v4 Intel Xeon Processor
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-23-2021 04:54 AM - last edited on 04-06-2021 02:02 AM by Parvez_Admin
03-23-2021 04:54 AM - last edited on 04-06-2021 02:02 AM by Parvez_Admin
Всем привет!
Необходима помощь с данной статьей https://support.hpe.com/hpesc/public/docDisplay?docId=c04849981 .
Есть ли какой-либо способ (cli в ос, в iLO) либо где можно посмотреть текущую версию ПО по апдейту процессоров? Имеется ввиду, что если сервер готов к апдейту, то версия будет 3.1.3.021, если нет -> меньше.
Необходимо проверить это каким-то способом, отличным от запуска прошивки.
Не подходящая прошивка.
Google Translated
Hello everyone!
Need help with this article https://support.hpe.com/hpesc/public/docDisplay?docId=c04849981.
Is there any way (cli in OS, in iLO) or where can I see the current software version for updating processors? It means that if the server is ready for the update, then the version will be 3.1.3.021, if not -> less.
You need to check this in some way other than running the firmware.
Inappropriate firmware.
# sh /tmp/cpu_update.scexe Flash Engine Version: Linux-1.5.3-13 Name: Intel Xeon Processor Xeon E5-2600 V4 Software Upgrade Online Flash component for Linux - HPE ProLiant Gen9 servers New Version: 3.1.3.021 Current Version: 0003.0000.0006.0267 The software is installed but is not up to date. Do you want to upgrade the software to a newer version (y/n) ?y
Актуальная прошивка:
Current firmware:
# ./CP028985_update_firmware.scexe Flash Engine Version: Linux-1.5.3-13 Name: Intel Xeon Processor Xeon E5-2600 V4 Software Upgrade Online Flash component for Linux - HPE ProLiant Gen9 servers New Version: 3.1.3.021 Current Version: 0003.0001.0003.0021 The software is installed and up to date. The installation does not need to continue, however, you may still install the software. Do you want to install this version (y/n) ?y
Заранее благодарю за ответы!
Thanks in advance for your answers!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2021 07:27 PM
03-26-2021 07:27 PM
Re: gen9 update from v3 to v4 Intel Xeon Processor
Hello,
Your query is not clear, please clear your query.
What you need here or what is the issue in your server.
Please share the server model also.( DL380 Gen9 , ML350 Gen9….etc.)
Привет,
Ваш запрос неясен, пожалуйста, удалите свой запрос.
Что вам здесь нужно или в чем проблема на вашем сервере.
Пожалуйста, поделитесь также моделью сервера (DL380 Gen9, ML350 Gen9…. И т. Д.)
I am a HPE Employee.
[Any personal opinions expressed are mine, and not official statements on behalf of Hewlett Packard Enterprise]
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2021 07:22 AM
03-27-2021 07:22 AM
SolutionThere are several methods available to check for the version of the current ME firmware without running the firmware update Smart Component.
In the iLO GUI, navigate to the "System Information -> Firmware Information -> Firmware" page and reference the "Server Platform Services (SPS) Firmware" entry.
From the CLI in the OS, you could query the iLO via a RIBL script using the "hponcfg" utility (providing the CHIF driver is loaded). For example:
# cat foo.xml
<RIBCL VERSION="2.22">
<LOGIN USER_LOGIN="adminname" PASSWORD="password">
<SERVER_INFO MODE="read">
<GET_EMBEDDED_HEALTH>
<GET_ALL_FIRMWARE_VERSIONS/>
</GET_EMBEDDED_HEALTH>
</SERVER_INFO>
</LOGIN>
</RIBCL>
# hponcfg -f foo.xml
HP Lights-Out Online Configuration utility
Version 5.5.0 Date 5/30/2019 (c) 2005,2019 Hewlett Packard Enterprise Development LP
.
.
.
<INDEX_10>
<FIRMWARE_NAME VALUE = "Server Platform Services (SPS) Firmware"/>
<FIRMWARE_VERSION VALUE = "3.0.6.267.4"/>
</INDEX_10>
.
.
.
You could also find it in the OEM-specific SMBIOS/DMI data, but you have to do a little more work to decode it, for example:
# dmidecode -t 216
.
.
.
Handle 0x0039, DMI type 216, 23 bytes
OEM-specific Type
Header and Data:
D8 17 39 00 09 00 01 00 03 03 00 00 00 06 00 67
02 04 00 00 00 04 00
Strings:
Server Platform Services (SPS) Firmware
.
.
.
- where:
03 00 00 00 06 00 67 02 04 00 = 0003 0000 0006 0267 0004 = 3.0.6.267.4
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-28-2021 05:19 PM
03-28-2021 05:19 PM
Re: gen9 update from v3 to v4 Intel Xeon Processor
Hello,
Again, you did not clear your query.
I am a HPE Employee.
[Any personal opinions expressed are mine, and not official statements on behalf of Hewlett Packard Enterprise]
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-30-2021 06:59 AM
03-30-2021 06:59 AM
Re: gen9 update from v3 to v4 Intel Xeon Processor
It is exactly what I was looking for.
Thank you so much!