Bug 2064708
| Summary: | kdump: mkdumprd: failed to make kdump initrd for bridge or bond network on z15 z/vm | ||
|---|---|---|---|
| Product: | Red Hat Enterprise Linux 9 | Reporter: | Coiby <coxu> |
| Component: | kexec-tools | Assignee: | Coiby <coxu> |
| Status: | CLOSED ERRATA | QA Contact: | Jie Li <jieli> |
| Severity: | unspecified | Docs Contact: | Sujata Kurup <skurup> |
| Priority: | unspecified | ||
| Version: | 9.1 | CC: | gfialova, ruyang, xiawu |
| Target Milestone: | rc | Keywords: | Triaged |
| Target Release: | --- | Flags: | pm-rhel:
mirror+
|
| Hardware: | s390 | ||
| OS: | Unspecified | ||
| Whiteboard: | |||
| Fixed In Version: | kexec-tools-2.0.25-7.el9 | Doc Type: | Known Issue |
| Doc Text: |
.The `kdump` service fails to build the `initrd` file on IBM Z systems
On the 64-bit IBM Z systems, the `kdump` service fails to load the initial RAM disk (`initrd`) when `znet` related configuration information such as `s390-subchannels` reside in an inactive `NetworkManager` connection profile. Consequently, the `kdump` mechanism fails with the following error:
----
dracut: Failed to set up znet
kdump: mkdumprd: failed to make kdump initrd
----
As a workaround, use one of the following solutions:
* Configure a network bond or bridge by re-using the connection profile that has the `znet` configuration information:
+
----
$ nmcli connection modify enc600 master bond0 slave-type bond
----
* Copy the `znet` configuration information from the inactive connection profile to the active connection profile:
.. Run the `nmcli` command to query the `NetworkManager` connection profiles:
+
----
# nmcli connection show
NAME UUID TYPE Device
bridge-br0 ed391a43-bdea-4170-b8a2 bridge br0
bridge-slave-enc600 caf7f770-1e55-4126-a2f4 ethernet enc600
enc600 bc293b8d-ef1e-45f6-bad1 ethernet --
----
.. Update the active profile with configuration information from the inactive connection:
+
----
#!/bin/bash
inactive_connection=enc600
active_connection=bridge-slave-enc600
for name in nettype subchannels options; do
field=802-3-ethernet.s390-$name
val=$(nmcli --get-values "$field"connection show "$inactive_connection")
nmcli connection modify "$active_connection" "$field" $val"
done
----
.. Restart the `kdump` service for changes to take effect:
+
----
# kdumpctl restart
----
|
Story Points: | --- |
| Clone Of: | Environment: | ||
| Last Closed: | 2023-05-09 08:14:36 UTC | Type: | Bug |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
| Bug Depends On: | 2076416 | ||
| Bug Blocks: | |||
| Deadline: | 2022-12-19 | ||
|
Description
Coiby
2022-03-16 11:53:58 UTC
Since the problem described in this bug report should be resolved in a recent advisory, it has been closed with a resolution of ERRATA. For information on the advisory (kexec-tools bug fix and enhancement update), and where to find the updated files, follow the link below. If the solution does not work for you, open a new bug report. https://access.redhat.com/errata/RHBA-2023:2463 |