Skip to content

Commit 3ec14a0

Browse files
author
tcpdumpfbacke
committed
Fixes
1 parent 50cbf3f commit 3ec14a0

File tree

7 files changed

+413
-413
lines changed

7 files changed

+413
-413
lines changed

pages/bare_metal_cloud/dedicated_servers/services_backup_storage/guide.en-asia.md

Lines changed: 59 additions & 59 deletions
Original file line numberDiff line numberDiff line change
@@ -154,11 +154,11 @@ ncftpput -u FtpUserName -p FtpPassword HostName /FolderLocation /File
154154

155155
The code example above contains variables, which you will need to substitute with your own values.
156156

157-
* **FtpUsername** : Your FTP username
158-
* **FtpPassword**: Your FTP password
159-
* **HostName**: The host name of your backup storage
160-
* **FolderLocation**: The path to the target folder where you want to save the file
161-
* **File**: The name of the file you want to save
157+
- **FtpUsername** : Your FTP username
158+
- **FtpPassword**: Your FTP password
159+
- **HostName**: The host name of your backup storage
160+
- **FolderLocation**: The path to the target folder where you want to save the file
161+
- **File**: The name of the file you want to save
162162

163163
Backing up a folder is done by creating a folder archive, and then uploading it all with one command:
164164

@@ -168,11 +168,11 @@ tar czf - /FolderName | ncftpput -u FtpUserName -p FtpPassword -c HostName Archi
168168

169169
The code example above contains variables, which you will need to substitute with your own values.
170170

171-
* **FolderName**: The path to the folder you want to back up
172-
* **FtpUsername**: Your FTP username
173-
* **FtpPassword**: Your FTP password
174-
* **HostName**: The host name of your backup storage
175-
* **ArchiveName**: The name of the folder you want to back up
171+
- **FolderName**: The path to the folder you want to back up
172+
- **FtpUsername**: Your FTP username
173+
- **FtpPassword**: Your FTP password
174+
- **HostName**: The host name of your backup storage
175+
- **ArchiveName**: The name of the folder you want to back up
176176

177177
To download an archive file from your backup storage, you can use the following command:
178178

@@ -182,18 +182,18 @@ ncftpget -v -u FtpUsername -p FtpPassword HostName /LocalFolder /File
182182

183183
The code example above contains variables, which you will need to substitute with your own values.
184184

185-
* **FtpUsername**: Your FTP username
186-
* **FtpPassword**: Your FTP password
187-
* **HostName**: The host name of your backup storage
188-
* **LocalFolder**: The path to the local folder where you want to save the file
189-
* **File**: The path to the file you want to download
185+
- **FtpUsername**: Your FTP username
186+
- **FtpPassword**: Your FTP password
187+
- **HostName**: The host name of your backup storage
188+
- **LocalFolder**: The path to the local folder where you want to save the file
189+
- **File**: The path to the file you want to download
190190

191191
##### Curl (for Linux)
192192

193193
> [!primary]
194194
>
195-
> To use FTPS you must change the hostname of the backup storage. For example, if the name of your backup storage is ftpback-rbxX-YYY.ip-Z.Z.Z.Z.net, you need to change it to ftpback-rbxX-YYY.mybackup.ovh.net. You also need to add the -ssl flag to the commands below.
196-
> If the Backup Storage is located in Canada (BHS), you will need to change it to ftpback-bhsX-YYY.mybackup.ovh.ca.
195+
> To use FTPS you must change the hostname of the backup storage. For example, if the name of your backup storage is ftpback-rbxX-YYY.ip-Z.Z.Z.Z.net, you need to change it to ftpback-rbxX-YYY.mybackup.ovh.net. You also need to add the -ssl flag to the commands below.
196+
> If the backup storage is located in Canada (BHS), you will need to change it to ftpback-bhsX-YYY.mybackup.ovh.ca.
197197
>
198198
199199
To save individual files to your backup storage, you can use the following command:
@@ -204,11 +204,11 @@ curl -aT File ftp://FtpUsername:FtpPassword@HostName/FolderLocation
204204

