I am newbi in amazon ec2 as well as linux,
I am working on pentaho kettle, for starting my job process i m using following command in amazon ec2 instance,
cd /dev/pdi/data-integration (reaching to specific directory)
screen (the process which never die so using screen for this)
./kitchen.sh -file="/dev/pdi/pdi_transformations_jobs/capella_job.kjb" -param:ROUTE_TO_LOG="/dev/logs/capellajobOutput.log" (for starting batch file)
Now i want to do something like i want to start my ec2 instance as well as job process at particular given time.
i can write a cron script for this but i read some-where that amazon ec2 instance does-not support cron , am i right?
i am putting above 3 commands in 1 .sh file and trying to create a similar file like batch file so that it automatically executes all three command, but i am getting error like " no such file or directory and command not found "
so can somebody explain me what is wrong and how to achieve a particular thing what i suppose to do.