Base de conhecimento

1000 perguntas frequentes, 500 tutoriais e vídeos explicativos. Aqui, você encontra apenas soluções!

This guide details how to save data from your Web hostings (Starter, shared, or Managed Cloud Server) using the application restic via the OpenStack Swift protocol on Swiss Backup, the backup solution in an independent Swiss cloud.

 

Preamble

 

Install Restic

Prerequisites

To do this:

  1. Download the linux_amd64 binary from the restic github repository:

    wget -O restic.bz2 https://github.com/restic/restic/releases/download/v0.14.0/restic_0.14.0_linux_amd64.bz2

    ⚠️ The download link may vary with the release of a new version; version 0.14 uses the default compression.

  2. Unzip the archive and make the binary executable:

    bunzip2 restic.bz2
    chmod +x restic

 

Configure Restic

Creation of an encryption key to encrypt the data

  • The key cannot be changed and in case of loss the data will no longer be readable.
  • Place this key in a file readable by Restic.
  • Example of key generation:

    openssl rand -base64 16 > restickey	

Configuration of restic

To configure the backup:

  1. Create a resticconfig file with the following content to be adapted according to the information specific to your device:

    echo "export OS_AUTH_URL=https://swiss-backupXX.infomaniak.com/identity/v3
    export OS_REGION_NAME=RegionOne
    export OS_PROJECT_NAME=sb_project_SBI-XXXX
    export OS_PASSWORD=''
    export OS_USER_DOMAIN_NAME=default
    export OS_USERNAME=SBI-XXXX
    export OS_PROJECT_DOMAIN_NAME=default
    export RESTIC_REPOSITORY=swift:sb_project_SBI-XXXX:/
    export RESTIC_PASSWORD_FILE=restickey" > resticconf
    • OS_AUTH_URL Cluster access URL for Swiss Backup (1)
    • OS_PROJECT_NAME and OS_USERNAME replace SBI-XXXX with your identifier
    • OS_PASSWORD replace with the password generated during activation
    • RESTIC_REPOSITORY
      1. replace SBI-XXXX with your identifier
      2. replace the bucket name with the name you want to give to your container that stores the backups
    • RESTIC_PASSWORD_FILE replace with the full path to the file containing the encryption key
  2. Load the Restic configuration by running the following command:

    source resticconf	
  3. Initialize the bucket with the following command:

    ./restic -r $RESTIC_REPOSITORY init	

(1) The indication "//swiss-backup02", "//swiss-backup03" etc. changes depending on the cluster number indicated in the Manager under Cloud Storage Information under "Location"; and if your Swiss Backup device was created before October 2020, you will need to use https://swiss-backup.infomaniak.com/identity/v3

 

Backup your files

To back up your files, simply run the following command:

./restic backup
#Example: Backing up the entire hosting account
./restic backup ./
#Example: Backing up the “sites” folder
./restic backup sites/

The first snapshot is long (several hours depending on the amount of data) because all files are copied while the subsequent ones will use the differential principle.

 

Backup databases

Restic can read data from stdin to record the output of a program.

Use the following command to back up an individual MySQL database:

mysqldump --databases db_name -u db_username -p | restic backup --stdin --stdin-filename database_dump.sql	

To back up all databases, run the mysqldump command to extract all databases from the server, then redirect the output to Restic:

mysqldump -u  -p --all-databases | restic backup --stdin --stdin-filename all_databases.sql	

 

List backups

To list your backups, you can use the following command:

./restic snapshots	

 

Restore a backup

You can restore a backup with the following command:

./restic restore  --target 	

 

Automate

On Cloud Server, it is possible to add a cron task to automate the launch of the backup.

On shared hosting, this option is not available.


Esta seção de perguntas frequentes foi útil?

Este guia explica como ativar e configurar a autenticação de dois fatores (também conhecida como autenticação dupla, A2F ou 2FA) para a aplicação Acronis utilizada com o Swiss Backup.

 

✘ INDISPONÍVEL com
kSuite gratuito / kSuite Standard
my kSuite / my kSuite+ (ik.me, etik.com, ikmail.com)


 

Introdução

  • A autenticação de dois fatores reforça a segurança da sua conta: além da palavra-passe habitual, um código único deve ser inserido durante o início de sessão.
  • Este código é gerado por uma aplicação de autenticação instalada num dispositivo que lhe pertence, por exemplo, um telemóvel, um tablet ou um computador.
  • Desta forma, mesmo que alguém conheça o seu nome de utilizador e a sua palavra-passe, não poderá iniciar sessão sem este segundo código.

 

Ativar a autenticação de dois fatores para a organização

