vote up 0 vote down star

Has anyone run an exe using cron job?

I want to run an exe at scheduled intervals on a cloud server. The scheduled exe is created using .NET.

The cloud server has facility of running Cron jobs using ruby, php, perl, python and http I do not have much knowledge of what a cron job is.

What would be the best way of scheduling the EXE? It is important that the adopted method is secure and not accessible to everyone.

Many Thanks!

flag

33% accept rate
1  
Which cloud server? – AndrewSmith Oct 2 at 18:11

2 Answers

vote up 0 vote down

cron is a Unix daemon that runs shell commands according to a configured schedule (the crontab). Your cloud server provider must have something similar they call cron that runs "ruby, php, perl, python and http" jobs. You'd need to consult their documentation to understand how that works.

I'm not sure what kind of security you're looking for. A traditional cron job is equivalent to logging in and executing the command. If that's "secure", then the cron job is "secure".

link|flag
Regarding security: I was thinking of calling ASP.NET page using HTTP, which is supported by the cloud provider. But then this page will be available for anyone to call. I was thinking about possible ways to prevent that happening. one of the ways could be - allow requests from only a fixed IP. But since I do not know enough about cloud, I am not sure whether this will work. Will try anyway. Thanks! – Puneet Oct 5 at 10:05
The simplest way would be to call https://username@password:www.mysite.com/mypath/ That will use Basic authentication with "username". However, this feels like the wrong solution to your problem. You might as well have a cron job running on the web server instead of relying on another server to call it at certain times. – Jeremy Stein Oct 5 at 12:30
vote up 0 vote down

Many of cloud services can launch only that type of executables which allowed by service terms.To launch .NET that's needed to install some soft for that.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.