Base de conhecimento
1000 perguntas frequentes, 500 tutoriais e vídeos explicativos. Aqui, você encontra apenas soluções!
Este guia detalha como fazer o backup manual de dados usando a aplicação FileZilla (macOS / Windows / Linux) através do protocolo SFTP no Swiss Backup, a solução de backup em uma nuvem suíça independente.
Introdução
Configurar o FileZilla
Pré-requisitos
- Ter um espaço Swiss Backup Infomaniak com uma quota de dispositivo disponível (mínimo 1) para um backup na nuvem.
- Adicionar 1 dispositivo do tipo Nuvem para obter os parâmetros SFTP.
- Descarregar e instalar o FileZilla (macOS / Windows / Linux).
Para configurar um novo backup:
- Preencha os campos de acordo com as informações específicas do seu dispositivo (consulte este outro guia):

- Host:
sftp.swiss-backup02.infomaniak.com - Nome de usuário: Nome do dispositivo Swiss Backup (por exemplo,
SBI-MS0020) - Senha: Senha gerada através do e-mail recebido após a criação do dispositivo Swiss Backup
- Porta:
22 - Clique em Conectar
- Host:
O FileZilla também permite configurar conexões para que você não precise digitar novamente as credenciais de login:
- Clique no ícone Gerenciador de sites.
- Clique em Novo site:

- Preencha os campos de acordo com as informações específicas do seu dispositivo.
A conexão SFTP é recomendada para que os dados sejam transmitidos de forma segura.
Link para esta FAQ: https://faq.infomaniak.com/2547
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 SFTP no Swiss Backup, a solução de backup em uma nuvem suíça independente.
Introdução
Configurar o Cyberduck
Pré-requisitos
- Possuir um espaço Swiss Backup Infomaniak com uma quota de dispositivo disponível (mínimo 1) para um backup na nuvem.
- Adicionar 1 dispositivo do tipo Nuvem para obter os parâmetros SFTP.
- Baixar e instalar o Cyberduck (macOS / Windows).
Para configurar um novo backup:
- Abra o aplicativo Cyberduck.
- Clique em Open Connection:

- Escolha o protocolo correspondente:

- Preencha os campos com as informações específicas do seu dispositivo (consulte este outro guia):

- Selecione no menu suspenso:
SFTP(SSH File Transfer Protocol). - Servidor:
sftp.swiss-backup02.infomaniak.com - Nome de utilizador: nome do dispositivo Swiss Backup (por exemplo,
SBI-MS0020). - Senha: senha gerada por meio do e-mail recebido após a criação do dispositivo Swiss Backup.
- Clique em Conectar.
- Selecione no menu suspenso:
O Cyberduck permite criar marcadores, acessos pré-configurados para facilitar a conexão ao armazenamento FTP posteriormente. Depois de criar o marcador, você poderá clicar duas vezes neste marcador para se conectar ao armazenamento FTP.
Link para esta FAQ: https://faq.infomaniak.com/2548
Esta seção de perguntas frequentes foi útil?
This guide details how to manually back up data using the MSP360 (formerly CloudBerry Windows) application via the S3 Compatible protocol on Swiss Backup, the backup solution in a Swiss independent cloud.
Introduction
- It is also possible to use FileZilla (SFTP): refer to this other guide.
Configure MSP360/CloudBerry
Prerequisites
- Have an Infomaniak Swiss Backup account with an available device quota (minimum 1) for a Cloud backup.
- Add 1 device of type Cloud to obtain the S3 Compatible parameters.
- Download and install MSP360 (Windows).
To configure a new backup:
- Click on the CloudBerry icon in the top left corner.
- Choose Add Storage Account:

- Select S3 compatible:

- Enter the fields with the information specific to your device (refer to this other guide):

Display name= choose a name for the storage.AccessKeyandSecretKey= the access keys generated from the email you received from Infomaniak after creating the storage space.Service point= https://s3.swiss-backup02.infomaniak.comBucket name= default
- Click OK.
Link para esta FAQ: https://faq.infomaniak.com/2549
Esta seção de perguntas frequentes foi útil?
This guide details how to manually back up data using the MSP360 (formerly CloudBerry macOS) application via the S3 Compatible protocol on Swiss Backup, the backup solution in a Swiss independent cloud.
Introduction
- It is also possible to use FileZilla (SFTP): refer to this other guide.
Configure MSP360/CloudBerry
Prerequisites
- Have an Swiss Backup Infomaniak account with an available device quota (minimum 1) for a Cloud backup.
- Add 1 device of type Cloud to obtain the S3 Compatible parameters.
- Download and install MSP360 (macOS).
To configure a new backup:
- Go to Settings:

- Choose an S3 Compatible storage from the list below:

- Enter the fields with information specific to your device (refer to this other guide):

Display Name: the name of this storage space in the application.AccessKeyandSecretKey: the access keys generated from the email you received from Infomaniak after creating the storage space.Endpoint(or server URL):https://s3.swiss-backup02.infomaniak.com- The value of "bucket" remains at its default setting.
- Click OK to validate.
Link para esta FAQ: https://faq.infomaniak.com/2550
Esta seção de perguntas frequentes foi útil?
This guide explains how to prepare your server and install the Acronis Backup Agent for Swiss Backup on AlmaLinux 9.
Install the Acronis CyberProtect agent
1. System requirements
- Use a root privileged account.
- Internet access required for repositories and download.
- Available disk space: approximately 2 GB.
2. System preparation
Switch to root user:
# Switch to root user sudo -iUpdate the DNF metadata cache:
# Refresh DNF metadata cache dnf -y makecacheCheck the current kernel and GCC versions:
# Check current kernel and GCC version cat /proc/versionIf the kernel version does not match the package kernel-devel available, an update will be required in the next step.
Install the build tool (make):
# Install make utility dnf install -y make # Verify installation make -v | head -n 1Install the GCC compiler:
# Install GCC compiler dnf install -y gcc # Verify version (should match the one in /proc/version) gcc -dumpfullversionInstall the latest kernel and its headers (kernel-devel):
# List available versions dnf list kernel kernel-devel --showduplicates | sort -r # Install latest kernel and headers dnf install -y kernel kernel-develRestart the server to load the new kernel:
# Reboot the system systemctl rebootAfter the restart, reconnect and switch back to root (
sudo -i).Confirm the presence of all required tools:
# Final environment check uname -r rpm -qa | grep ^kernel-devel make -v | head -n 1 gcc -dumpfullversion perl -v | head -n 2
3. Downloading the installer
Install wget if necessary:
# Install wget dnf install -y wget- Get the download URL:
- Log in to https://acronis.infomaniak.com.
- Go to Terminals → All terminals.
- Click on Add and select Linux.
- Copy the full URL containing your token.
Download the binary to your server:
# Download the installer using your URL wget -O CyberProtect_AgentForLinux_x86_64.bin "metre_ici_URL_obtenue_avant"Make the file executable:
# Set execution permissions chmod +x CyberProtect_AgentForLinux_x86_64.bin
4. Agent installation
Start the installation:
# Run the installation script ./CyberProtect_AgentForLinux_x86_64.bin- Use the Tab key to navigate and Enter to validate in the text interface.
- Select Install.

- Accept the automatic installation of missing dependencies via YUM.

- At the end of the process, choose Display registration information.

- Carefully note the Registration code displayed (e.g., ABCD-1234).

5. Registration on the Acronis console
- Go back to your Acronis console (browser).
- Click on Add, then at the bottom of the list, choose Registration by code.

- Enter the code obtained from the server and click on Validate.

- Important: On the plan selection screen, click on the dropdown menu

- and choose Do not apply.

- Click on Next

- then on Save.

- Check that your server appears in the list of terminals after a few seconds.

6. Creating the protection plan
- Click on the name of your server in the list, then on the Protect button.
- Choose Create a plan → Protection.

- Define your backup parameters (frequency, retention, destination).
- Attention: If you enable encryption, keep the password in a safe place. Without it, your backups will be unusable.
- Check the configuration and click on Create.
Link para esta FAQ: https://faq.infomaniak.com/2555
Esta seção de perguntas frequentes foi útil?
This guide covers the management of users for Swiss Backup for Acronis backups.
Swiss Backup Administrator
Your account SBA-XXXX-ADMIN obtained after configuring Swiss Backup on the Infomaniak Manager has default access to all licenses, devices, locations, and the entire quota available to it:
- Click here to access the Acronis Console with the credentials obtained after adding the device (need help?).
- On the homepage, an administrator account will always see the management button, which will not be the case with a limited account:

