Operating System - HP-UX
1753925 Members
9014 Online
108810 Solutions
New Discussion юеВ

Windows program to activate HP-UX process?

 
SOLVED
Go to solution
John Kittel
Trusted Contributor

Windows program to activate HP-UX process?

What are options, or best way, for a Windows batch script to activate or trigger a process to run on an HP-UX system?

We have an edi application on a Windows system that receives transfers from various places. It then ftp's these files to our HP-UX system. That is scripted in a Windows batch file. Then we need to run a program on the HP-UX system to process these files. Currently the analysts who have set this all up are just scheduling cron jobs to go process files when they "should" be there. But of course they keep breaking because of special circumstances that cause the files not to be there when they should.
4 REPLIES 4
Steven E. Protter
Exalted Contributor
Solution

Re: Windows program to activate HP-UX process?

There is a windows release of openssh/secure shell.

http://www.networksimplicity.com/

This can bet set up to run ssh with commands on an HP-UX server/workstaion. With a little more work, public keys can be exchanged and the access can be password free.

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
Thayanidhi
Honored Contributor

Re: Windows program to activate HP-UX process?

"rsh" is available in windows. Similar to "rcp" you need to set the .rhosts file in UNIX, and you would be able to run "rsh".

I am quiet sure about security of using rsh.
Similar "remsh" in hp-ux

Script which transfers the file (ftp?) can be continued with rsh.

Regds
TT
Attitude (not aptitude) determines altitude.
Thayanidhi
Honored Contributor

Re: Windows program to activate HP-UX process?

Typo..

My previous post to be read as "I am not sure"

Regds
TT
Attitude (not aptitude) determines altitude.
John Kittel
Trusted Contributor

Re: Windows program to activate HP-UX process?

Well, that was easy. Thank you.

I will go with the openssh/secure shell method.

For future readers of this thread, I found another thread on this subject,
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=795232

- which provides the web link for the free download of the non-secure Microsoft Services for UNIX (SFU), here:

http://www.microsoft.com/windows/sfu/productinfo/default.asp

- John