Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
=== Restart the broker

Restart the broker's Redpanda service with xref:reference:rpk/rpk-redpanda/rpk-redpanda-stop.adoc[`rpk redpanda stop`], then xref:reference:rpk/rpk-redpanda/rpk-redpanda-start.adoc[`rpk redpanda start`].
To ensure proper ownership and permissions, restart the broker's Redpanda service using `systemctl`:

[,bash]
----
sudo systemctl restart redpanda
----
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,43 @@ For Linux distributions, the process changes according to the distribution:
====
Fedora/RedHat::
+
In the terminal, run:
First, check which versions are available and verify your current version:
+
[,bash]
----
sudo yum update redpanda
# List available versions
yum list --showduplicates redpanda

# Check current version
rpk redpanda admin brokers list
----
+
Install the specific version you want to upgrade to. Replace `<version>` with the desired version:
+
[,bash]
----
sudo yum update redpanda-<version> # example: redpanda-25.1.7-1
----

Debian/Ubuntu::
+
In the terminal, run:
First, check which versions are available and verify your current version:
+
[,bash]
----
# List available versions
apt list --all-versions redpanda

# Check current version
rpk redpanda admin brokers list
----
+
Install the specific version you want to upgrade to. Replace `<version>` with the desired version (for example, `25.1.7-1`):
+
[,bash]
----
sudo apt update
sudo apt install redpanda
sudo apt install redpanda=<version> # example: redpanda-25.1.7-1
----

====
Expand Down