bonjour,
depuis le passage à la version 9.39 (mac os x), le "building files list" est devenu très très long,
presque 24h pour 540 000 fichiers/dossiers (copie > ftps). J'ai fait différents profil sans changements.
Y'a-t-il une option à cocher ou décocher que je n'aurais pas vu ou pas comprise ?
Merci.
Building files list interminable
Re: Building files list interminable
Veuillez voir
https://www.syncovery.com/documentation/faq/fastlist/
Veuillez noter que lorsque vous utilisez le cache de la liste de fichiers, il l'accélérera uniquement lors de la deuxième exécution. La première fois, la base de données doit être remplie.
Dans la boîte de dialogue du cache de la liste des fichiers, veuillez utiliser uniquement la coche supérieure et supprimer les deux autres.
Mais si vous pouviez installer Syncovery Remote Service sur le serveur ftp, ce serait encore mieux.
https://www.syncovery.com/documentation/faq/fastlist/
Veuillez noter que lorsque vous utilisez le cache de la liste de fichiers, il l'accélérera uniquement lors de la deuxième exécution. La première fois, la base de données doit être remplie.
Dans la boîte de dialogue du cache de la liste des fichiers, veuillez utiliser uniquement la coche supérieure et supprimer les deux autres.
Mais si vous pouviez installer Syncovery Remote Service sur le serveur ftp, ce serait encore mieux.
Re: Building files list interminable
Merci pour votre réponse.
Aujourd'hui, il a mis plus de 6h pour passer de 547000 à 549000 par exemple.
Je vais effectuer les manipulations que vous m'avez indiquées. Merci.
Aujourd'hui, il a mis plus de 6h pour passer de 547000 à 549000 par exemple.
Je vais effectuer les manipulations que vous m'avez indiquées. Merci.
Re: Building files list interminable
Est-il possible d'installer Synchovery remote Service sur un Ubuntu ?
Re: Building files list interminable
hello,
When I install the Syncovery RS service on my Linux FTP Repository, a web page is accessible for the configuration.
But this page is fully accessible from Internet with no restriction.
After this step done, is it possible to shutdown the web page or to protect it without kill the Syncovery RS daemon ?
Thank you.
When I install the Syncovery RS service on my Linux FTP Repository, a web page is accessible for the configuration.
But this page is fully accessible from Internet with no restriction.
After this step done, is it possible to shutdown the web page or to protect it without kill the Syncovery RS daemon ?
Thank you.
Re: Building files list interminable
Hello,
such pages can be restricted with your Firewall. If you have Plesk or CPanel it should be easy to block it entirely, or allow it only from specific IP addresses (such as your home IP).
Do you have Plesk or CPanel? If not, do you know which Firewall is installed?
such pages can be restricted with your Firewall. If you have Plesk or CPanel it should be easy to block it entirely, or allow it only from specific IP addresses (such as your home IP).
Do you have Plesk or CPanel? If not, do you know which Firewall is installed?
Re: Building files list interminable
Is there any specific firewall rule setup guide for restricting access to the Syncovery Remote Service page on Ubuntu without using tools like Plesk or cPanel?
Re: Building files list interminable
Hello,
it depends on how your Firewall is currently set up.
Mine drops all incoming packages except the allowed ones.
It allows port 80 and 443 for the web pages:
/usr/sbin/iptables -A INPUT -p tcp --dport 80 -j ACCEPT
/usr/sbin/iptables -A INPUT -p tcp --dport 443 -j ACCEPT
And allows port 8949 for the remote service only from a specific IP address:
/usr/sbin/iptables -A INPUT -p tcp --dport 8949 -s 123.123.123.123 -j ACCEPT
It also allows some other ports that I need, such as SSH only from my office IP address too.
it depends on how your Firewall is currently set up.
Mine drops all incoming packages except the allowed ones.
It allows port 80 and 443 for the web pages:
/usr/sbin/iptables -A INPUT -p tcp --dport 80 -j ACCEPT
/usr/sbin/iptables -A INPUT -p tcp --dport 443 -j ACCEPT
And allows port 8949 for the remote service only from a specific IP address:
/usr/sbin/iptables -A INPUT -p tcp --dport 8949 -s 123.123.123.123 -j ACCEPT
It also allows some other ports that I need, such as SSH only from my office IP address too.
Re: Building files list interminable
Thankyou for this valuable information.