Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[doc] Change downloads link #25374

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
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
Expand Up @@ -40,13 +40,13 @@ Download YugabyteDB as follows:
1. Download the YugabyteDB package using one of the following `wget` commands:

```sh
wget https://downloads.yugabyte.com/releases/{{< yb-version version="stable">}}/yugabyte-{{< yb-version version="stable" format="build">}}-linux-x86_64.tar.gz
wget https://software.yugabyte.com/releases/{{< yb-version version="stable">}}/yugabyte-{{< yb-version version="stable" format="build">}}-linux-x86_64.tar.gz
```

Or:

```sh
wget https://downloads.yugabyte.com/releases/{{< yb-version version="stable">}}/yugabyte-{{< yb-version version="stable" format="build">}}-el8-aarch64.tar.gz
wget https://software.yugabyte.com/releases/{{< yb-version version="stable">}}/yugabyte-{{< yb-version version="stable" format="build">}}-el8-aarch64.tar.gz
```

1. Extract the package and then change directories to the YugabyteDB home.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -316,8 +316,8 @@ for ip in $ALL_NODES; do \
echo =======$ip=======; \
ssh -i $PEM $ADMIN_USER@$ip \
"cd ~/yb-software; \
curl -k -o yugabyte-${YB_VERSION}-linux.tar.gz \
https://downloads.yugabyte.com/yugabyte-${YB_VERSION}-linux.tar.gz"; \
curl -k -o -L yugabyte-${YB_VERSION}-linux.tar.gz \
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should maybe be:

curl -OL https://software.yugabyte.com/yugabyte-${YB_VERSION}-linux.tar.gz

The -k option means not to check the SSL cert, but we have valid SSL certs.
The -O option means name the downloaded file the same as it is on the remote side which is yugabyte-${YB_VERSION}-linux.tar.gz

https://software.yugabyte.com/yugabyte-${YB_VERSION}-linux.tar.gz"; \
ssh -i $PEM $ADMIN_USER@$ip \
"cd ~/yb-software; \
tar xvfz yugabyte-${YB_VERSION}-linux.tar.gz"; \
Expand Down
2 changes: 1 addition & 1 deletion docs/content/preview/develop/gitdev/codespaces.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ USER root
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive && \
apt-get install -y netcat --no-install-recommends

RUN curl -sSLo ./yugabyte.tar.gz https://downloads.yugabyte.com/yugabyte-${YB_VERSION}-linux.tar.gz \
RUN curl -sSLo ./yugabyte.tar.gz https://software.yugabyte.com/yugabyte-${YB_VERSION}-linux.tar.gz \
&& mkdir yugabyte \
&& tar -xvf yugabyte.tar.gz -C yugabyte --strip-components=1 \
&& mv ./yugabyte /usr/local/ \
Expand Down
2 changes: 1 addition & 1 deletion docs/content/preview/develop/gitdev/gitpod.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ USER root
RUN apt-get update && apt-get install -y \
netcat --no-install-recommends
# download and initialize the file structure
RUN curl -sSLo ./yugabyte.tar.gz https://downloads.yugabyte.com/yugabyte-${YB_VERSION}-linux.tar.gz \
RUN curl -sSLo ./yugabyte.tar.gz https://software.yugabyte.com/yugabyte-${YB_VERSION}-linux.tar.gz \
&& mkdir yugabyte \
&& tar -xvf yugabyte.tar.gz -C yugabyte --strip-components=1 \
&& mv ./yugabyte /usr/local/ \
Expand Down
2 changes: 1 addition & 1 deletion docs/content/preview/manage/upgrade-deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ Install the new version of YugabyteDB in a new directory on every YugabyteDB nod
For example:

```sh
wget https://downloads.yugabyte.com/yugabyte-$NEW_VER.tar.gz
wget https://software.yugabyte.com/yugabyte-$NEW_VER.tar.gz
tar xf yugabyte-$NEW_VER.tar.gz -C /home/yugabyte/softwareyb-$NEW_VER/
cd /home/yugabyte/softwareyb-$NEW_VER/
./bin/post_install.sh
Expand Down
4 changes: 2 additions & 2 deletions docs/content/preview/reference/configuration/yugabyted.md
Original file line number Diff line number Diff line change
Expand Up @@ -679,7 +679,7 @@ Use the `yugabyted start` command to start a one-node YugabyteDB cluster for run

To use encryption in transit, OpenSSL must be installed on the nodes.

If you want to use backup and restore, start the node with `--backup_daemon=true` to initialize the backup and restore agent. You also need to download and extract the [YB Controller release](https://downloads.yugabyte.com/ybc/2.1.0.0-b9/ybc-2.1.0.0-b9-linux-x86_64.tar.gz) to the yugabyte-{{< yb-version version="preview" >}} release directory.
If you want to use backup and restore, start the node with `--backup_daemon=true` to initialize the backup and restore agent. You also need to download and extract the [YB Controller release](https://software.yugabyte.com/ybc/2.1.0.0-b9/ybc-2.1.0.0-b9-linux-x86_64.tar.gz) to the yugabyte-{{< yb-version version="preview" >}} release directory.

#### Syntax

Expand Down Expand Up @@ -761,7 +761,7 @@ For on-premises deployments, consider racks as zones to treat them as fault doma

--backup_daemon *backup-daemon-process*
: Enable or disable the backup daemon with yugabyted start. Default: `false`
: If you start a cluster using the `--backup_daemon` flag, you also need to download and extract the [YB Controller release](https://downloads.yugabyte.com/ybc/2.1.0.0-b9/ybc-2.1.0.0-b9-linux-x86_64.tar.gz) to the yugabyte-{{< yb-version version="preview" >}} release directory.
: If you start a cluster using the `--backup_daemon` flag, you also need to download and extract the [YB Controller release](https://software.yugabyte.com/ybc/2.1.0.0-b9/ybc-2.1.0.0-b9-linux-x86_64.tar.gz) to the yugabyte-{{< yb-version version="preview" >}} release directory.

--enable_pg_parity_early_access *PostgreSQL-compatibilty*
: Enable Enhanced PostgreSQL Compatibility Mode. Default: `false`
Expand Down
8 changes: 4 additions & 4 deletions docs/content/preview/releases/yba-releases/v2.17.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ For an RSS feed of all release series to track the latest product updates, point

**Build:** `2.17.3.0-b152`

<!-- **Third-party licenses:** [YugabyteDB](https://downloads.yugabyte.com/releases/2.17.3.0/yugabytedb-2.17.3.0-b152-third-party-licenses.html), [YugabyteDB Anywhere](https://downloads.yugabyte.com/releases/2.17.3.0/yugabytedb-anywhere-2.17.3.0-b152-third-party-licenses.html) -->
<!-- **Third-party licenses:** [YugabyteDB](https://software.yugabyte.com/releases/2.17.3.0/yugabytedb-2.17.3.0-b152-third-party-licenses.html), [YugabyteDB Anywhere](https://software.yugabyte.com/releases/2.17.3.0/yugabytedb-anywhere-2.17.3.0-b152-third-party-licenses.html) -->

For instructions on downloading and installing YugabyteDB Anywhere, refer to [Install YugabyteDB Anywhere](../../../yugabyte-platform/install-yugabyte-platform/).

Expand Down Expand Up @@ -351,7 +351,7 @@ N/A

**Build:** `2.17.2.0-b216`

<!-- **Third-party licenses:** [YugabyteDB](https://downloads.yugabyte.com/releases/2.17.2.0/yugabytedb-2.17.2.0-b216-third-party-licenses.html), [YugabyteDB Anywhere](https://downloads.yugabyte.com/releases/2.17.2.0/yugabytedb-anywhere-2.17.2.0-b216-third-party-licenses.html) -->
<!-- **Third-party licenses:** [YugabyteDB](https://software.yugabyte.com/releases/2.17.2.0/yugabytedb-2.17.2.0-b216-third-party-licenses.html), [YugabyteDB Anywhere](https://software.yugabyte.com/releases/2.17.2.0/yugabytedb-anywhere-2.17.2.0-b216-third-party-licenses.html) -->

For instructions on downloading and installing YugabyteDB Anywhere, refer to [Install YugabyteDB Anywhere](../../../yugabyte-platform/install-yugabyte-platform/).

Expand Down Expand Up @@ -650,7 +650,7 @@ N/A

**Build:** `2.17.1.0-b439`

<!-- **Third-party licenses:** [YugabyteDB](https://downloads.yugabyte.com/releases/2.17.1.0/yugabytedb-2.17.1.0-b439-third-party-licenses.html), [YugabyteDB Anywhere](https://downloads.yugabyte.com/releases/2.17.1.0/yugabytedb-anywhere-2.17.1.0-b439-third-party-licenses.html) -->
<!-- **Third-party licenses:** [YugabyteDB](https://software.yugabyte.com/releases/2.17.1.0/yugabytedb-2.17.1.0-b439-third-party-licenses.html), [YugabyteDB Anywhere](https://software.yugabyte.com/releases/2.17.1.0/yugabytedb-anywhere-2.17.1.0-b439-third-party-licenses.html) -->

For instructions on downloading and installing YugabyteDB Anywhere, refer to [Install YugabyteDB Anywhere](../../../yugabyte-platform/install-yugabyte-platform/).

Expand Down Expand Up @@ -1088,7 +1088,7 @@ N/A

**Build:** `2.17.0.0-b24`

<!-- **Third-party licenses:** [YugabyteDB](https://downloads.yugabyte.com/releases/2.17.0.0/yugabytedb-2.17.0.0-b24-third-party-licenses.html), [YugabyteDB Anywhere](https://downloads.yugabyte.com/releases/2.17.0.0/yugabytedb-anywhere-2.17.0.0-b24-third-party-licenses.html) -->
<!-- **Third-party licenses:** [YugabyteDB](https://software.yugabyte.com/releases/2.17.0.0/yugabytedb-2.17.0.0-b24-third-party-licenses.html), [YugabyteDB Anywhere](https://software.yugabyte.com/releases/2.17.0.0/yugabytedb-anywhere-2.17.0.0-b24-third-party-licenses.html) -->

For instructions on downloading and installing YugabyteDB Anywhere, refer to [Install YugabyteDB Anywhere](../../../yugabyte-platform/install-yugabyte-platform/).

Expand Down
Loading