Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion tutorials/create-wordpress-instances-cli/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ categories:
- instances
tags: InstantApp WordPress
dates:
validation: 2024-10-15
validation: 2025-04-22
posted: 2021-10-11
---

Expand Down
10 changes: 5 additions & 5 deletions tutorials/foreman-puppet/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
---

Expand Down Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion tutorials/get-started-containers-docker/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ tags: Kubernetes Docker
categories:
- kubernetes
dates:
validation: 2024-10-08
validation: 2025-04-22
posted: 2022-04-07
---

Expand Down
18 changes: 9 additions & 9 deletions tutorials/hadoop/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ tags: Hadoop big-data Ubuntu
categories:
- compute
dates:
validation: 2024-10-08
validation: 2025-04-22
posted: 2018-08-29
---

Expand Down Expand Up @@ -64,41 +64,41 @@ 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.
<Lightbox src="scaleway-apacheDL.webp" alt="" />
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:

<Lightbox src="scaleway-checksumDL.webp" alt="" />
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
Expand Down
4 changes: 2 additions & 2 deletions tutorials/hestiacp/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ content:
tags: HestiaCP control-panel
- instances
dates:
validation: 2024-10-08
validation: 2025-04-22
posted: 2020-07-07
---

Expand Down Expand Up @@ -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:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ categories:
- instances
- postgresql-and-mysql
dates:
validation: 2024-10-08
validation: 2025-04-22
posted: 2019-11-19
---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
---

Expand Down
2 changes: 1 addition & 1 deletion tutorials/pushing-metrics-logs-from-scw-instance/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ categories:
- cockpit
- instances
dates:
validation: 2024-10-15
validation: 2025-04-22
posted: 2023-06-28
---

Expand Down
2 changes: 1 addition & 1 deletion tutorials/python-lists-dicts/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ tags: python loops
categories:
- compute
dates:
validation: 2024-10-08
validation: 2025-04-22
posted: 2023-03-23
---

Expand Down
2 changes: 1 addition & 1 deletion tutorials/send-sms-iot-device-twilio/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
---

Expand Down
2 changes: 1 addition & 1 deletion tutorials/setup-cockroachdb-cluster/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ categories:
- instances
- postgresql-and-mysql
dates:
validation: 2024-10-03
validation: 2025-04-22
posted: 2018-04-10
---

Expand Down
2 changes: 1 addition & 1 deletion tutorials/setup-lamp-stack-ubuntu2204/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
---

Expand Down
2 changes: 1 addition & 1 deletion tutorials/setup-moodle/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ categories:
- instances
hero: assets/scaleway_moodle.webp
dates:
validation: 2024-10-15
validation: 2025-04-22
posted: 2020-06-16
---

Expand Down
2 changes: 1 addition & 1 deletion tutorials/setup-nomad-cluster/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ categories:
- terraform
- instances
dates:
validation: 2024-10-08
validation: 2025-04-22
posted: 2023-03-23
---

Expand Down
2 changes: 1 addition & 1 deletion tutorials/socket-io/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
---

Expand Down
2 changes: 1 addition & 1 deletion tutorials/using-bucket-website-with-mkdocs/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
---

Expand Down