Skip to content

Commit 043af41

Browse files
Merge pull request #4445 from ovh/develop
Develop > Master deployment
2 parents 31e5656 + 504bc6a commit 043af41

File tree

169 files changed

+6224
-1088
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

169 files changed

+6224
-1088
lines changed

pages/cloud/managed-bare-metal/spare_hosts/guide.pl-pl.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Należy oddać host zapasowy. Nie ma możliwości zachowania hosta zapasowego, a
3030

3131

3232
##
33-
Po przywróceniu prawidłowego działania hosta i zniknięciu alertów, możesz zwrócić host zapasowy. Wystarczy postępować zgodnie z procedurą opisaną w sekcji "usuwanie hosta" w przewodniku [Jak dodać hosta?]({legacy}605)
33+
Po przywróceniu prawidłowego działania hosta i zniknięciu alertów, możesz zwrócić host zapasowy. Wystarczy postępować zgodnie z procedurą opisaną w sekcji "usuwanie hosta" w przewodniku [Jak dodać hosta?](https://docs.ovh.com/pl/managed-bare-metal/usuwanie-serwera-hosta/)
3434

3535

3636
## Sprawdź również
Lines changed: 25 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,66 +1,58 @@
11
---
2-
title: Object Storage Swift - Automatisches Löschen von Objekten konfigurieren
2+
title: Object Storage Swift - Automatisches Löschen von Objekten konfigurieren (EN)
33
excerpt: Automatisches Löschen von Objekten konfigurieren
44
slug: pcs/configure-automatic-object-deletion
5+
routes:
6+
canonical: 'https://docs.ovh.com/gb/en/storage/object-storage/pcs/configure-automatic-object-deletion/'
57
section: OpenStack Swift Storage Class Specifics
68
legacy_guide_number: g1950
79
order: 070
810
updated: 2021-10-27
911
---
1012

13+
**Last updated 27th October 2021**
1114

12-
## Ziel
13-
Um Ihnen die Verwaltung Ihres Object Storage zu vereinfachen, können Sie die Lebensdauer gewisser dateien vordefinieren.
15+
## Objective
1416

15-
So können Sie beispielsweise Backups nur für einen bestimmten Zeitraum aufbewahren.
17+
To easily manage your Object Storage, you may need to define the lifespan of some of your files. This allows you, for example, to keep some backups only for a specific period.
1618

17-
In diesem Guide erfahren Sie, wie Sie das automatische Löschen von Dateien nach Ablauf einer festgelegten Frist oder zu einem bestimmten Datum konfigurieren.
19+
**This guide shows you how to set up automatic file deletion after a specified period or on a specific date.**
1820

21+
## Requirements
1922

20-
## Voraussetzungen
23+
- [Prepare the environment to use the OpenStack API](https://docs.ovh.com/de/public-cloud/prepare_the_environment_for_using_the_openstack_api/)
24+
- [Set OpenStack environment variables](https://docs.ovh.com/de/public-cloud/set-openstack-environment-variables/)
2125

22-
- [Vorbereitung der Umgebung für die Verwendung der OpenStack API]({legacy}1851) mit Swift Client;
23-
- [Laden der OpenStack Umgebungsvariablen]({legacy}1852).
26+
## Instructions
2427

28+
There are two ways to delete your objects/files
2529

30+
- After a certain number of seconds
31+
- On a specific date
2632

33+
### After a certain number of seconds
2734

28-
## In der praktischen Anwendung
29-
Sie haben hierfür zwei Möglichkeiten zur Bestimmung des Zeitpunktes, zu dem Ihre Dateien gelöscht werden sollen:
30-
31-
- nach Ablauf einer bestimmten Anzahl von Sekunden;
32-
- zu einem vordefinierten Zeitpunkt.
33-
34-
35-
36-
37-
### Nach Ablauf einer bestimmten Anzahl von Sekunden
38-
Hierfür müssen Sie den Header X-Delete-After für Ihre Objekte konfigurieren:
39-
35+
To do this, configure your request's X-Delete-After header
4036

4137
```bash
4238
root@server:~$ swift copy --header "X-Delete-After: 3600" container test.txt
4339
```
4440

41+
The test.txt file will be deleted in an hour.
4542

46-
Die Datei test.txt wird nach Ablauf einer Stunde gelöscht.
47-
48-
49-
### Zu einem vordefinierten Zeitpunkt
50-
Hierfür müssen Sie zunächst einmal den gewünschten Zeitpunkt im Epoch-Format kennen.
43+
### On a specific date
5144

52-
Es gibt spezielle [Konverter](http://www.epochconverter.com/), die Ihnen diesen Schritt erleichtern.
53-
54-
Anschließend geben Sie dieses Datum im Header X-Delete-At an:
45+
First, you need to know what the deletion date is in epoch format.
46+
To help you find the value you need to insert, use a [converter](http://www.epochconverter.com/){.external}.
5547

48+
Then you can enter this date in the X-Delete-At header:
5649

5750
```bash
58-
root@server:~$ swift copy --header "X-Delete-At: 1448928000000" container test.txt
51+
root@server:~$ swift copy --header "X-Delete-At: 1668877261000" container test.txt
5952
```
6053

54+
The file will therefore be deleted on the 19th November 2022.
6155

62-
Die Datei test.txt wird am 01. Dezember 2015 gelöscht.
63-
56+
## Go further
6457

65-
## Weiterführende Informationen
66-
... lesen Sie auch unsere anderen Hilfen zum Thema Cloud!
58+
Join our community of users on [https://community.ovh.com/en/](https://community.ovh.com/en/){.external}.
Lines changed: 65 additions & 70 deletions
Original file line numberDiff line numberDiff line change
@@ -1,130 +1,125 @@
11
---
2-
title: Object Storage Swift - Konfiguration von ownCloud mit Object Storage
2+
title: Object Storage Swift - Konfiguration von ownCloud mit Object Storage (EN)
33
excerpt: Konfiguration von ownCloud mit Object Storage
44
slug: pcs/configure-owncloud-with-object-storage
55
section: OpenStack Swift Storage Class Specifics
6-
legacy_guide_number: g2000
76
order: 170
7+
routes:
8+
canonical: 'https://docs.ovh.com/gb/en/storage/object-storage/pcs/configure-owncloud-with-object-storage/'
89
updated: 2022-05-20
910
---
11+
*Last updated 20th May 2022**
1012

13+
## Objective
1114

12-
##
13-
[ownCloud](https://owncloud.org/) ist eine Applikation für Online-Storage und Ordner-Verwaltung.
15+
[ownCloud](https://owncloud.org/) is an online storage and file management application.
16+
This solution offers several features, including synchronisation between multiple devices. You can also add external storage such as OpenStack Object Storage.
1417

15-
Sie bietet Funktionen wie die Synchronisierung zwischen verschiedenen Peripheriegeräten
18+
**This guide explains how to configure your ownCloud with Object Storage.**
1619

17-
Außerdem können Sie auch externen Speicherplatz hinzufügen, insbesondere OpenStack Object Storage.
1820

19-
In dieser Hilfe erfahren Sie alles über die Konfiguration von ownCloud mit Object Storage.
21+
## Requirements
2022

23+
- The OpenRC file, obtained from the [OVHcloud Control Panel](https://docs.ovh.com/de/public-cloud/creation-and-deletion-of-openstack-user/) or [Horizon](https://docs.ovh.com/de/public-cloud/horizon/)
24+
- [Storage space](https://docs.ovh.com/de/storage/object-storage/pcs/create-container/) dedicated to ownCloud
2125

22-
## Voraussetzungen
2326

24-
- Download der OpenRC-Datei über Ihr OVHcloud Kundencenter oder Horizon
25-
- [Hinzufügen von Storage-Bereichen](https://docs.ovh.com/de/public-cloud/hinzufugen_von_storage-bereichen/) zu Owncloud
27+
## Instructions
2628

29+
### Installation
2730

31+
Firstly you have to install ownCloud:
2832

29-
30-
## Installation
31-
Installieren Sie zunächst ownCloud:
32-
33-
34-
```
35-
root@instance:~$ apt-get install owncloud
33+
```bash
34+
root@instance:~$ apt install owncloud
3635
```
3736

37+
> [!primary]
38+
>
39+
> Make sure that the repository you use contains the latest version of ownCloud.
40+
>
3841
42+
To function, OwnCloud must have a MySQL database. If you do not already have one, install it by running this command:
3943

40-
## Achtung!
41-
Verwenden Sie das richtige Verzeichnis, um die jüngste ownCloud Version zu installieren.
42-
Anschließend können Sie MySQL installieren, damit Sie über die für ownCloud benötigte Datenbank verfügen:
43-
44-
44+
```bash
45+
root@instance:~$ apt install mysql-server
4546
```
46-
root@instance:~$ apt-get install mysql-server
47-
```
48-
4947

48+
### Configuration
5049

50+
To configure the database that will be used by ownCloud, log in to your MySQL server with the root password defined when the server was installed:
5151

52-
## Konfiguration
53-
Wenn die Installation abgeschlossen ist, können Sie mit der Konfiguration der Datenbank für ownCloud beginnen.
5452

55-
Stellen Sie dafür eine Verbindung mit dem MySQL-Server unter Verwendung des bei der Installation festgelegten Root-Passworts her:
56-
57-
58-
```
53+
```bash
5954
root@instance:~$ mysql -u root -p
6055
```
6156

57+
At this point, you can create a new user and a database dedicated to ownCloud:
6258

63-
Anschließend können Sie einen neuen Nutzer und eine Datenbank für OwnCloud erstellen:
64-
65-
66-
```
67-
**** Erstellen des Benutzers *****
59+
```sql
60+
***** Create user *****
6861
mysql> CREATE USER 'owncloud'@'localhost' IDENTIFIED BY 'P@ssw0rd';
6962

70-
***** Erstellung der Datenbank *****
63+
***** Create database *****
7164
mysql> CREATE DATABASE `owncloud` ;
7265

73-
***** Erteilung aller Rechte an den Benutzer "owncloud" für die Datenbank "owncloud"
66+
***** Grant all privileges on "ownCloud" to the "owncloud" database *****
7467
mysql> GRANT ALL PRIVILEGES ON `owncloud` . * TO 'owncloud'@'localhost';
7568
```
7669

70+
Log in to ownCloud on your browser by entering: `http://serverIP/owncloud`:
7771

78-
Danach können Sie sich mithilfe eines Browsers mit dem ownCloud Interface verbinden: http://I.P.des.servers/owncloud:
79-
80-
![](images/img_3325.jpg){.thumbnail}
72+
![ownCloud](images/img_3325.jpg){.thumbnail}
8173

82-
Über dieses Interface müssen Sie dann:
74+
In this interface:
8375

84-
- einen Administrator-Account erstellen,
85-
- das Verzeichnis angeben (fakultativ, wenn Sie nur den Object Storage verwenden wollen; in diesem Fall belassen Sie die Standard-Einstellung) und
86-
- Login und Passwort Ihrer Datenbank angeben.
76+
- Create an administrator account.
77+
- Enter the data directory (optional, if you just want to use the Object Storage, you can leave the default one).
78+
- Enter your database credentials.
8779

8880

89-
Nach Bestätigung können Sie auf Ihr ownCloud Interface zugreifen.
81+
After confirming the operation, you can access your OwnCloud interface and activate the application that allows you to add an external storage support.
9082

91-
Hierüber kann man dann den "External Storage Support" aktivieren.
83+
To do so, click on `File`{.action} on the top left and select `Applications`{.action}:
9284

93-
Klicken Sie dafür auf den Button "Dateien" links oben und wählen Sie "Applikationen" aus:
85+
![ownCloud](images/img_3327.jpg){.thumbnail}
9486

95-
![](images/img_3327.jpg){.thumbnail}
87+
Then enable the `External storage support`{.action} application from the `Disabled` applications menu.
9688

97-
Aktivieren Sie anschließend die Applikation "External storage support" über das Menü der "Deaktivierten" Applikationen:
89+
![ownCloud](images/img_3328.jpg){.thumbnail}
9890

99-
![](images/img_3328.jpg){.thumbnail}
91+
Having done so, configure this application by clicking on your username at the top right and selecting `Admin`{.action}:
10092

101-
Nun können Sie diese Applikation konfigurieren. Klicken Sie hierfür rechts oben auf Ihren Benutzernamen und anschließend auf "Administration":
93+
![ownCloud](images/img_3326.jpg){.thumbnail}
10294

103-
![](images/img_3326.jpg){.thumbnail}
95+
In the `External storage` menu, select `Add storage`{.action} and `OpenStack Object Storage`{.action}:
10496

105-
Wählen Sie den Bereich "Externer Storage" aus und fügen Sie "OpenStack Object Storage" hinzu:
97+
![ownCloud](images/img_3329.jpg){.thumbnail}
10698

107-
![](images/img_3329.jpg){.thumbnail}
99+
Enter the details from your OpenRC file:
108100

109-
Hier müssen Sie verschiedene Informationen aus der "OpenRC"-Datei angeben:
101+
- Your Horizon username which corresponds to the "OS_USERNAME" field in the OpenRC file
102+
- The name of your container which you previously created for ownCloud
103+
- The region that your container is in: "OS_REGION_NAME"
104+
- The tenant name, corresponding to the "OS_TENANT_NAME" field
105+
- Your Horizon password
106+
- The service name corresponding to "Swift"
107+
- The endpoint address, corresponding to the "OS_AUTH_URL" field or "https://auth.cloud.ovh.net/v3"
110108

111-
- den Namen des Horizon Nutzers (Feld "OS_USERNAME" in der "OpenRC"-Datei);
112-
- den Namen des Containers, den Sie zuvor für ownCloud erstellt haben;
113-
- den Namen der Region, in der sich Ihr Container befindet (Feld "OS_REGION_NAME");
114-
- den Namen des Besitzers ("OS_TENANT_NAME");
115-
- das Passwort des Horizon Nutzers;
116-
- den Namen des Service ("swift");
117-
- die Adresse des Zugriffspunkts (Feld "OS_AUTH_URL" oder "https://auth.cloud.ovh.net/v3").
118109

110+
The "API key" and the "Maximum waiting time" are optional.
119111

120-
Der "API Key" und die "Maximale Wartezeit" sind fakultativ.
112+
> [!primary]
113+
>
114+
> The container that you have created must be entirely dedicated to ownCloud because the application will use metadata.
115+
>
116+
> Once you've entered all the information and checked that it is correct, the red box in front of your folder name will turn green and will be available in the `External storage` section of your homepage:
117+
>
121118
122-
## Zur Erinnerung:
123-
Der von Ihnen erstellte Container muss ownCloud dediziert sein, denn es werden spezifische Metadaten auf Ihrem Container konfiguriert.
124-
Wenn alle Angaben korrekt gemacht sind, wird das rote Quadrat vor dem Namen Ihres Ordners grün. Dieser steht Ihnen dann über Ihre Homepage, Bereich "Externer Storage" zur Verfügung.
125119

126-
![](images/img_3330.jpg){.thumbnail}
120+
![ownCloud](images/img_3330.jpg){.thumbnail}
127121

128122

129-
##
130-
... lesen Sie auch unsere anderen Hilfen zum Thema Cloud!
123+
## Go further
124+
 
125+
Join our community of users on <https://community.ovh.com/en/>.

0 commit comments

Comments
 (0)