Skip to content

Commit

Permalink
doc: update the Web Installer docs to remove OSS
Browse files Browse the repository at this point in the history
  • Loading branch information
annastuchlik authored and denesb committed Jan 29, 2025
1 parent caf598b commit 2a64453
Showing 1 changed file with 31 additions and 25 deletions.
56 changes: 31 additions & 25 deletions docs/getting-started/installation-common/scylla-web-installer.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ScyllaDB Web Installer for Linux

ScyllaDB Web Installer is a platform-agnostic installation script you can run with ``curl`` to install ScyllaDB on Linux.

See `ScyllaDB Download Center <https://www.scylladb.com/download/#core>`_ for information on manually installing ScyllaDB with platform-specific installation packages.
See :doc:`Install ScyllaDB Linux Packages </getting-started/install-scylla/install-on-linux/>` for information on manually installing ScyllaDB with platform-specific installation packages.

Prerequisites
--------------
Expand All @@ -20,44 +20,50 @@ To install ScyllaDB with Web Installer, run:
curl -sSf get.scylladb.com/server | sudo bash
By default, running the script installs the latest official version of ScyllaDB Open Source. You can use the following
options to install a different version or ScyllaDB Enterprise:
By default, running the script installs the latest official version of ScyllaDB.

.. list-table::
:widths: 20 25 55
:header-rows: 1
You can run the command with the ``-h`` or ``--help`` flag to print information about the script.

Installing a Non-default Version
---------------------------------------

* - Option
- Acceptable values
- Description
* - ``--scylla-product``
- ``scylla`` | ``scylla-enterprise``
- Specifies the ScyllaDB product to install: Open Source (``scylla``) or Enterprise (``scylla-enterprise``) The default is ``scylla``.
* - ``--scylla-version``
- ``<version number>``
- Specifies the ScyllaDB version to install. You can specify the major release (``x.y``) to install the latest patch for that version or a specific patch release (``x.y.x``). The default is the latest official version.
You can install a version other than the default.

You can run the command with the ``-h`` or ``--help`` flag to print information about the script.
Versions 2025.1 and Later
==============================

Examples
===========
Run the command with the ``--scylla-version`` option to specify the version
you want to install.

Installing ScyllaDB Open Source 6.0.1:
**Example**

.. code:: console
curl -sSf get.scylladb.com/server | sudo bash -s -- --scylla-version 2025.1.1
curl -sSf get.scylladb.com/server | sudo bash -s -- --scylla-version 6.0.1
Installing the latest patch release for ScyllaDB Open Source 6.0:
Versions Earlier than 2025.1
================================

.. code:: console
To install a supported version of *ScyllaDB Enterprise*, run the command with:

curl -sSf get.scylladb.com/server | sudo bash -s -- --scylla-version 6.0
* ``--scylla-product scylla-enterprise`` to specify that you want to install
ScyllaDB Entrprise.
* ``--scylla-version`` to specify the version you want to install.

Installing ScyllaDB Enterprise 2024.1:
For example:

.. code:: console
curl -sSf get.scylladb.com/server | sudo bash -s -- --scylla-product scylla-enterprise --scylla-version 2024.1
To install a supported version of *ScyllaDB Open Source*, run the command with
the ``--scylla-version`` option to specify the version you want to install.

curl -sSf get.scylladb.com/server | sudo bash -s -- --scylla-product scylla-enterprise --scylla-version 2024.1
For example:

.. code:: console
curl -sSf get.scylladb.com/server | sudo bash -s -- --scylla-version 6.2.1
.. include:: /getting-started/_common/setup-after-install.rst

0 comments on commit 2a64453

Please sign in to comment.