A aplicação Acronis utiliza códigos temporários do tipo TOTP. Estes códigos são gerados automaticamente por uma aplicação de autenticação e, geralmente, mudam a cada 30 segundos. Pode, por exemplo, utilizar:

  • Google Authenticator
  • Microsoft Authenticator
  • qualquer outra aplicação compatível com códigos TOTP

Verifique se a hora do dispositivo utilizado para gerar os códigos está correta. Uma hora incorreta pode impedir a validação do código.

A ativação da autenticação de dois fatores deve ser efetuada por um administrador da organização.

  1. Inicie sessão na consola Acronis utilizada com o Swiss Backup.
  2. Ative a autenticação de dois fatores no nível da organização.
  3. Em seguida, peça aos utilizadores para se reconectarem à consola.

Na próxima vez que se conectarem, os utilizadores terão de configurar a autenticação de dois fatores para a sua própria conta.

 

Configurar a autenticação de dois fatores para a sua conta de utilizador

Pré-requisitos

  • A autenticação de dois fatores deve estar ativada para a organização.
  • Uma aplicação de autenticação compatível com TOTP deve estar instalada.
  • A hora do dispositivo utilizado deve estar correta.

Em seguida:

  1. Conecte-se à consola Acronis utilizada com o Swiss Backup.
  2. Insira o seu ID e a sua palavra-passe.
  3. Quando o ecrã de configuração da autenticação de dois fatores aparecer, abra a sua aplicação de autenticação.
  4. Digitalize o código QR exibido no ecrã.
    • Se a digitalização do código QR não funcionar, insira manualmente o código alfanumérico exibido abaixo do código QR.
  5. Guarde o código QR ou o código alfanumérico num local seguro.
    • Pode ser usado para reconfigurar a autenticação de dois fatores se perder o dispositivo utilizado para gerar os códigos.
  6. Insira na consola Acronis o código gerado pela aplicação de autenticação.
  7. Valide a configuração.

A autenticação de dois fatores está agora ativa para a sua conta. Nas próximas vezes que se conectar, terá de inserir a sua palavra-passe e, em seguida, o código gerado pela aplicação de autenticação.

Se a opção for apresentada, pode confiar no navegador utilizado. Neste caso, o código único não será solicitado a cada conexão a partir do mesmo navegador.

 

Em caso de problema

Perda do dispositivo usado para gerar os códigos

Se você tiver guardado o código QR ou o código alfanumérico, adicione novamente a conta no seu aplicativo de autenticação em um novo dispositivo.

Se você não tiver guardado esse código, peça ao seu administrador para redefinir a autenticação de dois fatores da sua conta.

Troca de dispositivo

Para usar outro dispositivo, redefina a autenticação de dois fatores da sua conta e, em seguida, configure-a novamente com o novo aplicativo de autenticação.


Esta seção de perguntas frequentes foi útil?

This guide details how to manually back up data using the command line interface (CLI) via the S3 Compatible protocol on Swiss Backup, the backup solution in a Swiss independent cloud.

 

Using an S3 location in CLI

Prerequisites

  • Have an Infomaniak Swiss Backup space with an available device quota (minimum 1) for a cloud backup.
  • Add 1 device of type Cloud to obtain the S3 Compatible settings.
  • Use a Terminal application (command line interface, CLI /Command Line Interface) on your device.

With a Terminal application (command line interface, CLI /Command Line Interface) on your device:

  1. Install s3cmd, for example on Debian/Ubuntu:

    sudo apt install s3cmd

    or on macOS (with Homebrew):

    brew install s3cmd

    and for Windows, it is recommended to use S3Express, an open-source command-line tool (need help?).

  2. Enter the following command to configure the connection:

    s3cmd --configure
  3. Enter the fields according to the information specific to your device (refer to this other guide):
     
    • Display name = choose a name for the storage.
    • AccessKey and SecretKey = the access keys generated from the email you received from Infomaniak after creating the storage space.
    • Service point = for example https://s3.swiss-backup02.infomaniak.com (1)
    • Bucket name = default
    • Default region
    • S3 Endpoint: use the URL provided by Infomaniak
    • Use HTTPS: yes
    • HTTP Proxy server: leave blank unless a specific configuration is required
    • Signature version: force the use of v4
    • Path style: choose Yes if prompted
    • Test access: you can perform the test to validate the configuration

(1) The indication "//s3.swiss-backup02", "//s3.swiss-backup03", etc. changes depending on the cluster number indicated in the Manager in the Cloud storage information under "Location"; and if your Swiss Backup device was created before October 2020, you will need to use https://swiss-backup.infomaniak.com/identity/v3