205205
The code example above contains variables, which you will need to substitute with your own values.
206206

207-
* **File**: The name of the file you want to save
208-
* **FtpUsername**: Your FTP username
209-
* **FtpPassword**: Your FTP password
210-
* **HostName**: The host name of your backup storage
211-
* **FolderLocation**: The path to the target folder where you want to save the file
207+
- **File**: The name of the file you want to save
208+
- **FtpUsername**: Your FTP username
209+
- **FtpPassword**: Your FTP password
210+
- **HostName**: The host name of your backup storage
211+
- **FolderLocation**: The path to the target folder where you want to save the file
212212

213213
Backing up a folder is done by creating a folder archive, and then uploading it all with one command:
214214

@@ -218,12 +218,12 @@ tar czf - /FolderName | curl ftp://FtpUsername:FtpPassword@HostName/FolderLocati
218218

219219
The code example above contains variables, which you will need to substitute with your own values.
220220

221-
* **FolderName**: The path to the folder you want to back up
222-
* **FtpUsername**: Your FTP username
223-
* **FtpPassword**: Your FTP password
224-
* **HostName**: The host name of your backup storage
225-
* **FolderLocation**: The path to the target folder where you want to save the folder
226-
* **ArchiveName**: The name of the folder you want to back up
221+
- **FolderName**: The path to the folder you want to back up
222+
- **FtpUsername**: Your FTP username
223+
- **FtpPassword**: Your FTP password
224+
- **HostName**: The host name of your backup storage
225+
- **FolderLocation**: The path to the target folder where you want to save the folder
226+
- **ArchiveName**: The name of the folder you want to back up
227227

228228
To download an archive file from your backup storage, you can use the following commands:
229229

@@ -234,18 +234,18 @@ curl -u FtpUsername:FtpPassword ftp://HostName/File
234234

235235
The code example above contains variables, which you will need to substitute with your own values.
236236

237-
* **FtpUsername**: Your FTP username
238-
* **FtpPassword**: Your FTP password
239-
* **HostName**: The host name of your backup storage
240-
* **LocalFolder**: The name of the local folder where you want to save the file
241-
* **File**: The path to the file you want to download
237+
- **FtpUsername**: Your FTP username
238+
- **FtpPassword**: Your FTP password
239+
- **HostName**: The host name of your backup storage
240+
- **LocalFolder**: The name of the local folder where you want to save the file
241+
- **File**: The path to the file you want to download
242242

243243
#### lftp (for Linux)
244244

245245
> [!primary]
246246
>
247-
> lftp uses FTP+SSL/TLS by default. So you must change the host name of the backup storage. For example, if the name of your backup storage is ftpback-rbxX-YYY.ip-Z.Z.Z.Z.net, you need to change it to ftpback-rbxX-YYY.mybackup.ovh.net.
248-
> If the Backup Storage is located in Canada (BHS), you will need to change it to ftpback-bhsX-YYY.mybackup.ovh.ca.
247+
> lftp uses FTP+SSL/TLS by default. So you must change the host name of the backup storage. For example, if the name of your backup storage is ftpback-rbxX-YYY.ip-Z.Z.Z.Z.net, you need to change it to ftpback-rbxX-YYY.mybackup.ovh.net.
248+
> If the backup storage is located in Canada (BHS), you will need to change it to ftpback-bhsX-YYY.mybackup.ovh.ca.
249249
>
250250
251251
To save individual files to your backup storage, you can use the following command:
@@ -256,11 +256,11 @@ lftp ftp://FtpUsername:FtpPassword@HostName:21 -e "cd FolderLocation; put File;
256256

257257
The code example above contains variables, which you will need to substitute with your own values.
258258

259-
* **File**: The name of the file you want to save
260-
* **FtpUsername**: Your FTP username
261-
* **FtpPassword**: Your FTP password
262-
* **HostName**: The host name of your backup storage
263-
* **FolderLocation**: The path to the target folder where you want to save the file
259+
- **File**: The name of the file you want to save
260+
- **FtpUsername**: Your FTP username
261+
- **FtpPassword**: Your FTP password
262+
- **HostName**: The host name of your backup storage
263+
- **FolderLocation**: The path to the target folder where you want to save the file
264264

