Re: remote execution of idl script [message #91212 is a reply to message #91211] |
Wed, 17 June 2015 08:20   |
Lajos Foldy
Messages: 176 Registered: December 2011
|
Senior Member |
|
|
On Wednesday, June 17, 2015 at 4:55:59 PM UTC+2, trisb wrote:
> This is my hw.isc:
> -----
> print,"Hello world"
> exit
> -----
>
> This is the output from running
>
> ssh remote_server_name 'idl hw.isc'
>
> once it stalls:
> -----
> IDL Version 8.3 (linux x86_64 m64). (c) 2013, Exelis Visual Information Solutions, Inc.
> Installation number: [redacted]
> Licensed for use by: [redacted]
>
> -----
>
> I also tried to ssh into the host server/headnode, but it results in the same problem.
>
> Thanks,
> Flo.
Is there any IDL_STARTUP file on the remote host?
What does "ssh remote_server_name 'cat hw.isc'" print?
If it is OK and the remote host is Linux, you can try
ssh remote_server_name 'strace idl hw.isc'
This will print a zillion lines but you will see where IDL stalls at the end.
I can not guess your setup problem without access to the system. Show my previous working example to your IDL or system admin.
regards,
Lajos
|
|
|