Once completed, a configuration file will be saved (by default in ~/.s3cfg).

 

Start a copy to Swiss Backup

Here are some basic commands to interact with Swiss Backup:

  • List buckets: s3cmd ls
  • List the contents of a bucket: s3cmd ls s3://bucket-name
  • Send a file: s3cmd put example.txt s3://bucket-name/
  • Download a file: s3cmd get s3://bucket-name/example.txt
  • Synchronize a local directory to a bucket: s3cmd sync /path/local/ s3://bucket-name/

 

In case of problems

Following an update to the AWS CLI (Amazon Web Services Command Line Interface) tool, you may encounter an error when attempting to connect to or transfer data to a Swiss Backup S3 location:

Transferring payloads in multiple chunks using aws-chunked is not supported

This error is related to a transfer method used by AWS CLI (aws-chunked), which is not compatible with the Swiss Backup service.

Unfortunately, Infomaniak has no way to address this incompatibility, as it is related to the internal operation of the AWS CLI client, developed by Amazon.

In order to continue using Swiss Backup effectively via the command line, Infomaniak recommends using the open-source s3cmd tool described above in this guide, which is fully compatible with S3 locations.


Esta seção de perguntas frequentes foi útil?

This guide explains how to back up a VPS (Virtual Private Server) with Acronis on Swiss Backup, the backup solution in an independent Swiss cloud. It describes the prerequisites, the differences between the types of licenses and redirects to the useful resources.

 

Summary of license choices

  • Linux:
    • Virtual Machine: For VPS or virtualized environments.
    • Linux Server: For standalone, physical or virtual machines without a hypervisor.
  • Windows:
    • Workstation: For physical workstations.
    • Server: For physical or virtual machines with advanced roles.
    • Virtual Machine: For Windows VMs in a hypervisor environment.

 

Back up a VPS on Linux

Differences between the types of licenses

  • Virtual Machine:
    • For a VPS or virtual machine hosted in a virtualization environment (e.g. VMware, Hyper-V, Virtuozzo).
    • A license covers the physical host and all virtual machines it contains.
    • Suitable for Infomaniak Public Cloud environments or hypervisor clusters (each host requires a license).
  • Linux Server:
    • For an individual physical or virtual machine running Linux (server operating system).
    • Suitable for standalone, local or colocated servers.
    • Each license covers an individual physical or virtual machine.

To configure the Linux backup:

 

Back up a VPS on Windows

Differences between the types of licenses

  • Workstation:
    • A license per physical machine to back up.
    • Limitation: This license does not support Microsoft Exchange Server, SQL Server, or Active Directory applications.
  • Server:
    • A license per physical or virtual machine running Windows.
    • Supports Microsoft SQL Server, SharePoint, and Active Directory.
    • Compatible with virtualization host roles (Hyper-V, VMware ESXi, etc.).
  • Virtual Machine:
    • A license per virtual machine running Windows in a hypervisor environment.
    • Each cluster host requires a license.

To configure the Windows backup:


Esta seção de perguntas frequentes foi útil?

This guide details how to back up Nextcloud data via the OpenStack Swift protocol on Swiss Backup, the backup solution in a Swiss independent cloud.

 

Introduction

  • It is also possible to use Hyper Backup (recommended): refer to this other guide.

 

Configure Nextcloud for Swiss Backup

Prerequisites

To configure a new backup:

  1. Enable the External storage support app in the Apps section of your Nextcloud installation:
  2. Click on External storage in the Administration section of your Nextcloud installation:
  3. Click on the dropdown menu and choose OpenStack Object Storage:
  4. Enter the fields with information specific to your device (refer to this other guide) and modify the drop-down menus as needed, as shown below:

    Region: RegionOne
    Bucket: default
    Username: your Swiss Backup user ID, in the format SBI-AA12345
    Domain: default
    Password: the password obtained after creating the Swiss Backup user
    Tenant name: sb_project_SBI-AA12345(based on the username above)
    Identity endpoint: take the location (1) followed by the path (2) from your login information…


    … therefore, here: swiss-backup03.infomaniak.com/identity/v3

Esta seção de perguntas frequentes foi útil?

This guide explains how to find a solution if the Acronis Agent for Swiss Backup asks you to register your machine and then returns an error when you click on "Register the Machine".

 

Manual registration...

In some situations, especially if you have (re)installed Acronis on your device, the application may ask you to register your machine and then display an error. In this case, you need to perform a manual Acronis registration according to your OS.

 

... on macOS

Refer to this other guide to uninstall the application.

