I want to run this statement:
curl \'http://localhost:8983/solr/dataimport?command=full-import\'
every 10 minutes using CRON jobs.
In case of using Cpanel : Cpanel->Cron Jobs->Put Time Interval(*/10 * * * * ) Add command in the text box:curl -s "http://localhost:8983/solr/dataimport?command=full-import" where -s stands for silent (no output) You are done
curl -s "http://localhost:8983/solr/dataimport?command=full-import"