Page 1 of 1

How can I export configuration/everything so I can import it later?

Posted: Fri May 24, 2024 1:54 am
by IMTheNachoMan
I need to reinstall Linux on my box.

I want to export Syncovery settings, including profiles, so I can import it in the new install.

The export option exports a cfg file but the import looks for an ini file. I'm not sure what to do?

Re: How can I export configuration/everything so I can import it later?

Posted: Fri May 24, 2024 8:55 am
by tobias
Hi,
you can manually put the cfg file in the correct folder on the new system, while Syncovery is stopped.

The cfg file is an SQL database, so it cannot be replaced while Syncovery is running.

Note that passwords and cloud access tokens will be lost because the password encryption is locked to specific system installation IDs.

You can avoid this by temporarily changing the encryption type to weak/legacy on the first tab sheet of the Program Settings dialog. Let Syncovery re-encrypt the settings and then download the cfg file.

Re: How can I export configuration/everything so I can import it later?

Posted: Fri May 24, 2024 10:25 pm
by IMTheNachoMan
Ah. Got it. Thank you!

Re: How can I export configuration/everything so I can import it later?

Posted: Tue May 28, 2024 1:31 am
by IMTheNachoMan
How do you actually stop Syncovery on Linux? I cannot find any service option to stop it.

Re: How can I export configuration/everything so I can import it later?

Posted: Tue May 28, 2024 11:54 am
by tobias
You can use this command line:

SyncoveryCL stop

If you have the Guardian running, you need to stop it first:

SyncoveryGuardian stop

Re: How can I export configuration/everything so I can import it later?

Posted: Tue May 28, 2024 12:21 pm
by IMTheNachoMan
Ah. Got it. Thanks!

Re: How can I export configuration/everything so I can import it later?

Posted: Tue Jun 04, 2024 2:09 am
by IMTheNachoMan
Can I change the path to the Syncovery.cfg file on Linux?

I dual boot Kubuntu and OpenSUSE. I jump between the two.

Both share the same data partition.

I have Syncovery installed on both, with the same profiles/settings.

For one of my profiles, I am using two way sync so it needs a database.

I want to be able to tell Syncovery on both installations to use the same .cfg file and same DB path.

Re: How can I export configuration/everything so I can import it later?

Posted: Tue Jun 04, 2024 4:09 pm
by tobias
Hello,
yes. Please follow these steps:

1. Stop the Syncovery service (and possibly the Guardian first):

Code: Select all

SyncoveryGuardian stop
SyncoveryCL stop
2. copy the existing Syncovery.cfg file to the new folder (or the whole .Syncovery folder)

3. edit /etc/SyncoveryCL.conf to point to the new folder, for example:

Code: Select all

workdir=/mnt/data/.Syncovery
4. restart Syncovery

Code: Select all

SyncoveryCL start
5. you may also need to change the Logs and Database folder on the Program Settings dialog within the web GUI.

Re: How can I export configuration/everything so I can import it later?

Posted: Tue Jun 04, 2024 4:17 pm
by IMTheNachoMan
Awesome. I will do that. Thank you!