Otherwise, run the following commands from a Terminal type application (command line interface, CLI / Command Line Interface) on your macOS device:

  1. To unregister, enter the following command: 

    sudo "/Library/Application Support/BackupClient/Acronis/RegisterAgentTool/RegisterAgent" -o unregister -t cloud -a acronis.infomaniak.com
  2. To reregister, enter: 

    sudo "/Library/Application Support/BackupClient/Acronis/RegisterAgentTool/RegisterAgent" -o register -t cloud -a acronis.infomaniak.com -u SBA-XXXX-XX -p "PASSWORD_HERE"
  3. Replace and complete the information specific to your account in the commands above, then enter your computer password when prompted.

 

... on Windows

Use the Acronis Cleanup Utility to uninstall the application.

Otherwise, run the following commands from a Terminal type application (command line interface, CLI / Command Line Interface) on your Windows device:

  1. Open the Start menu by typing the following command:

    cmd
  • In the search results, right-click on cmd and select Run as administrator.
  • To unregister, enter:

    cd "C:\Program Files\BackupClient\RegisterAgentTool\"
  • Then:

    .\register_agent.exe -o unregister -t cloud -a acronis.infomaniak.com
  • To reregister, enter:

    cd "C:\Program Files\BackupClient\RegisterAgentTool\"
  • Then:

    .\register_agent.exe -o register -t cloud -a acronis.infomaniak.com -u SBA-XXXX-XX -p "PASSWORD_HERE"
  • Replace and complete the information specific to your account in the commands above.

 

If you have Acronis 2FA enabled...

If Acronis double authentication is enabled, then the commands change slightly:

  1. Generate a registration token from https://acronis.infomaniak.com (need help?).
  2. Run the unregister command (see above according to your OS).
  3. Run the register command as above but adapting to…
    1. … macOS 

      sudo "/Library/Application Support/BackupClient/Acronis/RegisterAgentTool/RegisterAgent" -o register -t cloud -a acronis.infomaniak.com --token TOKEN_HERE
    2. … Windows 

      .\register_agent.exe -o register -t cloud -a acronis.infomaniak.com --token TOKEN_HERE

 

Has the registration been successful?

If you get a 200 message or "success", the command executed successfully.

If the result is different, take a screenshot of the error message then contact Infomaniak support.


Esta seção de perguntas frequentes foi útil?

This guide details how to back up a Synology NAS using the Cloud Sync application via the OpenStack Swift protocol on Swiss Backup, the backup solution in an independent Swiss cloud.

 

Preamble

  • It is also possible to use Hyper Backup (recommended): refer to this other guide.
  • The various services offered by Infomaniak are all compatible with the corresponding standard protocols (S3/Swift for storage, for example), therefore if you encounter a problem with third-party software, contact its publisher or a Partner and consult the support policy as well as section 11.9 of the Infomaniak Terms of Service.

 

Configure Cloud Sync

Prerequisites

To configure a new backup:

  1. Log in to the administration interface of your Synology NAS (DSM).
  2. If necessary, install the Cloud Sync application from the Package Center.
  3. Open the Cloud Sync application.
  4. If necessary, click on the + to add a new cloud provider.
  5. Choose OpenStack Swift from the list of providers:
    sign
  6. Fill in the fields according to the information specific to your device (refer to this other guide) and modify the drop-down menus if necessary as follows:
    sign
     
  7. After clicking Next, fill in the fields according to the information specific to your device (refer to this other guide) and modify the drop-down menus if necessary as follows:
    sign
     
    1. Choose the location (the default choice proposed).
    2. Choose the container name (this is the domain name in your device information).
  8. Task configuration: enter...
     
    1. … the connection name (e.g. OpenStack Swift)
    2. … the local path (the content to be backed up)
    3. … the remote path (the folder in which your files will be backed up)
    4. … the synchronization direction (transfer only local changes recommended for a backup)

Esta seção de perguntas frequentes foi útil?

Este guia explica como ativar a conta Acronis no Swiss Backup, a solução de backup em uma nuvem suíça independente.

 

Pré-requisitos

  • Encomendar um espaço Swiss Backup Infomaniak (backup Acronis).
  • Ao fazer a encomenda, definir a quota de dispositivos disponíveis (mínimo 1) de acordo com as suas necessidades:
  • Se necessário, aumentar a quota de dispositivos de acordo com as suas necessidades.

 

Ativar a conta Acronis para o backup