265265
Backing up a folder is done by creating a folder archive, and then uploading it all with one command:
266266

@@ -270,12 +270,12 @@ tar czf - /FolderName | ftp://FtpUsername:FtpPassword@HostName:21 -e "cd FolderL
270270

271271
The code example above contains variables, which you will need to substitute with your own values.
272272

273-
* **FolderName**: The path to the folder you want to back up
274-
* **FtpUsername**: Your FTP username
275-
* **FtpPassword**: Your FTP password
276-
* **HostName**: The host name of your backup storage
277-
* **FolderLocation**: The path to the target folder where you want to save the folder
278-
* **ArchiveName**: The name of the folder you want to back up
273+
- **FolderName**: The path to the folder you want to back up
274+
- **FtpUsername**: Your FTP username
275+
- **FtpPassword**: Your FTP password
276+
- **HostName**: The host name of your backup storage
277+
- **FolderLocation**: The path to the target folder where you want to save the folder
278+
- **ArchiveName**: The name of the folder you want to back up
279279

280280
To download an archive file from your backup storage, you can use the following commands:
281281

@@ -286,11 +286,11 @@ lftp ftp://FtpUsername:FtpPassword@HostName:21 -e "get /File; quit"
286286

287287
The code example above contains variables, which you will need to substitute with your own values.
288288

289-
* **FtpUsername**: Your FTP username
290-
* **FtpPassword**: Your FTP password
291-
* **HostName**: The host name of your backup storage
292-
* **LocalFolder**: The name of the local folder where you want to save the file
293-
* **File**: The path to the file you want to download
289+
- **FtpUsername**: Your FTP username
290+
- **FtpPassword**: Your FTP password
291+
- **HostName**: The host name of your backup storage
292+
- **LocalFolder**: The name of the local folder where you want to save the file
293+
- **File**: The path to the file you want to download
294294

295295
##### Filezilla (for Windows)
296296

@@ -308,9 +308,9 @@ mount -t nfs HostName:/export/ftpbackup/ServiceName /FolderMount
308308

309309
The code example above contains variables, which you will need to substitute with your own values.
310310

311-
* **HostName**: The host name of your backup storage
312-
* **ServiceName**: The name of your server (`ns1111111.ip-203-0-113.eu`)
313-
* **FolderMount**: The folder where you want to mount the NFS share
311+
- **HostName**: The host name of your backup storage
312+
- **ServiceName**: The name of your server (`ns1111111.ip-203-0-113.eu`)
313+
- **FolderMount**: The folder where you want to mount the NFS share
314314

315315
Once the share is mounted, you can use commands like **cp** and rsync like on a normal directory.
316316

@@ -326,8 +326,8 @@ net use z: \\HostName\ServiceName
326326

327327
The code example above contains variables, which you will need to substitute with your own values.
328328

329-
* **HostName**: The host name of your backup storage
330-
* **ServiceName**: The name of your server (`ns1111111.ip-203-0-113.eu`)
329+
- **HostName**: The host name of your backup storage
330+
- **ServiceName**: The name of your server (`ns1111111.ip-203-0-113.eu`)
331331

332332
You might receive the following error message:
333333

@@ -366,9 +366,9 @@ mount -t cifs -o vers=2.0,uid=root,gid=100,dir_mode=0700,username=root,password=
366366
367367
The code example above contains variables, which you will need to substitute with your own values.
368368
369-
* **HostName**: The host name of your backup storage
370-
* **ServiceName**: The name of your server (`ns1111111.ip-203-0-113.eu`)
371-
* **FolderMount**: The folder where you want to mount the share (it must already exist)
369+
- **HostName**: The host name of your backup storage
370+
- **ServiceName**: The name of your server (`ns1111111.ip-203-0-113.eu`)
371+
- **FolderMount**: The folder where you want to mount the share (it must already exist)
372372
373373
## Go further
374374

0 commit comments

Comments
 (0)