T.R | Title | User | Personal Name | Date | Lines |
---|
1352.1 | | TOOK::RASPUZZI | Michael Raspuzzi - LAT/VMS Engineering | Fri Sep 01 1989 12:38 | 8 |
| I use a .COM file that has the following in it:
$ set display/creat/nod=my_workstation
$ spawn/not/now/inp=nl:/proc="FILEVIEW" run sys$system:vue$master
$ exit
Mike
|
1352.2 | | TOOK::RASPUZZI | Michael Raspuzzi - LAT/VMS Engineering | Fri Sep 01 1989 12:40 | 6 |
| I guess it also goes without saying that you have used the cusomtize security
from the window manager on your workstation to allow the remote node to use
your workstation as a siaply device.
Mike
|
1352.3 | Thank you! | EST::JARGENTATI | | Fri Sep 01 1989 13:51 | 4 |
| Thank you very much, Mike.
- John
|
1352.4 | no login required | DINSCO::HOULE | Steve, NM is the future! | Mon Sep 11 1989 18:23 | 45 |
| i read this and more. Here's how I did it.
Use two com files on the 'server node' and issues a submit/remote from my
workstation.
Don't ask why all the switches!!!
I do this;
submit/remote server_node::startit.com
=========startit.com
$!s.houle
$ define sys$print nl:
$ set proc/priv=detach
$run sys$system:loginout.exe -
/detach -
/uic=houle -
/proc=shh_vue -
/buff=40960 -
/subprocess=20 -
/file=100 -
/extent=2048 -
/enque=200 -
/ast_lim=80 -
/io_buf=50 -
/io_dir=18 -
/job_table=1024 -
/maximum_working=4096 -
/page=40960 -
/queue=20 -
/working=512 -
/input=pub:[houle]xxx_fv.com -
/output=pub:[houle]startit.log
And here it xxx_fv.com
====================
$!s.houle sept/89 com to startup up fileview on dinsco
$!
$set display/create/node=1shot
$define/job/exec sys$login pub:[houle]
$define/job/exec sys$login_device pub:
$define/job/exec sys$scratch pub:[houle]
$@sys$manager:decw$startvue.com
$!
;;;;;;;;;;;;;;;;;;;enjoy!;;;;;;;;;;;;;
|
1352.5 | Try /AUTHORIZE on RUN LOGINOUT | PNEUMA::DAVY | Lee T. Davy IVIS et.. al... | Tue Nov 14 1989 12:54 | 21 |
| $ RUN/DET SYS$SYSTEM:LOGINOUT/INP=USER:[your_name]vue_LOGIN.COM -
/OUT=USER:[your_name]myvue_LOGIN.LOG -
/BUFFER=20000 -
/PAGE=20000 -
/SUBPROCESS=5 -
/PRIV=(NETMBX,TMPMBX) -
/AUTHORIZE -
/UIC=[your_name]
where vue_LOGIN.com is ...
$! Setting the process name avoids duplicate effort
$ SET PROCESS/NAME="host_node your_name"
$ SET DISPLAY/PERM/CREATE/NODE=ws_node
$ DEFINE/NOLOG SYS$LOGIN USER:[your_name]
$ DEFINE/NOLOG SYS$LOGIN_DEVICE USER:
$ DEFINE/NOLOG SYS$SCRATCH USER:[your_name]
$! WRITE SYS$OUTPUT "''F$GETJPI(0,"BYTLM")'"
$! SHO PROC/ALL
$ SPAWN/NOWAIT/OUT=NL: MC VUE$MASTER
$ MC DECW$MAIL
|