You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/en/success-guide/scheduling.md
+6-3Lines changed: 6 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -33,6 +33,8 @@ Check the documentation on the windows task scheduler (help schtasks) for more d
33
33
34
34
Note that often when setting up scheduled tasks, commands that work from the command line do not work in the scheduled task because the current directory or user id is different. It is a good idea to run one of the test mode commands (described in the "Make a Test Run" section) the first time you try the scheduled task.
35
35
36
+
When scheduling your task please limit your sync to once a day and consider a time that works best for you, taking into consideration other timezones and clients.
37
+
36
38
37
39
## Setting Up Scheduled Run on Unix-Based Systems
38
40
@@ -45,14 +47,15 @@ First, create a shell script with the invocation of user-sync piped to a scan to
45
47
46
48
You need to fill in your specific User Sync command line options and the email address to which the report should be sent.
47
49
48
-
This entry in the Unix crontab will run the User Sync tool at 4 AM each day:
50
+
This entry in the Unix crontab will run the User Sync tool at 1 AM each day:
49
51
50
-
0 4 * * * path_to_Sync_shell_command/run_sync.sh
52
+
0 1 * * * path_to_Sync_shell_command/run_sync.sh
51
53
52
-
Cron can also be setup to email results to a specified user or mailing list. Check the documentation on cron for you Unix system for more details.
54
+
Cron can also be setup to email results to a specified user or mailing list. Check the documentation on cron for your Unix system for more details.
53
55
54
56
Note that often when setting up scheduled tasks, commands that work from the command line do not work in the scheduled task because the current directory or user id is different. It is a good idea to run one of the test mode commands (described in the "Make a Test Run" section) the first time you try the scheduled task.
55
57
58
+
When scheduling your cron job please limit your sync to once a day and consider a time that works best for you, taking into consideration other timezones and clients.
56
59
57
60
[Previous Section](command_line_options.md)\|[Back to Contents](index.md)
0 commit comments