Para aceder ao Swiss Backup e preparar um novo backup Acronis:

  1. Clique aqui para aceder à gestão do seu produto no Manager Infomaniak (precisa de ajuda?).
  2. Clique diretamente no nome atribuído ao produto em questão:
  3. Clique no botão Configurar o meu espaço de backup Acronis (na parte Espaço de backup Acronis):
  4. Insira um endereço de e-mail de contacto válido.
  5. Clique no botão Continuar:
  6. Defina o espaço em disco máximo que este espaço de backup deverá representar, em relação ao volume total do Swiss Backup contratado, aumentando, se necessário, o tamanho total através do link azul.
  7. Clique no botão Continuar:
  8. Consulte o e-mail recebido para ativar a conta e gerar uma senha de login:
  9. As informações de login agora são exibidas na página de gerenciamento do Swiss Backup no Manager Infomaniak:
  10. O botão abaixo dessas informações permite fazer login no Acronis.

 

E depois?

Depois que o dispositivo for adicionado na interface do Swiss Backup dentro do Manager Infomaniak, você pode configurar o aplicativo Acronis para iniciar seus planos de backup.


Esta seção de perguntas frequentes foi útil?

This guide details how to back up a computer running Microsoft Windows using Acronis on Swiss Backup Infomaniak, the backup solution in a Swiss independent cloud.

It is also possible to back up Windows installed on a virtual machine such as VMware, Virtuozzo, or Microsoft Hyper-V.

 

Prerequisites

 

Differences between devices

Workstation

  • 1 license per physical machine to be backed up.
  • Note: this license does NOT support backing up Microsoft Exchange Server, Microsoft SQL Server, or Active Directory.
  • If you want to back up Microsoft applications installed on a workstation operating system, a server license is required.

Virtual Machine

  • 1 license per virtual machine to be backed up.
  • Supports Microsoft SQL Server, Microsoft SharePoint, and Active Directory.
  • When Acronis is installed on a cluster (e.g., Hyper-V), each host in the cluster requires a VM license.
  • If you have installed Windows in a virtual machine, it is necessary to add a device of this type.

Server

  • 1 license per physical or virtual machine running Windows.
  • Supports Microsoft SQL Server, Microsoft SharePoint, and Active Directory.
  • Supports backing up a server acting as a virtualization host (Hyper-V, VMware ESXi, etc.).

 

Configure the backup

To configure the backup with Acronis:

  1. Click here to access the Acronis Console using the credentials obtained after adding the device (need help?).
  2. Click on Devices in the left-hand menu.
  3. Choose the agent for Windows:
  4. Then install the Acronis application for Windows:
  5. Click on the Save workload button:
  6. If necessary, select the user concerned by this backup:
  7. Continue to complete and activate the selected protection plan:
  8. Wait for the Acronis interface to display your new machine:
  9. Check the active backup plan or replace it with a new one to activate, if necessary, the backup encryption by setting a password that you must never lose, otherwise you will not be able to restore your machine.
  10. Downloading a boot file in .iso format is not necessary (you can always do this from another computer in case your machine becomes unusable in the future).
  11. The protection will run in the background at the times configured in your backup plan.

 

Restore the backup

For a (partial or complete) restoration, please refer to this other guide.


Esta seção de perguntas frequentes foi útil?

This guide details how to back up an Apple macOS computer using Acronis on Swiss Backup, the backup solution in a Swiss independent cloud.

 

Prerequisites

 

Configure the backup

To configure the backup with Acronis:

  1. Click here to access the Acronis Console with the credentials obtained after adding the device (need help?).
  2. Download and install the Acronis Agent for macOS (need help?):


     
    • Also, refer to the chapter below regarding disk access requested by the installer.
  3. Click on Register machine at the end of the Cyber Protect installation:
  4. Do not change the code provided, select the relevant user if necessary, and click on Verify code:
  5. Create a backup plan.

 

Password and access permissions

During the installation of the desktop app (point 2 above), the required password is your Mac's password (user account).

You will also need to grant (from macOS settings) full disk access to the Acronis Cyber-Protect-Service Agent:

 

Accessing and restoring backed-up files

Refer to this other guide for restoring your data.


Esta seção de perguntas frequentes foi útil?

Este guia detalha como fazer o backup manual de dados usando o aplicativo Cyberduck (macOS / Windows) através do protocolo OpenStack Swift no Swiss Backup, a solução de backup em uma nuvem suíça independente.

 

Introdução

  • Também é possível usar o Cyberduck via S3 ou SFTP.

 

Configurar o Cyberduck

Pré-requisitos