- This gives access to the section reserved for admin accounts (or "business leader" according to the terms visible on the platform acronis.infomaniak.com):

If you have acquired 2 licenses/devices and your total storage quota is 1 TB for Acronis (for example):
- 1 Mobile
- 1 Server
your account SBA-XXXX-ADMIN can back up 1 mobile device and 1 server; the storage quota for the 2 devices will be shared but limited to 1 TB.
In the Acronis interface, you will see an "unlimited" quota, but it remains limited to the options you have chosen in the Swiss Backup Manager.
To better manage storage quotas and service quotas (licenses), create users on Acronis, this allows you to:
Add a user
There are two types of user accounts: administrator accounts and user accounts (read Acronis' help on this subject). Only an administrator account can add/remove users:
- Click here to access the Acronis Console with the credentials obtained after adding the device (need help?).
- Click on Manage Account in the left sidebar.
- Click on Business Leaders.
- Click the Users button.
- Click on the +New button at the top of the page.
- Fill in the information (read Acronis help on this subject).
Delete a user
Warning:
- Deleting the device is irreversible and all backed-up data will be deleted from Infomaniak servers.
- Machines associated with this user will be unregistered.
- All protection plans will be revoked from all machines associated with this user.
To delete the account:
- Click here to access the Acronis Console with an Admin account.
- Click on Manage Account in the left sidebar.
- Click on Company Leaders (as in this example).
- Click on the action menu ⋮ to the right of the user concerned in the displayed table.
- Deactivate the account.
- Once the account is deactivated, delete the account (from point 5 above).
Link device and user
Example
1 TB Storage
Licenses 2 Mobiles, 1 Server, 1 VM
- SBA-XXXX-ADMIN (limited to the default Infomaniak Manager quotas)
- User1 (storage quota: 800 GB, service quota: 1 Mobile, 1 Server)
- User2 (storage quota: 200 GB, service quota: 1 Mobile, 1 VM)
To link a device to a user, download and install the Acronis agent on the device in question then confirm registration with the correct account (SBA-XXXX-ADMIN, user1 or user2):
To resolve registration issues, refer to this other guide.
Link para esta FAQ: https://faq.infomaniak.com/2573
Esta seção de perguntas frequentes foi útil?
This guide explains how to install the Acronis Backup Agent for Swiss Backup on Apple Macs equipped with M1, M2... processors using an ARM architecture instead of the usual x86 architecture.
Refer to this other guide if you are looking for information about uninstallation.
Install the specific ARM Acronis Agent
To access the Acronis management interface:
- Click here to access the Acronis Console with the credentials obtained after adding the device (need help?).
- Click on the user icon at the top right.
- Click on Downloads:

- Choose the client suitable for your machine:

Warning
If you take the version available from the left sidebar, it will not be compatible:
- Do not follow this method below as the version obtained will not be the correct one (Intel version):

Link para esta FAQ: https://faq.infomaniak.com/2583
Esta seção de perguntas frequentes foi útil?
This guide explains the procedure to modify a Swiss Backup offer, the secure backup solution in an independent Swiss cloud.
Modify your Swiss Backup offer
To access the modification of your Swiss Backup offer, follow these steps:
- Click here to open the management of your product in the Infomaniak Manager (need help?).
- In the list of your products, click on the action menu ⋮ located to the right of the name of your Swiss Backup space.
- Select Modify the offer:

- Adjust the parameters of your offer according to your needs by modifying:
- the storage space
- the number of devices
- the number of virtual machines via Acronis
- the number of Linux/Windows servers via Acronis
- etc.
- Click on Next and proceed to payment to validate the modification.
You can also manage your offer directly from the product dashboard:
Examples of offer modification
Initially, the user wanted to:
- back up an iOS/Android mobile device with Acronis
- and have a free backup of the Cloud type accessible by SFTP or similar method.
They now want to:
- back up two devices via Acronis (still the mobile device and a Windows computer), without keeping the free backup.
It modifies the quotas:
All you have to do is validate the payment to apply the modification.
Warning:
To remove a device type that you no longer want to have, this device must have been previously deleted from your Acronis console, which means that the quota displayed on the offer modification page must be zero.
For example, if you want to remove a website backup, you must first delete it from your Acronis dashboard.
Indeed, to completely modify the offer (for example, to keep only a single backup of a Windows computer), the command cannot be finalized as long as the following message appears:
"The number of selected licenses is less than the current usage of your product"
This message occurs when you try to reduce to zero the quantity of an active backup type.
In this case, proceed as follows:
- Click here to access the Acronis console with the credentials obtained when adding the device (need help?).
- Delete the device in question from the "Devices" menu.
- Wait about ten minutes for the quotas to update.
The quota of your devices displayed in the Infomaniak Manager should then go to zero. You will then be able to modify the offer without encountering any blocking errors.
Link para esta FAQ: https://faq.infomaniak.com/2624
Esta seção de perguntas frequentes foi útil?
This guide explains how to delete a device (such as a Cloud Backup) on Swiss Backup, the independent Swiss cloud backup solution.
Delete a device (Swift, S3, etc.)
To access Swiss Backup and remove one of the free backup locations:
- Click here to access your product management on the Infomaniak Manager (need help?).
- Click directly on the name assigned to the product concerned:

- Click on the blue button Manage my devices (in the Cloud Backup Space section):

- Click on the action menu ⋮ to the right of the object concerned in the displayed table.
- Click on Delete the device:

- Confirm the deletion by entering the login password for the Manager and activating the confirmation box.
The deletion of the device is irreversible and all backed-up data will be deleted from Infomaniak servers without the possibility of obtaining a restoration.
To choose a new device on Swiss Backup, refer to this other guide.
Link para esta FAQ: https://faq.infomaniak.com/2625
Esta seção de perguntas frequentes foi útil?
Este guia aborda o armazenamento imutável, um recurso de segurança essencial que permite proteger seus backups contra exclusão acidental ou maliciosa, incluindo ataques de ransomware.
Introdução
- O Armazenamento Imutável (Immutability) é uma configuração que torna os dados de seus backups Acronis não modificáveis e não excluíveis por um período de tempo que você define.
- Uma vez que o período de retenção esteja ativo, nenhuma ação (exclusão ou modificação) pode ser realizada nesses dados até que o período expire.
Configuração e Uso
Esta funcionalidade é gerenciada diretamente por meio dos Planos de Backup no console de gerenciamento Acronis Cyber Protect.
Consulte a documentação da Acronis para obter as etapas detalhadas de ativação da opção de imutabilidade em seu plano de backup.
Limitação em outros protocolos (Swift e S3)
A imutabilidade não está disponível em outros protocolos de armazenamento do Swiss Backup, como Swift e S3. Essa limitação se deve a restrições técnicas inerentes ao protocolo Swift OpenStack que esses armazenamentos utilizam.
Link para esta FAQ: https://faq.infomaniak.com/2763
Esta seção de perguntas frequentes foi útil?
This guide concerns backing up Microsoft OneDrive to Swiss Backup, the backup solution in a Swiss independent cloud.
Introduction
- Acronis (and other backup software) cannot back up OneDrive files that are only in the cloud.
- Microsoft's Files On-Demand feature creates NTFS reparse points instead of the actual files on the disk, which causes an error during the backup.
Disable Files On-Demand
It is possible to work around this issue by forcing OneDrive to download all files locally, and then restarting the backup:
- Click on the OneDrive icon in the notification area (taskbar).
- Open Settings > Sync and backup tab (or Settings depending on the version).
- Disable the Files On-Demand option.
- Wait for the files to download completely to your device.
- Restart the backup from Swiss Backup.
Warning: this operation requires sufficient local disk space to store all of your OneDrive files.
Alternative solutions
Link para esta FAQ: https://faq.infomaniak.com/2764
Esta seção de perguntas frequentes foi útil?
To restore a Swiss Backup backup on a virtual machine, refer to the Acronis documentation on the subject:
Link para esta FAQ: https://faq.infomaniak.com/2765
Esta seção de perguntas frequentes foi útil?
This guide details how to obtain the configuration information for Swiss Backup (Openstack Swift, S3, SFTP... type of free backup) and explains the differences between the passwords available to you.
Connection information (Cloud backup)
Access information
To access the information related to your Openstack Swift, S3, SFTP... type of free backup:
- Click here to access the management of your product on the Infomaniak Manager (need help?).
- Click directly on the name assigned to the product concerned:

- Click on the blue button Manage my devices (in the Cloud backup space section):

- Click on the name of the object concerned in the table that appears:

- The different information related to your device is displayed at the bottom of the page...
The different connection information (Swift, S3, etc.)
This information varies depending on the type of device chosen (Swift, SFTP, etc.) but notably includes:
| information requested | content to specify |
|---|---|
| username / login ID / username | most of the time in the form SBI-AB123456 |
| location | https://swiss-backup01.infomaniak.com or swiss-backup02... 03... etc. |
| version number | Keystone 3 |
| a password / access keys | ***** (see below to manage it) |
| path / path | /identity/v3 |
| Tenant / project name / project | most of the time in the form sb_project_ followed by the username so sb_project_SBI-AB123456 for example |
| domain name / domain | most of the time register default |
| region | RegionOne |
| bucket | most of the time register default or /default |
| identity endpoint | most of the time the location followed by the path (see above) so swiss-backup01.infomaniak.com/identity/v3 for example |
Different passwords
Infomaniak 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.
Cloud Backup - regeneration of the login password
To establish a connection of the Swift / S3 / FTP/SFTP / etc. type, a password must be generated for the first time when creating a device on the Swiss Backup interface and activating the identifier.
It is not possible to display an already generated password. If you forget it, you need to generate a new one:
- Click here to access the management of your product on the Infomaniak Manager (need help?).
- Click directly on the name assigned to the product concerned.
- Click on the blue button Manage my devices (in the Cloud backup space section):

- Click on the name of the object concerned in the table that appears:

- Click on Generate a new password or access keys and follow the wizard:

Acronis Backup
To establish a connection with Acronis, a password for this type of backup is generated when creating a device on the Swiss Backup interface and activating the identifier. There is also an encryption password.
Link para esta FAQ: https://faq.infomaniak.com/2766
Esta seção de perguntas frequentes foi útil?
This guide explains how to save WordPress data to a backup space on Swiss Backup, the independent Swiss cloud backup solution.
Preamble
- If the backups offered by Infomaniak do not meet or no longer meet your availability or security needs, or if your site is hosted elsewhere, your data can be backed up via an S3 Compatible connection on Infomaniak's servers; this ensures that you do not lose anything.
Install and configure the UpdraftPlus extension
Prerequisites
- Have a Swiss Backup space from Infomaniak with available device quota (minimum 1) for an iCloud backup.
- Add 1 device of type Cloud to obtain the S3 Compatible parameters.
Next:
- Add the WordPress extension UpdraftPlus which offers backup of WordPress data to S3 Compatible location.
- Click on Settings then UpdraftPlus Backups:
- Click on Settings then S3-Compatible (Generic):
- Further down, fill in the fields according to the information specific to your device.
- Here is the type of information you should have in your possession and that you need to specify in the different fields to create the connection:
You can then schedule your backups at regular intervals.
Download the backup manually
Your backups made via UpdraftPlus - S3 can be retrieved via an S3 compatible client, Cyberduck for example.
Restore an UpdraftPlus backup
Refer to this official guide in English.
Link para esta FAQ: https://faq.infomaniak.com/2767
Esta seção de perguntas frequentes foi útil?
As an Infomaniak Partner, it is recommended to manage your Swiss Backup clients within a single Acronis account/access, and to define groups/units on the Acronis console.
It is not possible to migrate end customers or end customer backups between 2 Swiss Backup accounts.
Link para esta FAQ: https://faq.infomaniak.com/2768
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 S3 Compatible no Swiss Backup, a solução de backup em uma nuvem suíça independente.
Introdução
Configurar o Cyberduck
Pré-requisitos
- Possuir um espaço Swiss Backup Infomaniak com uma quota de dispositivo disponível (mínimo 1) para um backup na nuvem.
- Adicionar 1 dispositivo do tipo Nuvem para obter os parâmetros S3 Compatible.
- Baixar e instalar o Cyberduck (macOS / Windows).
- Consultar a documentação oficial https://docs.cyberduck.io/protocols/openstack/infomaniak/.
Para configurar um novo backup:
- Abra o aplicativo Cyberduck.
- Clique em Open Connection:

- Clique no menu suspenso e escolha Mais opções:

- Aguarde o carregamento dos perfis adicionais:

- Procure e selecione os perfis correspondentes ao Infomaniak S3:

- Verifique, se necessário, o seu número de cluster indicado no Manager, nas informações de armazenamento Cloud, em "Localização".
- Feche a janela e reinicie o Cyberduck se os perfis não aparecerem no menu suspenso do ponto 3 acima.
- Escolha o perfil correspondente:

- Preencha os campos de acordo com as informações específicas do seu dispositivo:

- Clique no botão Conectar para estabelecer a conexão S3.
Link para esta FAQ: https://faq.infomaniak.com/2795
Esta seção de perguntas frequentes foi útil?
This guide details how to back up a Google Workspace space (Gmail, Google Drive, Google Calendar, …) using Acronis on Swiss Backup, the backup solution in an independent Swiss cloud.
It is also possible to back up other types of data.
Prerequisites
- Have a Swiss Backup space from Infomaniak with available device quota (minimum 1) for a Google Workspace backup (1 license per Workspace user to back up):

- If necessary, increase the device quota according to your needs.
- Add the device to the Infomaniak Manager to receive the login credentials.
- Create a new project on Google Cloud Platform (console.cloud.google.com) as a super administrator:

- Review the Acronis documentation on this topic:
- Allow 20 to 30 minutes to set everything up.
Authorize Acronis to access Google Cloud Platform
In the Google Cloud Platform console:
- Select your new project.
- In the navigation menu, select APIs and services > Enabled APIs and services:

- Disable one by one all the APIs enabled by default in this project:
- Scroll through the Enabled APIs and services page
- Click on the name of an enabled API.
- On the API/Service details page that opens, click on Disable and confirm:

- Go back to the previous page and do the same with the next API.
- From the navigation menu, select APIs and services > Library.
- In the API library, enable the following APIs, one by one, using the search bar to find the required APIs:

- Gmail API
- Google Drive API
- Admin SDK
- Google Calendar API
- Google People API
- Click on its name then on Activate.
- To search for the following API, go back to point 5.
- From the Google Cloud Platform navigation menu, select APIs and services > OAuth consent screen.
- In the window that opens, select Internal for the user type, then click on Create:

- In the Application name field, enter a name for your application.
- In the User support email field, enter the super administrator's address.
- In the Developer contact information field, enter the super administrator's address.
- Leave all other fields blank, then click on Save and continue.
- On the Scopes page, click on Save and continue without making any changes.
- On the Summary page, check your settings then click on Back to dashboard.
- In the Google Cloud Platform navigation menu, select Credentials > Service account.
- Click on Create a service account:

- Specify a name, a description and click on Create and continue:

- Do not modify anything in the Grant this service account access to the project and Grant users access to this service account steps.
- Click on Done; the Service accounts page opens.
- Select the new service account, then under Actions, click on Manage keys.
- Under Keys, click on Add key > Create new key, then select the JSON key type:

- Click on Create; a JSON file containing the service account's private key is automatically downloaded to your machine: keep this file safe as you will need it to add your Google Workspace organization to the Cyber Protection service as described later in this guide.
- In the Google Cloud Platform navigation menu, select Credentials > Service account.
- In the list, search for the service account you created, then copy its client ID which is displayed in the OAuth 2.0 Client ID column (OAuth 2.0 Client ID):

- Click here to access the Google administration interface as a super administrator.
- In the navigation menu, select Security > Access and data control > API controls:

- Scroll down the API controls page, then under Domain-wide delegation, click on Manage domain-wide delegation; the Domain-wide delegation page opens.
- On this page, click on Add:

- The Add a new client ID window opens.
- In the Client ID field, enter the client ID of your service account.
- In the OAuth scopes field, add the following "scopes":
- https://mail.google.com
- https://www.googleapis.com/auth/contacts
- https://www.googleapis.com/auth/calendar
- https://www.googleapis.com/auth/admin.directory.user.readonly
- https://www.googleapis.com/auth/admin.directory.domain.readonly
- https://www.googleapis.com/auth/drive
- https://www.googleapis.com/auth/gmail.modify
- Click on Authorize.
Your new Google Cloud project can therefore access the data of your Google Workspace account.
Creation of the backup space
To configure the backup of Google Workspace with Acronis:
- Click here to access the Acronis Console with the credentials obtained after adding the device (need help?).
- Click on the device addition button to add a Google Workspace type device:
- Enter the address of a super administrator of your Google Workspace account (it doesn't matter if two-step verification is activated for the super administrator's email account).
- Locate the JSON file that contains the private key of the service account you created in your Google Cloud project (or paste the content of the file as text).
- Click on Confirm:

Your Google Workspace organization then appears under the Devices tab of the service console:
Link para esta FAQ: https://faq.infomaniak.com/2805
Esta seção de perguntas frequentes foi útil?
This guide details how to back up a Microsoft 365 space using Acronis on Swiss Backup, the backup solution in an independent Swiss cloud.
Preamble
- What you can back up:
- Office
- OneDrive
- Exchange
- Teams
- SharePoint
- e-mails
- By default, OneNote notebooks are included in OneDrive file backups, Microsoft Teams, and SharePoint sites.
- It is also possible to back up other types of data.
Adding a Microsoft 365 organization
Prerequisites
- Have a Swiss Backup Infomaniak space with available device quota (minimum 1) for an Acronis Microsoft 365 backup (1 license per Office 365 user (seat) to back up):

- If necessary, increase the device quota according to your needs.
- Add the device to the Infomaniak Manager to receive the login credentials.
- Your account must have the global administrator role in Microsoft 365
- Review the Acronis documentation on this topic.
An administrator can add one or more Microsoft 365 organizations to a Swiss Backup account.
To add a Microsoft 365 organization:
- Click here to access the Acronis Console with the credentials obtained after adding the device (need help?).
- Click the add device button to add a Microsoft 365 Business type device:

- The software redirects you to the Microsoft 365 login page:

- Log in using the Microsoft 365 global administrator credentials.
- Microsoft 365 displays a list of permissions required to back up and restore your organization's data:

- Confirm that you are granting these permissions to the Cyber Protection service.
The Cloud Agent does not connect to Microsoft 365. The agent obtains the necessary permissions directly from Microsoft 365. You only need to confirm the granting of these permissions once while logged in as a global administrator. The agent does not store your account credentials and does not use them to perform backups and restores. Changing the password of this account or deactivating or deleting this account in Microsoft 365 does not affect the operation of the agent.
Your Microsoft 365 organization then appears under the Devices tab in the Cyber Protect console:
Backup / Synchronization Frequency
The Cloud Agent synchronizes with Microsoft 365 every 24 hours, starting from the moment the organization is added to the Cyber Protection service. If you add or delete a user, group, or site, this change will not be immediately visible in the Cyber Protect console.
Immediate Synchronization
To synchronize the change immediately, select the organization on the Microsoft 365 page and then click Refresh.
If you have applied a protection plan to the All Users, All Groups, or All Sites group, recently added items will only be included in the backup once synchronization has been performed.
In case of slowdowns
If the Microsoft 365 Cloud-to-Cloud (C2C) backup or restore tasks are running slower than expected and taking a long time to complete, refer to this other guide to temporarily disable Exchange Web Services API throttling to improve performance when restoring Microsoft 365 items.
Deleted Items
In accordance with Microsoft's policy, when a user, group, or site is deleted from the Microsoft 365 graphical interface, it remains available for a few days via the API. During this period, the deleted item is inactive (grayed out) in the Cyber Protect console and is not backed up.
When the deleted item is no longer available via the API, it will disappear from the Cyber Protect console. Its backups (if any) are located under Backup Storage > Cloud Application Backups.
Learn More
Link para esta FAQ: https://faq.infomaniak.com/2825
Esta seção de perguntas frequentes foi útil?
This guide explains how to delete a Swiss Backup backup with Acronis, and the different scenarios that may occur during deletion. Also refer to this other Acronis guide on the subject.
Prerequisites
- At least one device must be registered (and online) with the same credentials used to perform the backup:
- For example, if the goal is to delete a backup made by
SBA-XXXX-ADMINbut no device is online, simply download Acronis on another device and register it with the same user:
- For example, if the goal is to delete a backup made by
- Deletion requires free space:
- Please consider increasing your user quota (help), once the deletion is complete, you can return the quota to the agreed level:

- Please consider increasing your user quota (help), once the deletion is complete, you can return the quota to the agreed level:
- Refresh storage:
- If a deletion has been made recently, be patient, the deletion may take some time depending on the size of the archive to be deleted; if the used storage space has not changed, refresh the backup location:

- If a deletion has been made recently, be patient, the deletion may take some time depending on the size of the archive to be deleted; if the used storage space has not changed, refresh the backup location:
Delete an Acronis backup
To do this:
- Log in to Backup Storage son the Cyber Protect console.
- Select the location from which you want to delete the backups.
- Select the backup archive from which you want to delete the backups.
Delete the entire backup archive
- Click on Delete.
- Deleting a backup archive deletes all backups in that archive.
Delete a specific backup in the backup archive
- Click on View backups.
- Select the backup (restore point) you want to delete.
- Click on Actions > Delete:
- When deleting a backup archive, check the box then click on Delete to confirm your decision.
- When deleting a specific backup, click on Delete to confirm your decision.
Delete all backups related to a user
- Even if no device is online, you can Disable > Delete (refer to this Acronis guide on the subject).
Delete incomplete backups (if any)
- Refer to this other guide for detailed instructions.
Certificate
If the storage quota/deletion problem persists even after increasing the storage quota of the affected user, it is recommended to reinstall Acronis.
When Acronis is completely uninstalled, this deletes the certificate that may be causing this bug.
To manually delete the certificate, without uninstalling Acronis:
- Check its location and delete/move the certificate - refer to this other guide.
- Restart Acronis Managed Machine Service - refer to this other guide.
- Run a backup or refresh the storage.
- This will generate a new certificate and resolve the storage quota issue.
Link para esta FAQ: https://faq.infomaniak.com/2877
Esta seção de perguntas frequentes foi útil?
This guide helps you if your SFTP software/client suddenly displays a request to accept a new fingerprint (digital fingerprint) when using the Swiss Backup Infomaniak service.
SFTP software/client alert
If your SFTP software suddenly displays a message asking you to accept a new fingerprint (digital fingerprint), this does not necessarily indicate a security issue. This request may occur following planned technical changes to Infomaniak's infrastructure (if you have received an email about this).

Indeed, as part of the evolution of its services, Infomaniak has recently changed the SFTP gateway used to access hosted files. These changes involve the deployment of new SSH keys on the server side. However, for security reasons, SFTP software/clients systematically compare the server key with the one they have in memory.
If a difference is detected, even if legitimate, they alert you to request confirmation. Therefore, it is normal for an alert to appear and for you to be asked to approve a new fingerprint.
Check if necessary
You can check the official new fingerprints of Infomaniak's SSH keys below. If they match what is displayed in your software, you can accept them with confidence:
4096 SHA256:p4QkBc70lkIpDZpjJAZ4VbPEIaOv54lWxd/DRCMfwgg sftp.swiss-backup.infomaniak.com (RSA)
4096 MD5:a3:6b:fa:7c:0e:22:da:42:ca:82:c7:cc:7e:1f:0a:4a sftp.swiss-backup.infomaniak.com (RSA)4096 SHA256:gMiEH8oVwWhq8ByQWQP8xMEVy3URi2omZNSMCc0n8z0 sftp.swiss-backup02.infomaniak.com (RSA)
4096 MD5:d2:1a:11:9a:06:4c:55:98:df:38:cd:70:be:08:dd:ca sftp.swiss-backup02.infomaniak.com (RSA)4096 SHA256:EcQDR+VNUCbK1Zz/eDoa295c0+7JGQD7EP6n+ro5G0U sftp.swiss-backup03.infomaniak.com (RSA)
4096 MD5:bf:5e:92:f7:ed:81:de:84:9e:43:48:f3:1a:9c:3e:8d sftp.swiss-backup03.infomaniak.com (RSA)4096 SHA256:xRU5RakUZ/yJYg3CDi9JiSRymodbPgM4S3FXvVHqK2s sftp.swiss-backup04.infomaniak.com (RSA)
4096 MD5:16:ce:56:02:c3:ab:80:7b:31:99:a6:cd:a8:00:0e:79 sftp.swiss-backup04.infomaniak.com (RSA)This change has no impact on the security of your data. If you use scripts or automated software for your transfers or backups, make sure they take this new fingerprint into account.
Link para esta FAQ: https://faq.infomaniak.com/2889
Esta seção de perguntas frequentes foi útil?