Skip to content

Commit 8318d79

Browse files
authored
Update direct download links (#1190)
* Update direct download links * Update centos to 10 * update amazon and rocky - discontinued * update to hidden * update * alphabetical order
1 parent 88043c7 commit 8318d79

File tree

11 files changed

+64
-48
lines changed

11 files changed

+64
-48
lines changed

pages/getting-started/install-memgraph.mdx

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -64,15 +64,6 @@ installation options and pick the preferred one.
6464
title="Red Hat"
6565
href="/getting-started/install-memgraph/redhat"
6666
/>
67-
<Cards.Card
68-
title="Rocky"
69-
href="/getting-started/install-memgraph/rocky"
70-
71-
/>
72-
<Cards.Card
73-
title="Amazon Linux"
74-
href="/getting-started/install-memgraph/amazon-linux"
75-
/>
7667
<Cards.Card
7768
title="Memgraph Cloud"
7869
href="/getting-started/install-memgraph/memgraph-cloud"
@@ -91,8 +82,19 @@ installation options and pick the preferred one.
9182
title="WSL"
9283
href="/getting-started/install-memgraph/wsl"
9384
/>
85+
<Cards.Card
86+
title="[Discontinued] Rocky"
87+
href="/getting-started/install-memgraph/rocky"
88+
89+
/>
90+
<Cards.Card
91+
title="[Discontinued] Amazon Linux"
92+
href="/getting-started/install-memgraph/amazon-linux"
93+
/>
9494
</Cards>
9595

96+
97+
9698
You don't want to bother with installation? Done!
9799

98100
Register and run a [Memgraph Cloud](https://memgraph.com/cloud) instance with a

pages/getting-started/install-memgraph/_meta.ts

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,15 @@ export default {
44
"ubuntu": "Ubuntu",
55
"centos": "CentOS",
66
"fedora": "Fedora",
7-
"rocky": "Rocky",
7+
"rocky": {
8+
title: "Rocky",
9+
display: "hidden"
10+
},
811
"redhat": "Red Hat",
9-
"amazon-linux": "Amazon Linux",
12+
"amazon-linux": {
13+
title: "Amazon Linux",
14+
display: "hidden"
15+
},
1016
"memgraph-cloud": "Memgraph Cloud",
1117
"docker-compose": "Docker Compose",
1218
"kubernetes": "Kubernetes",

pages/getting-started/install-memgraph/amazon-linux.mdx

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,13 @@ import CodeSnippet from '/components/code-snippet/CodeSnippet'
99

1010
# Install Memgraph on Amazon Linux from RPM package
1111

12+
<Callout type="warning">
13+
The last released Memgraph RPM package for Amazon Linux was for version 2.17.0. If you
14+
require a package for a newer version, please [open an
15+
issue](https://github.com/memgraph/memgraph/issues) on the Memgraph GitHub
16+
repository.
17+
</Callout>
18+
1219
Install and run Memgraph from a RPM package on:
1320
- **Amazon Linux 2**
1421

@@ -34,7 +41,7 @@ latest Memgraph packages.
3441

3542
For example, for Amazon Linux 2:
3643

37-
<CodeSnippet code="sudo wget https://download.memgraph.com/memgraph/v3.0.0/amzn-2/memgraph-3.0.0_1-1.x86_64.rpm" page="install-memgraph/amazon-linux" os="amazon-linux"/>
44+
<CodeSnippet code="sudo wget https://download.memgraph.com/memgraph/v2.17.0/amzn-2/memgraph-2.17.0_1-1.x86_64.rpm" page="install-memgraph/amazon-linux" os="amazon-linux"/>
3845

3946
<Callout>
4047

@@ -50,7 +57,7 @@ After downloading the Memgraph RPM package, you can install it by issuing the
5057
following command:
5158

5259
```
53-
sudo yum install ./memgraph-3.0.0_1-1.x86_64.rpm
60+
sudo yum install ./memgraph-2.17.0_1-1.x86_64.rpm
5461
```
5562

5663
If you run into any troubles while installing Memgraph, contact us on
@@ -170,5 +177,4 @@ different, but the goal is the same.
170177
The Memgraph configuration is available in `/etc/memgraph/memgraph.conf`. If the
171178
configuration file is altered, Memgraph needs to be restarted. Check all the
172179
configuration options in the [configuration
173-
settings](/database-management/configuration).
174-
180+
settings](/database-management/configuration).

pages/getting-started/install-memgraph/centos.mdx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import CodeSnippet from '/components/code-snippet/CodeSnippet'
1111

1212
Install and run Memgraph from a RPM package on:
1313
- **CentOS 9**
14+
- **CentOS 10**
1415

1516
<Callout type="warning">
1617
Newer versions of Memgraph might not be backward
@@ -31,10 +32,10 @@ You can also use [direct download
3132
links](/getting-started/install-memgraph/direct-download-links) to get the
3233
latest Memgraph packages.
3334

34-
For example, for CentOS 9:
35+
For example, for CentOS 10:
3536

3637
<CodeSnippet
37-
code="sudo wget https://download.memgraph.com/memgraph/v3.0.0/centos-9/memgraph-3.0.0_1-1.x86_64.rpm"
38+
code="sudo wget https://download.memgraph.com/memgraph/v3.1.0/centos-10/memgraph-3.1.0_1-1.x86_64.rpm"
3839
page="install-memgraph/centos" os="centos"/>
3940

4041
<Callout>

pages/getting-started/install-memgraph/debian.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ latest Memgraph packages.
3232

3333
For example, for Debian 12:
3434

35-
<CodeSnippet code="sudo wget https://download.memgraph.com/memgraph/v3.0.0/debian-12/memgraph_3.0.0-1_amd64.deb" page="install-memgraph/debian" os="debian"/>
35+
<CodeSnippet code="sudo wget https://download.memgraph.com/memgraph/v3.1.0/debian-12/memgraph_3.1.0-1_amd64.deb" page="install-memgraph/debian" os="debian"/>
3636

3737
<Callout>
3838

pages/getting-started/install-memgraph/direct-download-links.mdx

Lines changed: 14 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -11,35 +11,31 @@ Download Hub](https://memgraph.com/download/). If you need direct links for the
1111
latest version of Memgraph database, take a look at the list below.
1212

1313
## Docker
14-
- [https://download.memgraph.com/memgraph/v3.0.0/docker/memgraph-3.0.0-docker.tar.gz](https://download.memgraph.com/memgraph/v3.0.0/docker/memgraph-3.0.0-docker.tar.gz)
15-
- [https://download.memgraph.com/memgraph/v3.0.0/docker-aarch64/memgraph-3.0.0-docker.tar.gz](https://download.memgraph.com/memgraph/v3.0.0/docker-aarch64/memgraph-3.0.0-docker.tar.gz)
14+
- [https://download.memgraph.com/memgraph/v3.1.0/docker/memgraph-3.1.0-docker.tar.gz](https://download.memgraph.com/memgraph/v3.1.0/docker/memgraph-3.1.0-docker.tar.gz)
15+
- [https://download.memgraph.com/memgraph/v3.1.0/docker-aarch64/memgraph-3.1.0-docker.tar.gz](https://download.memgraph.com/memgraph/v3.1.0/docker-aarch64/memgraph-3.1.0-docker.tar.gz)
1616

1717
## Linux
1818

1919
Memgraph can be run on the Linux distributions listed below.
2020

2121
### CentOS
22-
- [https://download.memgraph.com/memgraph/v3.0.0/centos-9/memgraph-3.0.0_1-1.x86_64.rpm](https://download.memgraph.com/memgraph/v3.0.0/centos-9/memgraph-3.0.0_1-1.x86_64.rpm)
22+
- [https://download.memgraph.com/memgraph/v3.1.0/centos-9/memgraph-3.1.0_1-1.x86_64.rpm](https://download.memgraph.com/memgraph/v3.1.0/centos-9/memgraph-3.1.0_1-1.x86_64.rpm)
23+
- [https://download.memgraph.com/memgraph/v3.1.0/centos-10/memgraph-3.1.0_1-1.x86_64.rpm](https://download.memgraph.com/memgraph/v3.1.0/centos-10/memgraph-3.1.0_1-1.x86_64.rpm)
2324

2425
### Debian
25-
- [https://download.memgraph.com/memgraph/v3.0.0/debian-11/memgraph_3.0.0-1_amd64.deb](https://download.memgraph.com/memgraph/v3.0.0/debian-11/memgraph_3.0.0-1_amd64.deb)
26-
- [https://download.memgraph.com/memgraph/v3.0.0/debian-11-aarch64/memgraph_3.0.0-1_arm64.deb](https://download.memgraph.com/memgraph/v3.0.0/debian-11-aarch64/memgraph_3.0.0-1_arm64.deb)
27-
- [https://download.memgraph.com/memgraph/v3.0.0/debian-12/memgraph_3.0.0-1_amd64.deb](https://download.memgraph.com/memgraph/v3.0.0/debian-12/memgraph_3.0.0-1_amd64.deb)
28-
- [https://download.memgraph.com/memgraph/v3.0.0/debian-12-aarch64/memgraph_3.0.0-1_arm64.deb](https://download.memgraph.com/memgraph/v3.0.0/debian-12-aarch64/memgraph_3.0.0-1_arm64.deb)
26+
- [https://download.memgraph.com/memgraph/v3.1.0/debian-11/memgraph_3.1.0-1_amd64.deb](https://download.memgraph.com/memgraph/v3.1.0/debian-11/memgraph_3.1.0-1_amd64.deb)
27+
- [https://download.memgraph.com/memgraph/v3.1.0/debian-11-aarch64/memgraph_3.1.0-1_arm64.deb](https://download.memgraph.com/memgraph/v3.1.0/debian-11-aarch64/memgraph_3.1.0-1_arm64.deb)
28+
- [https://download.memgraph.com/memgraph/v3.1.0/debian-12/memgraph_3.1.0-1_amd64.deb](https://download.memgraph.com/memgraph/v3.1.0/debian-12/memgraph_3.1.0-1_amd64.deb)
29+
- [https://download.memgraph.com/memgraph/v3.1.0/debian-12-aarch64/memgraph_3.1.0-1_arm64.deb](https://download.memgraph.com/memgraph/v3.1.0/debian-12-aarch64/memgraph_3.1.0-1_arm64.deb)
2930

3031
### Fedora
31-
- [https://download.memgraph.com/memgraph/v3.0.0/fedora-38/memgraph-3.0.0_1-1.x86_64.rpm](https://download.memgraph.com/memgraph/v3.0.0/fedora-38/memgraph-3.0.0_1-1.x86_64.rpm)
32-
- [https://download.memgraph.com/memgraph/v3.0.0/fedora-39/memgraph-3.0.0_1-1.x86_64.rpm](https://download.memgraph.com/memgraph/v3.0.0/fedora-39/memgraph-3.0.0_1-1.x86_64.rpm)
32+
- [https://download.memgraph.com/memgraph/v3.1.0/fedora-41/memgraph-3.1.0_1-1.x86_64.rpm](https://download.memgraph.com/memgraph/v3.1.0/fedora-41/memgraph-3.1.0_1-1.x86_64.rpm)
3333

3434
### Red Hat
35-
- [https://download.memgraph.com/memgraph/v3.0.0/centos-9/memgraph-3.0.0_1-1.x86_64.rpm](https://download.memgraph.com/memgraph/v3.0.0/centos-9/memgraph-3.0.0_1-1.x86_64.rpm)
36-
37-
### Rocky
38-
- [https://download.memgraph.com/memgraph/v3.0.0/rocky-9.3/memgraph-3.0.0_1-1.x86_64.rpm](https://download.memgraph.com/memgraph/v3.0.0/rocky-9.3/memgraph-3.0.0_1-1.x86_64.rpm)
35+
- [https://download.memgraph.com/memgraph/v3.1.0/centos-9/memgraph-3.1.0_1-1.x86_64.rpm](https://download.memgraph.com/memgraph/v3.1.0/centos-9/memgraph-3.1.0_1-1.x86_64.rpm)
3936

4037
### Ubuntu
41-
- [https://download.memgraph.com/memgraph/v3.0.0/ubuntu-20.04/memgraph_3.0.0-1_amd64.deb](https://download.memgraph.com/memgraph/v3.0.0/ubuntu-20.04/memgraph_3.0.0-1_amd64.deb)
42-
- [https://download.memgraph.com/memgraph/v3.0.0/ubuntu-22.04/memgraph_3.0.0-1_amd64.deb](https://download.memgraph.com/memgraph/v3.0.0/ubuntu-22.04/memgraph_3.0.0-1_amd64.deb)
43-
- [https://download.memgraph.com/memgraph/v3.0.0/ubuntu-22.04-aarch64/memgraph_3.0.0-1_arm64.deb](https://download.memgraph.com/memgraph/v3.0.0/ubuntu-22.04-aarch64/memgraph_3.0.0-1_arm64.deb)
44-
- [https://download.memgraph.com/memgraph/v3.0.0/ubuntu-24.04/memgraph_3.0.0-1_amd64.deb](https://download.memgraph.com/memgraph/v3.0.0/ubuntu-24.04/memgraph_3.0.0-1_amd64.deb)
45-
- [https://download.memgraph.com/memgraph/v3.0.0/ubuntu-24.04-aarch64/memgraph_3.0.0-1_arm64.deb](https://download.memgraph.com/memgraph/v3.0.0/ubuntu-24.04-aarch64/memgraph_3.0.0-1_arm64.deb)
38+
- [https://download.memgraph.com/memgraph/v3.1.0/ubuntu-22.04/memgraph_3.1.0-1_amd64.deb](https://download.memgraph.com/memgraph/v3.1.0/ubuntu-22.04/memgraph_3.1.0-1_amd64.deb)
39+
- [https://download.memgraph.com/memgraph/v3.1.0/ubuntu-24.04/memgraph_3.1.0-1_amd64.deb](https://download.memgraph.com/memgraph/v3.1.0/ubuntu-24.04/memgraph_3.1.0-1_amd64.deb)
40+
- [https://download.memgraph.com/memgraph/v3.1.0/ubuntu-24.04-aarch64/memgraph_3.1.0-1_arm64.deb](https://download.memgraph.com/memgraph/v3.1.0/ubuntu-24.04-aarch64/memgraph_3.1.0-1_arm64.deb)
41+

pages/getting-started/install-memgraph/docker.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ libraries](/client-libraries) and follow their getting started guide.
161161

162162
If you've downloaded the Memgraph Docker image directly from the [Memgraph
163163
download hub](https://memgraph.com/download), you'll receive a file named
164-
similar to `memgraph-3.0.0-docker.tar.gz` (the exact file name varies based on
164+
similar to `memgraph-3.1.0-docker.tar.gz` (the exact file name varies based on
165165
the version you've downloaded).
166166

167167
To load this image into Docker, do the following:
@@ -175,7 +175,7 @@ Use the `docker load` command to load the
175175
image into Docker:
176176

177177
```terminal
178-
docker load -i memgraph-3.0.0-docker.tar.gz
178+
docker load -i memgraph-3.1.0-docker.tar.gz
179179
```
180180

181181
{<h3 className="custom-header">Run the Memgraph image</h3>}

pages/getting-started/install-memgraph/fedora.mdx

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ import CodeSnippet from '/components/code-snippet/CodeSnippet'
1010
# Install Memgraph on Fedora from RPM package
1111

1212
Install and run Memgraph from a RPM package on:
13-
- **Fedora 38**
14-
- **Fedora 39**
13+
- **Fedora 41**
1514

1615
<Callout type="warning">
1716
Newer versions of Memgraph might not be backward
@@ -35,7 +34,7 @@ latest Memgraph packages.
3534

3635
For example, for Fedora 39:
3736

38-
<CodeSnippet code="sudo wget https://download.memgraph.com/memgraph/v3.0.0/fedora-39/memgraph-3.0.0_1-1.x86_64.rpm" page="install-memgraph/fedora" os="fedora"/>
37+
<CodeSnippet code="sudo wget https://download.memgraph.com/memgraph/v3.1.0/fedora-41/memgraph-3.1.0_1-1.x86_64.rpm" page="install-memgraph/fedora" os="fedora"/>
3938

4039
<Callout>
4140

@@ -51,7 +50,7 @@ After downloading the Memgraph RPM package, you can install it by issuing the
5150
following command:
5251

5352
``` console
54-
sudo dnf install -y ./memgraph-3.0.0_1-1.x86_64.rpm
53+
sudo dnf install -y ./memgraph-3.1.0_1-1.x86_64.rpm
5554
```
5655

5756
If you run into any troubles while installing Memgraph, contact us on

pages/getting-started/install-memgraph/redhat.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ When deploying Memgraph with high availability (HA), consider checking out this
3232

3333
{<h3 className="custom-header">Download Memgraph RPM Red Hat (CentOS) package</h3>}
3434

35-
Depending on the Red Hat version you are using, you should download the corresponding CentOS based RPM package. Memgraph provides RPM packages for CentOS 9.
35+
Depending on the Red Hat version you are using, you should download the corresponding CentOS based RPM package. Memgraph provides RPM packages for CentOS 9 and CentOS 10.
3636
There are no specifically built Red Hat packages.
3737

3838
Downloaded the latest Memgraph RPM CentOS package from the [Memgraph Download
@@ -44,7 +44,7 @@ latest Memgraph packages.
4444

4545
For example, for Red Hat 9:
4646

47-
<CodeSnippet code="sudo wget https://download.memgraph.com/memgraph/v3.0.0/centos-9/memgraph-3.0.0_1-1.x86_64.rpm" page="install-memgraph/redhat" os="redhat"/>
47+
<CodeSnippet code="sudo wget https://download.memgraph.com/memgraph/v3.1.0/centos-9/memgraph-3.1.0_1-1.x86_64.rpm" page="install-memgraph/redhat" os="redhat"/>
4848

4949

5050

@@ -63,7 +63,7 @@ After downloading the Memgraph RPM package, you can install it by issuing the
6363
following command:
6464

6565
``` console
66-
sudo dnf install -y ./memgraph-3.0.0_1-1.x86_64.rpm
66+
sudo dnf install -y ./memgraph-3.1.0_1-1.x86_64.rpm
6767
```
6868

6969
If you run into any troubles while installing Memgraph, contact us on

pages/getting-started/install-memgraph/rocky.mdx

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,13 @@ import CodeSnippet from '/components/code-snippet/CodeSnippet'
99

1010
# Install Memgraph on Rocky from RPM package
1111

12+
<Callout type="warning">
13+
The last released Memgraph RPM package for Rocky was for version 3.0.0. If you
14+
require a package for a newer version, please [open an
15+
issue](https://github.com/memgraph/memgraph/issues) on the Memgraph GitHub
16+
repository.
17+
</Callout>
18+
1219
Install and run Memgraph from a RPM package on:
1320
- **Rocky 9.3**
1421

@@ -169,5 +176,4 @@ different, but the goal is the same.
169176
The Memgraph configuration is available in `/etc/memgraph/memgraph.conf`. If the
170177
configuration file is altered, Memgraph needs to be restarted. Check all the
171178
configuration options in the [configuration
172-
settings](/database-management/configuration).
173-
179+
settings](/database-management/configuration).

0 commit comments

Comments
 (0)