Para configurar um novo backup:

  1. Abra o aplicativo Cyberduck.
  2. Clique em Abrir conexão:
  3. Clique no menu suspenso e escolha Mais opções:
  4. Aguarde o carregamento dos perfis adicionais:
  5. Procure e selecione os perfis correspondentes ao Infomaniak Swift:
    • Verifique, se necessário, o seu número de cluster indicado no Manager, nas informações de armazenamento Cloud, em "Localização".
  6. Feche a janela e reinicie o Cyberduck se os perfis não aparecerem no menu suspenso do ponto 3 acima.
  7. Escolha o perfil correspondente:
  8. Preencha os campos de acordo com as informações específicas do seu dispositivo:
  9. Clique no botão Conectar para estabelecer a conexão Swift.

Esta seção de perguntas frequentes foi útil?

This guide details how to obtain the connection and configuration information for Swiss Backup (backup with Acronis), the backup solution in an independent Swiss cloud. It also explains the differences between the passwords available to you.

 

Accessing connection information

To access the information related to your connection to Acronis:

  1. Click here to access the management of your product on the Infomaniak Manager (need help?).
  2. Click directly on the name assigned to the product concerned:
  3. The different information related to your device is displayed on the page:
    1. User name: SBA-AB123456-ABCDE
    2. Password: *** (see below to manage it)

 

Different passwords

 

Infomaniak user account

To access the management of the Swiss Backup product (Acronis or Cloud storage), you need to log in to the Infomaniak Manager: refer to this other guide on this subject.

 

Acronis Backup Account

To establish a connection to the Acronis interface, a password must be generated for the first time when creating a device on the Swiss Backup interface and activating the identifier (point 8 at the bottom of this other guide). It is not possible to display an already generated password.

If you forget it, you need to generate a new one:

  1. Click here to access the management of your product on the Infomaniak Manager (need help?).
  2. Click directly on the name assigned to the product concerned.
  3. Click on Generate a new password (in the Acronis Backup Space section) and follow the wizard:

 

Non-administrator account

An administrator account can create non-administrator accounts. Resetting a non-admin account password is requested on the login page to the Acronis interface and is then offered by email to the user's address:

If no message arrives in the user's email, check that the username is correct (SBA-12345 may sometimes have been created with a username and it is this name that must be specified to reset the password).

 

Acronis Encryption

It is recommended to encrypt all backups stored in the Cloud storage, especially if your company is subject to regulatory compliance. The encryption password is not subject to any length or complexity requirements.

It is impossible to restore encrypted backups if you lose or forget the password.

To activate encryption, specify the encryption parameters when creating a protection plan. Once a protection plan is applied, the encryption parameters cannot be modified.

To use different encryption parameters, create a new protection plan.

 

Cloud Backup

To establish a Swift / S3 / FTP/SFTP / etc. type of connection, a password for this type of backup is generated when creating a device on the Swiss Backup interface and activating the identifier.


Esta seção de perguntas frequentes foi útil?

This guide details how to get started with Swiss Backup, the backup solution in an independent Swiss cloud.

 

Preamble

 

1. CLOUD Backup Mode

Allows you to back up and synchronize files via the protocols:

  • Swift (recommended)
  • FTP / SFTP
  • S3
  • Synology NAS system

with the application of your choice…

 

2. ACRONIS Backup Mode

Ideal solution for backing up:

  • Windows / macOS workstations
  • iOS / Android mobiles (iPhone / Samsung, etc.)
  • Windows / Linux servers
  • VMware, Hyper-V, Virtuozzo virtual machines...
  • Microsoft 365 / Google Workspace spaces...

using the Acronis Cyber Protect Cloud software which will perform automatic and customized backups…


Esta seção de perguntas frequentes foi útil?

This guide details how to back up a server running your Linux distribution of choice to Swiss Backup, the backup solution in a Swiss independent cloud.

 

Configure rClone for Swiss Backup

Prerequisites

To configure a new backup:

  1. Download the rclone file received by email after adding the device:
  2. Place the file in the ~/.rclone.conf.config/rclone/ directory, or place the contents of the file at the end of the existing ~/.rclone.conf.config/rclone/rclone.conf file (on debian stretch, this file is located at: ~/.rclone.conf) — also refer to the rClone documentation.
  3. Open the rclone.conf file with a text editor and replace [password] with the generated password:
  4. Run the rclone config command to verify that the configuration has been applied correctly.
  5. Start the backup using the rclone sync /local/path project_name:default command.

If needed, you can find your login details in the Manager.

 

Example rClone configuration

[sb_project_SBI-AB123456]
type = swift
user = SBI-AB123456
key = [password]
auth (1) = https://swiss-backup02.infomaniak.com/identity/v3 
domain = default
tenant = sb_project_SBI-AB123456
tenant_domain = default
region = RegionOne
storage_url =
auth_version =
 
 

