Skip to content

Commit b3f3daa

Browse files
Merge pull request #334 from ByteInternet/object-storage-docs
Add object storage docs
2 parents 7177cc4 + 606b95a commit b3f3daa

File tree

3 files changed

+88
-0
lines changed

3 files changed

+88
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
myst:
3+
html_meta:
4+
description: This table of contents gives you a summary of all Hypernode platform
5+
knowledge base articles that include information about Object Storage.
6+
title: Object Storage | Hypernode platform
7+
redirect_from:
8+
- /en/hypernode/object-storage/
9+
---
10+
11+
# Object Storage
12+
13+
```{toctree}
14+
---
15+
caption: Table of Contents
16+
maxdepth: 1
17+
glob:
18+
---
19+
object-storage/*
20+
```
Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
---
2+
myst:
3+
html_meta:
4+
description: Getting started with Object Storage
5+
title: Hypernode Object Storage | Getting Started
6+
redirect_from:
7+
- /en/hypernode/object-storage/getting-started-with-object-storage/
8+
---
9+
10+
# What is Hypernode Object Storage?
11+
12+
Hypernode Object Storage provides an option to store media files, assets, backups, documents, etc in a persistent, remote storage container.
13+
14+
Object storage eliminates redundancy and provides a centralized, scalable solution for storing application assets, session data, and backups.
15+
16+
By default, media files are stored in the same filesystem that contains the application. This is inefficient for complex, multi-server configurations, and can result in degraded performance when sharing resources.
17+
18+
With Object Storage you get:
19+
20+
- Effortless Data Sharing – Seamless access across all Hypernodes
21+
- Full Access Control & Security – Secure and manage your data with ease
22+
- Safe Backup & Monitoring – Ensure reliability with built-in insights
23+
24+
# Getting started with Object Storage
25+
26+
## CLI option
27+
28+
```console
29+
hypernode-object-storage --help
30+
```
31+
32+
### Creating a Hypernode Object Storage Workspace
33+
34+
1. SSH into your server.
35+
1. Run `hypernode-object-storage create`
36+
1. Fill in the prompts with a name and desired storage.
37+
1. Confirm your order and give it a few minutes before your storage is ready.
38+
39+
Note: You can use one object storage across multiple Hypernodes. But you can only use one object storage space per Hypernode.
40+
41+
If you receive this error, please make sure to enable "Allow billing through CLI in the relevant Hypernode settings page"
42+
43+
```
44+
You do not have permission to order object storage for this Hypernode. Please ask the Hypernode owner to enable 'Allow billing through the CLI' in the Control Panel settings or via the API
45+
```
46+
47+
### Retrieve object storage
48+
49+
1. Run `hypernode-object-storage info`
50+
1. If you want to retrieve your credentials for the workspace pass in the flag `--with-credentials`.
51+
52+
The output should look like this
53+
54+
```console
55+
app@testhypernode ~ # hypernode-object-storage info
56+
57+
+--------------------------------------+--------------+--------+------------+----------------+---------------+---------------+
58+
| UUID | Name | Plan | Hypernodes | Management URL | Access Key | Secret Key |
59+
+--------------------------------------+--------------+--------+------------+----------------+---------------+---------------+
60+
| d8770125-6c90-4770-b00f-1716f699990a | test-storage | OS50GB | testnode12 | **sensitive** | **sensitive** | **sensitive** |
61+
+--------------------------------------+--------------+--------+------------+----------------+---------------+---------------+
62+
```
63+
64+
You can use the credentials and the URL now to configure remote storage for your application with the help of [this document](../../ecommerce-applications/magento-2/how-to-configure-remote-storage-for-magento-2-x.md).
65+
66+
## UI option - Control Panel
67+
68+
Coming soon

docs/hypernode-platform/tools/how-to-use-the-hypernode-systemctl-cli-tool.md

100755100644
File mode changed.

0 commit comments

Comments
 (0)