Quantcast
Channel: Koha Geek
Viewing all articles
Browse latest Browse all 156

Run Koha cronjob in convenient time

$
0
0
Koha cronjobs are running on midnight. Overdue amount does not calculate by Koha in libraries shutting down Koha server at evening . You can run cronjob in convenient time.

Add following script in cronjob,

Open Applications > Accessories > Terminal

type crontab -e 

It will ask to select editor to open crontab. Press Enter button to proceed.

Add the following line in crontab editor

25 6 * * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )

Change running time of cronjob.

Press Ctrl + O to save the changes. Then Ctrl + X exit. 

Viewing all articles
Browse latest Browse all 156

Trending Articles