(1) The indication "//swiss-backup02", "//swiss-backup03", etc. changes depending on the cluster number indicated in the Manager under Cloud storage information in the "Location" section; and if your Swiss Backup device was created before October 2020, you will need to use https://swiss-backup.infomaniak.com/identity/v3.

You can change [sb_project_SBI-AB123456] to an indication of your choice for easier use.

For example, the indication [swissbackup] will result in:

rclone sync /local/folder swissbackup:remote/folder

instead of:

rclone sync /local/folder sb_project_SBI-AB123456:remote/folder

 

Start a backup or restore

Start a backup with the following command:

rclone sync /local/folder sb_project_SBI-AB123456:remote/folder

Start a restore with the following command:

rclone sync sb_project_SBI-AB123456:remote/folder /local/folder

Esta seção de perguntas frequentes foi útil?

This guide explains how to schedule a daily, weekly, or monthly Swiss Backup with Acronis.

Also refer to the Acronis documentation on this subject.

 

Modify the frequency of Acronis backups

To do this:

  1. Click here to access the Acronis Console with the credentials obtained after adding the device (need help?).
  2. Click on the All devices menu in the left sidebar.
  3. Click on the device in question.
  4. Click on the 3-dot action menu on the Protection plan that appears on the right.
  5. Click on Edit
  6. Customize the Protection plan according to your needs.
  7. Once all changes have been made, click on the Save button in the upper right corner of your Protection plan.

Esta seção de perguntas frequentes foi útil?

This guide details how to restore a Windows computer using Acronis on Swiss Backup, the backup solution in an independent Swiss cloud.

 

