diff --git a/tutorials/create-wordpress-instances-cli/index.mdx b/tutorials/create-wordpress-instances-cli/index.mdx
index 3a7bc11daf..b1103fb239 100644
--- a/tutorials/create-wordpress-instances-cli/index.mdx
+++ b/tutorials/create-wordpress-instances-cli/index.mdx
@@ -9,7 +9,7 @@ categories:
- instances
tags: InstantApp WordPress
dates:
- validation: 2024-10-15
+ validation: 2025-04-22
posted: 2021-10-11
---
diff --git a/tutorials/foreman-puppet/index.mdx b/tutorials/foreman-puppet/index.mdx
index 45b6b8f2aa..eca30571ba 100644
--- a/tutorials/foreman-puppet/index.mdx
+++ b/tutorials/foreman-puppet/index.mdx
@@ -9,7 +9,7 @@ tags: Foreman puppet Ubuntu Jammy Jellyfish
categories:
- instances
dates:
- validation: 2024-10-15
+ validation: 2025-04-22
posted: 2018-08-06
---
@@ -83,15 +83,15 @@ The fastest way to install Foreman is by using the installer, which installs and
1. Install Puppet 6.x from the Puppetlabs repository as follows:
```
apt-get -y install ca-certificates
- wget https://apt.puppetlabs.com/puppet7-release-focal.deb
- sudo dpkg -i puppet7-release-focal.deb
+ wget https://apt.puppetlabs.com/puppet8-release-focal.deb
+ sudo dpkg -i puppet8-release-focal.deb
apt-get update
apt-get -y install puppet-agent
```
2. Add the Foreman repository to the [APT package manager sources list](https://en.wikipedia.org/wiki/APT_(Debian)):
```
- echo "deb http://deb.theforeman.org/ focal 3.7" | sudo tee /etc/apt/sources.list.d/foreman.list
- echo "deb http://deb.theforeman.org/ plugins 3.7" | sudo tee -a /etc/apt/sources.list.d/foreman.list
+ echo "deb http://deb.theforeman.org/ focal 3.12" | sudo tee /etc/apt/sources.list.d/foreman.list
+ echo "deb http://deb.theforeman.org/ plugins 3.12" | sudo tee -a /etc/apt/sources.list.d/foreman.list
wget -q https://deb.theforeman.org/pubkey.gpg -O- | sudo apt-key add -
```
3. Download the installer via APT:
diff --git a/tutorials/get-started-containers-docker/index.mdx b/tutorials/get-started-containers-docker/index.mdx
index f4c3695b39..61c109a5bd 100644
--- a/tutorials/get-started-containers-docker/index.mdx
+++ b/tutorials/get-started-containers-docker/index.mdx
@@ -9,7 +9,7 @@ tags: Kubernetes Docker
categories:
- kubernetes
dates:
- validation: 2024-10-08
+ validation: 2025-04-22
posted: 2022-04-07
---
diff --git a/tutorials/hadoop/index.mdx b/tutorials/hadoop/index.mdx
index 74556608fb..06bd4e8870 100644
--- a/tutorials/hadoop/index.mdx
+++ b/tutorials/hadoop/index.mdx
@@ -9,7 +9,7 @@ tags: Hadoop big-data Ubuntu
categories:
- compute
dates:
- validation: 2024-10-08
+ validation: 2025-04-22
posted: 2018-08-29
---
@@ -64,12 +64,12 @@ For more information, refer to the [official Apache Hadoop documentation.](http:
## Installing Hadoop in standalone mode
-1. Visit the [Apache Hadoop Releases page](http://hadoop.apache.org/releases.html) to select the most recent stable release. We will install Hadoop version 3.4.0.
+1. Visit the [Apache Hadoop Releases page](http://hadoop.apache.org/releases.html) to select the most recent stable release. We will install Hadoop version 3.4.1.
2. Copy the link to the release binary.
3. Use `wget` to fetch it:
```
- wget https://dlcdn.apache.org/hadoop/common/hadoop-3.4.0/hadoop-3.4.0.tar.gz
+ wget https://dlcdn.apache.org/hadoop/common/hadoop-3.4.1/hadoop-3.4.1.tar.gz
```
To make sure that the file we downloaded has not been altered, we'll do a quick check using [SHA-256](https://en.wikipedia.org/wiki/SHA-2). Return to the releases page, then click and copy the link to the checksum file for the release binary you downloaded:
@@ -77,28 +77,28 @@ For more information, refer to the [official Apache Hadoop documentation.](http:
4. Copy the link displayed in the browser and use `wget` on our server to download the file.
```
- wget https://dlcdn.apache.org/hadoop/common/hadoop-3.4.0/hadoop-3.4.0.tar.gz.sha512
+ wget https://dlcdn.apache.org/hadoop/common/hadoop-3.4.1/hadoop-3.4.1.tar.gz.sha512
```
5. Run the following verification:
```
- shasum -a 512 hadoop-3.4.0.tar.gz
+ shasum -a 512 hadoop-3.4.1.tar.gz
```
```
- 6f653c0109f97430047bd3677c50da7c8a2809d153b231794cf980b3208a6b4beff8ff1a03a01094299d459a3a37a3fe16731629987165d71f328657dbf2f24c hadoop-3.4.0.tar.gz
+ 6f653c0109f97430047bd3677c50da7c8a2809d153b231794cf980b3208a6b4beff8ff1a03a01094299d459a3a37a3fe16731629987165d71f328657dbf2f24c hadoop-3.4.1.tar.gz
```
6. Compare this value with the SHA-256 value in the .mds file:
```
- cat hadoop-3.4.0.tar.gz.sha512
+ cat hadoop-3.4.1.tar.gz.sha512
```
The output of the command we ran against the file we downloaded from the mirror should match the value in the file we downloaded from `apache.org.`.
7. Use the tar command with the `-x` flag to extract, `-z` to uncompress, `-v` for verbose output, and `-f` to specify that we are extracting from a file.
```
- tar -xzvf hadoop-3.4.0.tar.gz
+ tar -xzvf hadoop-3.4.1.tar.gz
```
8. Move the extracted files into `/usr/local`. Change the version number to match the version you downloaded.
```
- mv hadoop-3.4.0 /usr/local/hadoop
+ mv hadoop-3.4.1 /usr/local/hadoop
```
## Configuring Hadoop's Java home
diff --git a/tutorials/hestiacp/index.mdx b/tutorials/hestiacp/index.mdx
index 03d41c6b91..8e84ee2330 100644
--- a/tutorials/hestiacp/index.mdx
+++ b/tutorials/hestiacp/index.mdx
@@ -8,7 +8,7 @@ content:
tags: HestiaCP control-panel
- instances
dates:
- validation: 2024-10-08
+ validation: 2025-04-22
posted: 2020-07-07
---
@@ -57,7 +57,7 @@ In this tutorial, you will learn how to install and configure HestiaCP on Ubuntu
|_| |_|\___||___/\__|_|\__,_|\____|_|
Hestia Control Panel
- v1.8.12
+ v1.9.3
====================================================================
The following server components will be installed on your system:
diff --git a/tutorials/migrate-mysql-databases-postgresql-pgloader/index.mdx b/tutorials/migrate-mysql-databases-postgresql-pgloader/index.mdx
index 0177ffc3d7..374689fe8c 100644
--- a/tutorials/migrate-mysql-databases-postgresql-pgloader/index.mdx
+++ b/tutorials/migrate-mysql-databases-postgresql-pgloader/index.mdx
@@ -10,7 +10,7 @@ categories:
- instances
- postgresql-and-mysql
dates:
- validation: 2024-10-08
+ validation: 2025-04-22
posted: 2019-11-19
---
diff --git a/tutorials/processing-images-structured-outputs-pixtral/index.mdx b/tutorials/processing-images-structured-outputs-pixtral/index.mdx
index 3d6442cc88..2539cf32d4 100644
--- a/tutorials/processing-images-structured-outputs-pixtral/index.mdx
+++ b/tutorials/processing-images-structured-outputs-pixtral/index.mdx
@@ -11,7 +11,7 @@ categories:
- generative-apis
hero: assets/Pixtral-Structured-Outputs.webp
dates:
- validation: 2024-10-09
+ validation: 2025-04-22
posted: 2024-10-09
---
diff --git a/tutorials/pushing-metrics-logs-from-scw-instance/index.mdx b/tutorials/pushing-metrics-logs-from-scw-instance/index.mdx
index 12edc8eb2f..8b75627292 100644
--- a/tutorials/pushing-metrics-logs-from-scw-instance/index.mdx
+++ b/tutorials/pushing-metrics-logs-from-scw-instance/index.mdx
@@ -10,7 +10,7 @@ categories:
- cockpit
- instances
dates:
- validation: 2024-10-15
+ validation: 2025-04-22
posted: 2023-06-28
---
diff --git a/tutorials/python-lists-dicts/index.mdx b/tutorials/python-lists-dicts/index.mdx
index 498692b1cb..cea640e372 100644
--- a/tutorials/python-lists-dicts/index.mdx
+++ b/tutorials/python-lists-dicts/index.mdx
@@ -9,7 +9,7 @@ tags: python loops
categories:
- compute
dates:
- validation: 2024-10-08
+ validation: 2025-04-22
posted: 2023-03-23
---
diff --git a/tutorials/send-sms-iot-device-twilio/index.mdx b/tutorials/send-sms-iot-device-twilio/index.mdx
index 8bbef4ddac..780f38d461 100644
--- a/tutorials/send-sms-iot-device-twilio/index.mdx
+++ b/tutorials/send-sms-iot-device-twilio/index.mdx
@@ -9,7 +9,7 @@ categories:
- iot-hub
tags: IoT-Hub iot Serverless SMS Twilio
dates:
- validation: 2024-10-08
+ validation: 2025-04-22
posted: 2020-10-13
---
diff --git a/tutorials/setup-cockroachdb-cluster/index.mdx b/tutorials/setup-cockroachdb-cluster/index.mdx
index e79a235247..8a4b231f20 100644
--- a/tutorials/setup-cockroachdb-cluster/index.mdx
+++ b/tutorials/setup-cockroachdb-cluster/index.mdx
@@ -10,7 +10,7 @@ categories:
- instances
- postgresql-and-mysql
dates:
- validation: 2024-10-03
+ validation: 2025-04-22
posted: 2018-04-10
---
diff --git a/tutorials/setup-lamp-stack-ubuntu2204/index.mdx b/tutorials/setup-lamp-stack-ubuntu2204/index.mdx
index ede0084497..6c6e7ee583 100644
--- a/tutorials/setup-lamp-stack-ubuntu2204/index.mdx
+++ b/tutorials/setup-lamp-stack-ubuntu2204/index.mdx
@@ -9,7 +9,7 @@ tags: LAMP Ubuntu PHP Apache MySQL Linux
categories:
- instances
dates:
- validation: 2024-10-15
+ validation: 2025-04-22
posted: 2022-04-28
---
diff --git a/tutorials/setup-moodle/index.mdx b/tutorials/setup-moodle/index.mdx
index c76b30e672..0ed592c4b1 100644
--- a/tutorials/setup-moodle/index.mdx
+++ b/tutorials/setup-moodle/index.mdx
@@ -10,7 +10,7 @@ categories:
- instances
hero: assets/scaleway_moodle.webp
dates:
- validation: 2024-10-15
+ validation: 2025-04-22
posted: 2020-06-16
---
diff --git a/tutorials/setup-nomad-cluster/index.mdx b/tutorials/setup-nomad-cluster/index.mdx
index a1ad4da6a4..546daa3d0a 100644
--- a/tutorials/setup-nomad-cluster/index.mdx
+++ b/tutorials/setup-nomad-cluster/index.mdx
@@ -11,7 +11,7 @@ categories:
- terraform
- instances
dates:
- validation: 2024-10-08
+ validation: 2025-04-22
posted: 2023-03-23
---
diff --git a/tutorials/socket-io/index.mdx b/tutorials/socket-io/index.mdx
index fca5669de2..06ce6d5b62 100644
--- a/tutorials/socket-io/index.mdx
+++ b/tutorials/socket-io/index.mdx
@@ -9,7 +9,7 @@ tags: Socket-io npm socket javascript node-js
categories:
- instances
dates:
- validation: 2024-10-15
+ validation: 2025-04-22
posted: 2018-07-05
---
diff --git a/tutorials/using-bucket-website-with-mkdocs/index.mdx b/tutorials/using-bucket-website-with-mkdocs/index.mdx
index d4f334e848..c281cb5426 100644
--- a/tutorials/using-bucket-website-with-mkdocs/index.mdx
+++ b/tutorials/using-bucket-website-with-mkdocs/index.mdx
@@ -9,7 +9,7 @@ categories:
- object-storage
tags: documentation-website bucket-website material-for-mkdocs object-storage website
dates:
- validation: 2024-10-07
+ validation: 2025-04-22
posted: 2024-10-07
---