On 3/27/2014 10:40 AM, Jake anderson wrote: > Yes it is reserved in TCPIP PROFILE. > > Also instead of Userid root running the start up command, I would like to > re-direct to another ID. > > So that /u/users/bfgagent -s is started by abc123 instead of root. I tried > with su -abc123 /u/users/bfagent -s, but it is asking for the password of > abc123. During IPL, is there a way to supply password during mount ? Oh, oh...I've been away from z/OS way too long to be able to answer that one. You'd be better off asking these questions on the IBM-MAIN mailing list since you're dealing with USS instead of Linux.
Leland I agree with Leland, IBM-MAIN is good for this; MVS-OE may actually be better. That said, you can also use inetd and /etc/inetd.conf in USS, which is probably best if bfagent uses it on Linux. Our /etc/inetd.conf is quite standard: #====================================================================== # service | socket | protocol | wait/ | user | server | server program # name | type | | nowait| | program | arguments #====================================================================== # otelnet stream tcp nowait OMVSKERN /usr/sbin/otelnetd otelnetd -l shell stream tcp nowait OMVSKERN /usr/sbin/orshd orshd -LV login stream tcp nowait OMVSKERN /usr/sbin/rlogind rlogind -m exec stream tcp nowait OMVSKERN /usr/sbin/orexecd orexecd -LV finger stream tcp nowait OMVSKERN /usr/sbin/fingerd fingerd The manual is quite good on setting up inetd but we start it from /etc/rc with _BPX_JOBNAME='INETD' /usr/sbin/inetd /etc/inetd.conf & cheers Peter Peter Bishop ---------------------------------------------------------------------- For LINUX-390 subscribe / signoff / archive access instructions, send email to [email protected] with the message: INFO LINUX-390 or visit http://www.marist.edu/htbin/wlvindex?LINUX-390 ---------------------------------------------------------------------- For more information on Linux on System z, visit http://wiki.linuxvm.org/
