how to execute a file. ksh remotely from windows

Hi,

I run a file.ksh remotely from Windows through a exec.
there is any way to do it?

or just programmed in the crontab?

thanks.


Paul Lopez :el_salvador: (BOB member since 2009-04-15)

I do it in two ways.

  1. Create a trust using .rhosts entry on the unix server to the windows account which will run the process. Then i do a rsh to execute the script.

  2. Create a trust using private/public keys (putty) and add the windows server as a known and trusted host on the unix box. Then call the unix script using a secure shell (ssh).

Anup


anup_kumar_n :us: (BOB member since 2008-04-29)