Skip to content

Commit 4e71aa4

Browse files
committed
feat(ddx): update docs idrac
1 parent 298e7e4 commit 4e71aa4

File tree

4 files changed

+77
-12
lines changed

4 files changed

+77
-12
lines changed

pages/dedibox-kvm-over-ip/how-to/dell-idrac6.mdx

Lines changed: 73 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,19 @@ content:
77
paragraph: This page explains how to use the KVM DELL iDRAC 6 on a Scaleway Dedibox
88
tags: dedibox kvm idrac
99
dates:
10-
validation: 2024-08-19
10+
validation: 2025-02-25
1111
posted: 2021-07-16
1212
categories:
1313
- dedibox-servers
1414
---
15-
1615
This page shows you how to use [KVM](/dedibox-kvm-over-ip/concepts/#kvm-over-ip) on a Dedibox with DELL iDRAC 6.
1716

1817
<Macro id="requirements" />
1918

2019
- A Dedibox account logged into the [console](https://console.online.net)
20+
- Installed [Podman](https://podman.io/getting-started/installation) on your machine
2121
- Installed [Java](https://www.java.com/en/download/help/download_options.html) on your local computer
22-
- A Dedibox server with a [Dell iDRAC 6](https://www.dell.com/support/kbdoc/en-us/000123577/set-up-and-manage-idrac-6-lifecycle-controller-for-dell-poweredge-11g-servers) KVM-over-IP device
22+
- A Dedibox server with a Dell iDRAC 6 IPMI interface
2323

2424
## Creating an iDRAC 6 session
2525

@@ -35,7 +35,68 @@ This page shows you how to use [KVM](/dedibox-kvm-over-ip/concepts/#kvm-over-ip)
3535

3636
The connection URL and your credentials display. Click on the link to access the iDRAC interface.
3737

38-
## Accessing the KVM-over-IP device
38+
39+
## Accessing the KVM-over-IP device using Podman
40+
41+
You can use Docker to access the KVM-over-IP device of your Dedibox.
42+
43+
### Installation
44+
45+
- On **macOS** run the following command to install Podman:
46+
```bash
47+
brew install podman
48+
```
49+
- On **Ubuntu** run the following commands to install Podman:
50+
```bash
51+
# Ubuntu 20.10 and newer
52+
sudo apt-get update
53+
sudo apt-get -y install podman
54+
```
55+
- On **Windows** you can install Podman using the [official installer](https://github.com/containers/podman-desktop/releases).
56+
57+
### Configuration
58+
59+
1. Create (once) a virtual machine:
60+
```bash
61+
podman machine init
62+
```
63+
64+
2. Run it with:
65+
```bash
66+
podman machine start
67+
```
68+
69+
3. When you have finished, run:
70+
```bash
71+
podman container stop -a ; podman container rm -a
72+
```
73+
to delete old sessions. You can also run this command if you won't need the virtual machine:
74+
```bash
75+
podman machine stop
76+
```
77+
78+
### Pull repository
79+
80+
Pull the [iDRAC 6 dockerized](https://hub.docker.com/r/domistyle/idrac6/) Docker repository:
81+
```bash
82+
podman pull domistyle/idrac6
83+
```
84+
85+
### Run container
86+
87+
1. Run the container with the following command:
88+
```bash
89+
podman run -d -p 5800:5800 -p 5900:5900 -e IDRAC_HOST=$ip -e IDRAC_USER=$user -e IDRAC_PASSWORD=$password domistyle/idrac6
90+
```
91+
<Message type="note">
92+
- Replace `$ip`, `$user` and `$password` with your iDRAC credentials.
93+
</Message>
94+
95+
2. Access the HTML5 KVM by opening `http://localhost:5800` in a web browser.
96+
97+
## Alternative: Accessing the KVM-over-IP device using Java
98+
99+
If you do not want to use Docker to access the KVM-over-IP device of your server, you can use a Java applet to launch the virtual console.
39100

40101
1. Open the connection URL of your iDRAC in your web browser, then log in using the credentials displayed during access creation.
41102
2. Click **Console/Media** the top menu.
@@ -45,9 +106,15 @@ The connection URL and your credentials display. Click on the link to access the
45106
4. Download and execute the Java web start file. The virtual console window displays.
46107
<Lightbox src="scaleway_idrac6_virtual_console.webp" width="" />
47108

48-
<Message typ="tip">
109+
<Message type="tip">
49110
Your Java security settings should be set to **Low** to execute the Java applet.
50111
</Message>
112+
113+
## Installing an operating system using the virtual console
114+
115+
You can use the virtual console to install an operating system on your server.
116+
1. Connect to the virtual console as described in the previous section.
117+
2. Download the ISO file of the operating system you want to install.
51118
5. Click **Virtual Media** > **Launch virtual media** in the virtual console window. A pop-up window displays.
52119
6. Click **Add Image...** and select the ISO file containing your operating system. Keep the window open.
53120
7. Go back to the virtual console window and click **Power** > **Reboot** to restart the machine.
@@ -58,6 +125,4 @@ The connection URL and your credentials display. Click on the link to access the
58125

59126
<Message type="note">
60127
The boot process may take a while, depending on your internet connection's available upstream bandwidth.
61-
</Message>
62-
63-
128+
</Message>

pages/dedibox-kvm-over-ip/how-to/dell-idrac7.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ meta:
55
content:
66
h1: How to use the KVM Dell iDRAC 7
77
paragraph: This page explains how to use the KVM DELL iDRAC 7 on Scaleway Dedibox.
8-
tags: dedibox kvm idrac7 idrac
8+
tags: dedibox kvm idrac7 idrac
99
dates:
10-
validation: 2024-08-26
10+
validation: 2025-02-25
1111
posted: 2021-07-16
1212
categories:
1313
- dedibox-servers

pages/dedibox-kvm-over-ip/how-to/dell-idrac8.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ content:
77
paragraph: This page explains how to use the KVM DELL iDRAC 8 on a Scaleway Dedibox
88
tags: dedibox kvm dell idrac idrac8
99
dates:
10-
validation: 2024-08-19
10+
validation: 2025-02-25
1111
posted: 2021-07-16
1212
categories:
1313
- dedibox-servers

pages/dedibox-kvm-over-ip/how-to/dell-idrac9.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ content:
77
paragraph: This page explains how to use the KVM DELL iDRAC 9 on a Scaleway Dedibox
88
tags: dedibox kvm idrac
99
dates:
10-
validation: 2024-08-19
10+
validation: 2025-02-25
1111
posted: 2021-07-16
1212
categories:
1313
- dedibox-servers

0 commit comments

Comments
 (0)