AutoSys Tutorials

Hi,

Where can I find a good AutoSys User Guide so that I can get all the details on those AutoSys commands like "sendevent" and "autorep"?

Thanks a lot in advance.

http://supportconnectw.ca.com/public/autosys/infodocs/autosys_cheatsheet.asp

Hi,

I have the requirement to transfer jobs from cron to Autosys.

(1) Would like to know the steps to move one cron job to Autosys.
(2) Using Autosys, can I execute unix jobs of different servers?

Thanks in advance.

Yes, you could call the unix comands in Autosys, Profile is the most important attribute for any job to be executed, please make sure the environmental variable's are specified properly.
cron2jil is the command which you would have to run, after sourcing autosys on the machine you are working, you could run this command.
Autosys does not take the calendar values of the cron jobs,
Please make sure that you dont include a file which has lot of cron jobs for conversion as it may lead to issues.
For all the values you have charecter limit in autosys jil which should also be taken care of

Hi,
If you have a good material on AutoSys or a link where i can get the source, Pls send that ....

hkumar,

Here are some handy aliases to use with autosys...

# Send Event
alias -x se='sendevent -E'

# Start Job
alias -x fsj='sendevent -E FORCE_STARTJOB -J'
alias -x sj='sendevent -E STARTJOB -J'

# Job Report
ar='autorep -w -J '

fsj='sendevent -E FORCE_STARTJOB -J'
hold='sendevent -E JOB_ON_HOLD -J '
ice='sendevent -E JOB_ON_ICE -J '

jd='job_depends -c -w -J '
killjob='sendevent -E KILLJOB -J '
offhold='sendevent -E JOB_OFF_HOLD -J '
office='sendevent -E JOB_OFF_ICE -J '
se='sendevent -E'
sj='sendevent -E STARTJOB -J'
success='sendevent -E CHANGE_STATUS -s SUCCESS -J '
terminate='sendevent -E CHANGE_STATUS -s TERMINATED -J '

Display JIL (Job Instruction Language):
autorep -w -J <jobname> -q

Load JIL:
jil < JIL_source

Find unique commands currently being used:
autorep -J PARTIALJOBNAME% -q | grep "command:" | awk -F: '{print $2}'|awk '{print $1}' | sort -u > /tmp/cmds.txt

Meaning of AutoSys status:
STATUS	AUTOSTATUS	Meaning
RU	RUNNING			Running
ST	STARTING		Starting
SU	SUCCESS			Success
FA	FAILURE			Failure
TE	TERMINATED		Terminated
OI	ON_ICE			On Ice
IN	INACTIVE		Inactive
AC	ACTIVATED		Activated
RE	RESTART			Restart
OH	ON_HOLD			On Hold
QW	QUE_WAIT		Queue Wait
RD				Refresh Dependencies
RF				Refresh Filewatcher

Forecast report from date to infinity:

   job_depends -t -J ALL -F "mm/dd/yyyy"

Display all jobs scheduled to run between these two dates:

 job_depends -t -J ALL -F:06/01/2008 -T:06/30/2008

check if the event procesor is up and running

chk_auto_up

Display list of available timezones:

autotimezone -l 

Get version information:

autoflags -a

View Remote Agent log:

autosyslog -J jobname

AutoSys Unix xwindows GUI control panel

autosc &

Check Database connections:

autoping -m machinename -D

Use cron2jil feature. For more info check your manual or just type " man cron2jil " on the command line -- offcourse after setting up your profile.

e.g: if you have a crontab file called file1. Try the following..

>cron2jil -f file1

this will create a file1.jil file in the present directory.