...
Code Block |
---|
edit ECF_JOB_CMD "rshssh %HOST% '%ECF_JOB% > %ECF_JOBOUT% 2>&1 &'" |
As ecFlow makes use of standard UNIX permissions you may experience problems using rsh ssh. Make sure that the file $HOME/.rhosts contains a line with your username and the machine where your ecFlow is runningssh contains right settings.
If your login shell is csh, you can define ECF_JOB_CMD as:
Code Block |
---|
edit ECF_JOB_CMD "rshssh %HOST% '%ECF_JOB% >& %ECF_JOBOUT%'" |
...