Prerequisites

  • Have a backup of the computer on Swiss Backup (refer to this other guide).
  • Refer to Acronis documentation regarding the recovery of physical machines.
  • The computer to be restored must be connected to the Internet via Ethernet cable (or WiFi depending on the computer's capabilities).

 

Restore the backup

To begin, from the affected computer or any other machine:

  1. Click here to access the Acronis Console with the credentials obtained after adding the device (need help?).
  2. Click on Devices in the left sidebar
  3. Click the Restore button on your relevant backup plan
  4. Click on the other ways to restore at the top of the interface:

Navigate among the saved files

If necessary, locally or remotely, you can first simply restore the files you need:

  1. Click the Download files button (in the Browse Cloud Storage section).
  2. Open the relevant backup.
  3. Enter the encryption password if necessary.
  4. Browse the directory, select your files:
  5. Click Download to obtain a .zip containing your selected files.

Also refer to this other guide.

 

Create a boot disk (on a USB key, for example)

To create a Windows boot disk and allow the restoration of a computer:

  1. Click the Download an ISO image button (in the Restore an entire machine section):
  2. Note down the code in the form AA11-BB22-CC33 that appears on the screen (more information).
  3. Use software like Etcher to create a boot disk from the downloaded .iso file.

 

Boot the computer from the removable media

Boot the computer from this boot disk (by pressing the required key according to your machine: F1, F2, F10, F12, DEL, etc.) then follow the steps below:

  1. Click on Rescue Media:
  2. Connect the computer via Ethernet (or if necessary configure the WiFi from the link located on the right side of the interface if the computer allows it) then click on Manage the device locally:
  3. Click on Restore:
  4. Click on Select data...
  5. Click the Browse button:
  6. Under Cloud Storage click on either:
    1. Log In and use the Acronis credentials (in the form SBA-XXXX-ADMIN) to authenticate (the keyboard is by default in EN-US, make sure to type the word in plain text to verify it if necessary):
    2. OR Use the registration code if you have 2FA enabled, by following the proposed procedure (which involves requesting a temporary code (in the form ABCD-ABCD) and then going to the page https://acronis.infomaniak.com/ui/#w=agentRegistration to enter this code once logged into your Acronis account):
  7. Click on your Acronis account ID and continue to access the backups (the encryption password will be requested if it had been enabled - see point 12 of this guide).
  8. Choose the workstation, the restore point, and the volumes (disks) to restore:

    Useful information:
    • Use the arrow to the left of the workstation names to display the backups...
    • The first table at the top allows you to choose the workstation and the backup to restore...
    • The second table allows you to choose the content (the disks) of the backup to restore...
  9. Click OK to continue.
  10. Match the source and destination volumes:

    Useful information:
    • For each volume or disk of the source backup, click on Required to choose where to restore the data.
    • Under Restore options, it is recommended to check the Automatic restart box.
  11. Click OK to start the restoration.

Esta seção de perguntas frequentes foi útil?

This guide details how to restore an Apple macOS computer using Acronis on Swiss Backup, the backup solution in an independent Swiss cloud.

 

Prerequisites

  • The Acronis application must be installed on the computer on which you want to perform the restoration; use the same credentials as those used to save the machine when registering the agent:
    1. Click here to access the Acronis Console with the credentials obtained after adding the device (need help?).
    2. Click on the user icon at the top right.
    3. Click on Downloads:
    4. Choose the client suitable for your macOS machine:

 

Create a bootable USB key

To do this:

  1. Insert a blank USB key of at least 4 GB into your computer (be careful: the data on the key will be deleted).
  2. Open the Rescue Media Builder application from the Applications folder of the Finder on your macOS. This application has been automatically installed with the Acronis application.
  3. Check the detected USB key and click on Create Media.

 

Start the restore procedure

To do this:

  1. Restart the macOS computer with the bootable USB key.
  2. Depending on the macOS version, press and hold a key on the keyboard (refer to this Apple guide to know which one) during the restart.
  3. If necessary, click on the bootable USB key to start from it.

 

Configure and start the restoration

To do this:

  1. Select your key on Rescue Media Builder:
  2. Click on Recovery Boot Media:
  3. Click on Recover:
  4. Click on Select data:
  5. … then on Browse:
  6. and select Cloud Storage; then click on the Log in button:
  7. Use the device credentials to authenticate:
  8. Choose the macOS machine to restore, then click on OK to start the restoration:
  9. If you chose to encrypt your backups, you will be asked for the backup password:
  10. In the upper part of the screen, select the available backup you want to restore:
  11. Once the backup is selected, you can select the type of item to restore in the lower part of the screen, as well as those you want to restore; it is recommended to select the type Volumes and to restore all available Volumes, in order to restore all of your hard drive(s)... then start the restoration with the OK button:
  12. The restoration is then started, you can follow the progress via the Progress tab:
 

Once at 100% the macOS machine will restart several times in a row (this is normal) until the entire procedure is complete.


Esta seção de perguntas frequentes foi útil?

This guide explains how to increase or decrease the space allocated to a device backed up with Swiss Backup, which is particularly useful when you receive an email informing you that you no longer have enough free space to perform your backups.

 

Modify quotas for user devices

To do this:

  1. Click here to access the Acronis Console with the credentials obtained after adding the device (need help?).
  2. Click on Manage account in the left sidebar:
  3. Click on Company Directors.
  4. Click on the user concerned under Users.
  5. Click on the pencil in the QUOTAS rectangle on the right.
  6. Click directly on the disk space to edit the desired values.
  7. Validate with the button at the bottom of the section:

Esta seção de perguntas frequentes foi útil?

This guide explains how to obtain a backup space with Swiss Backup, the backup solution in an independent Swiss cloud.

 

Prerequisites

  • Determine which type of device will need to be backed up on Swiss Backup:
    1. CLOUD BACKUPS - allows you to back up and synchronize files via the protocols:

      1. Swift (recommended)
      2. FTP / SFTP
      3. S3 Compatible
      4. Synology NAS system

      with the application of your choice…

    2. ACRONIS BACKUPS - ideal solution for backing up:

      1. Windows / macOS workstations
      2. Android / iOS (iPhone) mobiles
      3. Windows / Linux servers
      4. VMware, Hyper-V, Virtuozzo virtual machines...
      5. Microsoft 365 / Google Workspace spaces…

      using the Acronis Cyber Protect Cloud software, which allows you to store backup data using Swift as a backend and create "protection plans" where you can choose between:

      1. full machine backup (all hard drives attached to the machine in SATA)
      2. file / folder backup (specifically of your choice)
      3. volume / disk backup (if you have external drives)
      4. backup scheduling
      5. backup retention period
      6. backup restoration
      7. backup encryption

 

Obtain Swiss Backup

To order a Swiss Backup storage space:

  1. Click here to access the management of your product on the Infomaniak Manager (need help?).
  2. Click on Order:
  3. or on the cart icon if a Swiss Backup product is already active on the Organization and you wish to order an additional one:
  4. Choose the maximum size of all the storage space needed for your project(s), regardless of the number and type of backups you will perform:
  5. Here the example project is to back up 2 things:
    1. important & large documents located on 1 NAS
    2. photos/videos from an Android mobile device
  6. Complete the order and pay.
  7. The Swiss Backup product appears in your Manager with the disk space and quotas selected during the order:
  8. You can then add the desired devices to your Swiss Backup interface: refer to this other guide.

Esta seção de perguntas frequentes foi útil?