From 0ab815bc9027309e2b0abd5ad6f0e553406bb905 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Botond=20D=C3=A9nes?= Date: Thu, 19 Mar 2026 17:13:53 +0200 Subject: [PATCH] Merge 'doc: fix the installation section' from Anna Stuchlik This PR fixes the Installation page: - Replaces `http `with `https `in the download command. - Replaces the Open Source example from the Installation section for CentOS (we overlooked this example before). Fixes https://github.com/scylladb/scylladb/issues/29087 Fixes https://github.com/scylladb/scylladb/issues/29087 This update affects all supported versions and should be backported as a bug fix. Closes scylladb/scylladb#29088 * github.com:scylladb/scylladb: doc: remove the Open Source Example from Installation doc: replace http with https in the installation instructions (cherry picked from commit e8b37d1a89beffa17e172c381a5bf954013f6ce1) Closes scylladb/scylladb#29135 Closes scylladb/scylladb#29192 Closes scylladb/scylladb#29201 --- .../install-scylla/install-on-linux.rst | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/getting-started/install-scylla/install-on-linux.rst b/docs/getting-started/install-scylla/install-on-linux.rst index eeab54c738..de537473cd 100644 --- a/docs/getting-started/install-scylla/install-on-linux.rst +++ b/docs/getting-started/install-scylla/install-on-linux.rst @@ -51,7 +51,7 @@ Install ScyllaDB .. code-block:: console :substitutions: - sudo wget -O /etc/apt/sources.list.d/scylla.list http://downloads.scylladb.com/deb/debian/|UBUNTU_SCYLLADB_LIST| + sudo wget -O /etc/apt/sources.list.d/scylla.list https://downloads.scylladb.com/deb/debian/|UBUNTU_SCYLLADB_LIST| #. Install ScyllaDB packages. @@ -121,7 +121,7 @@ Install ScyllaDB .. code-block:: console :substitutions: - sudo curl -o /etc/yum.repos.d/scylla.repo -L http://downloads.scylladb.com/rpm/centos/|CENTOS_SCYLLADB_REPO| + sudo curl -o /etc/yum.repos.d/scylla.repo -L https://downloads.scylladb.com/rpm/centos/|CENTOS_SCYLLADB_REPO| #. Install ScyllaDB packages. @@ -129,19 +129,19 @@ Install ScyllaDB sudo yum install scylla - Running the command installs the latest official version of ScyllaDB Open Source. - Alternatively, you can to install a specific patch version: + Running the command installs the latest official version of ScyllaDB. + Alternatively, you can install a specific patch version: .. code-block:: console sudo yum install scylla- - Example: The following example shows the command to install ScyllaDB 5.2.3. + Example: The following example shows installing ScyllaDB 2025.3.1. .. code-block:: console :class: hide-copy-button - sudo yum install scylla-5.2.3 + sudo yum install scylla-2025.3.1 .. include:: /getting-started/_common/setup-after-install.rst