Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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`].
Restart the broker's Redpanda service using systemctl to ensure proper ownership and permissions:
Comment thread
paulohtb6 marked this conversation as resolved.
Outdated

[,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 what versions are available and verify your current version:
Comment thread
paulohtb6 marked this conversation as resolved.
Outdated
+
[,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 what versions are available and verify your current version:
Comment thread
paulohtb6 marked this conversation as resolved.
Outdated
+
[,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>
Comment thread
paulohtb6 marked this conversation as resolved.
Outdated
----

====
Expand Down