<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: how to take &amp;quot;INQUIRE&amp;quot; effect on systartup_vms.com procedure? in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/how-to-take-quot-inquire-quot-effect-on-systartup-vms-com/m-p/3558687#M6001</link>
    <description>Hi,&lt;BR /&gt;to avoid halt in bootstrap procedure, you can change Uwe's example as follow:&lt;BR /&gt; &lt;BR /&gt;$ open /read/write CHN_OPA0 OPA0:&lt;BR /&gt;$ read /error=label/TIME=10 CHN_OPA0 DATA /prompt="Yes? "&lt;BR /&gt;... process input in symbol DATA&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;somewhere else:&lt;BR /&gt;$label:&lt;BR /&gt;sts=$status&lt;BR /&gt;if sts.eq.%X000181B0&lt;BR /&gt;then&lt;BR /&gt;... time-out&lt;BR /&gt;else&lt;BR /&gt;... error processing&lt;BR /&gt;endif&lt;BR /&gt; &lt;BR /&gt;Antonio Vigliotti&lt;BR /&gt;</description>
    <pubDate>Tue, 07 Jun 2005 02:43:57 GMT</pubDate>
    <dc:creator>Antoniov.</dc:creator>
    <dc:date>2005-06-07T02:43:57Z</dc:date>
    <item>
      <title>how to take "INQUIRE" effect on systartup_vms.com procedure?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-to-take-quot-inquire-quot-effect-on-systartup-vms-com/m-p/3558678#M5992</link>
      <description>i write a dcl script to do something on openvms 7.3-2,my scripts used the "INQUIRE" dcl command,i hope put my script into systartup_vms.com file,and  execute it on openvms boot procedure,but i find the dcl "INQUIRE" not effect,the procedure can't interactive,how to resolve it??&lt;BR /&gt;&lt;BR /&gt;help me please and thx</description>
      <pubDate>Mon, 06 Jun 2005 12:19:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-to-take-quot-inquire-quot-effect-on-systartup-vms-com/m-p/3558678#M5992</guid>
      <dc:creator>wang_17</dc:creator>
      <dc:date>2005-06-06T12:19:46Z</dc:date>
    </item>
    <item>
      <title>Re: how to take "INQUIRE" effect on systartup_vms.com procedure?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-to-take-quot-inquire-quot-effect-on-systartup-vms-com/m-p/3558679#M5993</link>
      <description>The startup process is a very limited environment. I don't have any procedures handy, but if I recall correctly, I did it this way:&lt;BR /&gt;&lt;BR /&gt;$ open /read/write CHN_OPA0 OPA0:&lt;BR /&gt;$ read /error=label CHN_OPA0 DATA /prompt="Yes?  "&lt;BR /&gt;... process input in symbol DATA&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;somewhere else:&lt;BR /&gt;$label:&lt;BR /&gt;... error processing</description>
      <pubDate>Mon, 06 Jun 2005 12:28:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-to-take-quot-inquire-quot-effect-on-systartup-vms-com/m-p/3558679#M5993</guid>
      <dc:creator>Uwe Zessin</dc:creator>
      <dc:date>2005-06-06T12:28:26Z</dc:date>
    </item>
    <item>
      <title>Re: how to take "INQUIRE" effect on systartup_vms.com procedure?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-to-take-quot-inquire-quot-effect-on-systartup-vms-com/m-p/3558680#M5994</link>
      <description>The simplest command is,&lt;BR /&gt;&lt;BR /&gt;$if mode .es. "interactive' then set term/inq.&lt;BR /&gt;&lt;BR /&gt;this is very useful for all logins.&lt;BR /&gt;</description>
      <pubDate>Mon, 06 Jun 2005 15:42:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-to-take-quot-inquire-quot-effect-on-systartup-vms-com/m-p/3558680#M5994</guid>
      <dc:creator>comarow</dc:creator>
      <dc:date>2005-06-06T15:42:58Z</dc:date>
    </item>
    <item>
      <title>Re: how to take "INQUIRE" effect on systartup_vms.com procedure?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-to-take-quot-inquire-quot-effect-on-systartup-vms-com/m-p/3558681#M5995</link>
      <description>Bob,&lt;BR /&gt;&lt;BR /&gt;why would anybody put that command into SYSTARTUP_VMS.COM?</description>
      <pubDate>Mon, 06 Jun 2005 15:45:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-to-take-quot-inquire-quot-effect-on-systartup-vms-com/m-p/3558681#M5995</guid>
      <dc:creator>Uwe Zessin</dc:creator>
      <dc:date>2005-06-06T15:45:52Z</dc:date>
    </item>
    <item>
      <title>Re: how to take "INQUIRE" effect on systartup_vms.com procedure?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-to-take-quot-inquire-quot-effect-on-systartup-vms-com/m-p/3558682#M5996</link>
      <description>Wang,&lt;BR /&gt;&lt;BR /&gt;follow Uwe s advice.&lt;BR /&gt;He DOES recall correctly, that is how it works for various sites I have been active, for at least the last 20 years!&lt;BR /&gt;&lt;BR /&gt;Proost.&lt;BR /&gt;&lt;BR /&gt;Have one on me.&lt;BR /&gt;&lt;BR /&gt;jpe&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 06 Jun 2005 17:14:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-to-take-quot-inquire-quot-effect-on-systartup-vms-com/m-p/3558682#M5996</guid>
      <dc:creator>Jan van den Ende</dc:creator>
      <dc:date>2005-06-06T17:14:03Z</dc:date>
    </item>
    <item>
      <title>Re: how to take "INQUIRE" effect on systartup_vms.com procedure?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-to-take-quot-inquire-quot-effect-on-systartup-vms-com/m-p/3558683#M5997</link>
      <description>IF you are wanting to pass parameters to systartup_vms.com, (i.e. things that are being changed very early in the boot process) then considered coding the options in the sysgen parameters startup_px (where x is 1 to 8 (I think) The first one or two are used in startup.com for logging features, but the rest should be available to be passed through... &lt;BR /&gt;&lt;BR /&gt;q&lt;BR /&gt;</description>
      <pubDate>Mon, 06 Jun 2005 20:13:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-to-take-quot-inquire-quot-effect-on-systartup-vms-com/m-p/3558683#M5997</guid>
      <dc:creator>Peter Quodling</dc:creator>
      <dc:date>2005-06-06T20:13:55Z</dc:date>
    </item>
    <item>
      <title>Re: how to take "INQUIRE" effect on systartup_vms.com procedure?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-to-take-quot-inquire-quot-effect-on-systartup-vms-com/m-p/3558684#M5998</link>
      <description>deeply thx everyone, especially UWE, your are right, now my script good work,thx again</description>
      <pubDate>Mon, 06 Jun 2005 21:20:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-to-take-quot-inquire-quot-effect-on-systartup-vms-com/m-p/3558684#M5998</guid>
      <dc:creator>wang_17</dc:creator>
      <dc:date>2005-06-06T21:20:27Z</dc:date>
    </item>
    <item>
      <title>Re: how to take "INQUIRE" effect on systartup_vms.com procedure?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-to-take-quot-inquire-quot-effect-on-systartup-vms-com/m-p/3558685#M5999</link>
      <description>Re Peter:&lt;BR /&gt;&lt;BR /&gt;STARTUP_Px offer great flexibility.&lt;BR /&gt;&lt;BR /&gt;But you better not touch P1, P2, nor P8, other than in the documented fashion.&lt;BR /&gt;&lt;BR /&gt;The only values for P1 are "" (empty string) and "MIN" (minimal bootstrap).&lt;BR /&gt;P2 is evaluated for its Boolean value, and if true, switches on VERIFY during bootstrap. P8 is also special, but not having a VMS system at hand here, I cannot give specifications now.&lt;BR /&gt;&lt;BR /&gt;Proost.&lt;BR /&gt;&lt;BR /&gt;Have one on me.&lt;BR /&gt;&lt;BR /&gt;jpe</description>
      <pubDate>Mon, 06 Jun 2005 22:00:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-to-take-quot-inquire-quot-effect-on-systartup-vms-com/m-p/3558685#M5999</guid>
      <dc:creator>Jan van den Ende</dc:creator>
      <dc:date>2005-06-06T22:00:05Z</dc:date>
    </item>
    <item>
      <title>Re: how to take "INQUIRE" effect on systartup_vms.com procedure?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-to-take-quot-inquire-quot-effect-on-systartup-vms-com/m-p/3558686#M6000</link>
      <description>Re Jan:&lt;BR /&gt;&lt;BR /&gt;There are four user-defineable SYSGEN variables (two static, two dynamic), appropriately named USERD1, USERD2, USER3, and USER4.&lt;BR /&gt;&lt;BR /&gt;I use USER3 to select the IP stack to boot on my support machine, like:&lt;BR /&gt;&lt;BR /&gt;[SYSTARTUP_VMS.COM]&lt;BR /&gt;$! Selection of the TCP/IP stack&lt;BR /&gt;$! 0 : No TCP/IP (default)&lt;BR /&gt;$! 1 : TCP/IP Services 5.4&lt;BR /&gt;$! 2 : TCPware 5.6&lt;BR /&gt;$! 3 : MultiNet 4.4&lt;BR /&gt;$! 4 : MultiNet 5.0&lt;BR /&gt;$ TCPSTACK = F$GETSYI("USER3")&lt;BR /&gt;...&lt;BR /&gt;$ IF TCPSTACK .EQ. 1 THEN -&lt;BR /&gt;    @SYS$STARTUP:TCPIP$STARTUP.COM   &lt;BR /&gt;etc.&lt;BR /&gt;&lt;BR /&gt;I got this tip from the OpenVMS Technical Journal Vol.4, &lt;A href="http://h71000.www7.hp.com/openvms/journal/v4/using_the_sysgen_user_parameters.html" target="_blank"&gt;http://h71000.www7.hp.com/openvms/journal/v4/using_the_sysgen_user_parameters.html&lt;/A&gt; .&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;  Martin</description>
      <pubDate>Tue, 07 Jun 2005 02:28:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-to-take-quot-inquire-quot-effect-on-systartup-vms-com/m-p/3558686#M6000</guid>
      <dc:creator>Martin Vorlaender</dc:creator>
      <dc:date>2005-06-07T02:28:09Z</dc:date>
    </item>
    <item>
      <title>Re: how to take "INQUIRE" effect on systartup_vms.com procedure?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-to-take-quot-inquire-quot-effect-on-systartup-vms-com/m-p/3558687#M6001</link>
      <description>Hi,&lt;BR /&gt;to avoid halt in bootstrap procedure, you can change Uwe's example as follow:&lt;BR /&gt; &lt;BR /&gt;$ open /read/write CHN_OPA0 OPA0:&lt;BR /&gt;$ read /error=label/TIME=10 CHN_OPA0 DATA /prompt="Yes? "&lt;BR /&gt;... process input in symbol DATA&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;somewhere else:&lt;BR /&gt;$label:&lt;BR /&gt;sts=$status&lt;BR /&gt;if sts.eq.%X000181B0&lt;BR /&gt;then&lt;BR /&gt;... time-out&lt;BR /&gt;else&lt;BR /&gt;... error processing&lt;BR /&gt;endif&lt;BR /&gt; &lt;BR /&gt;Antonio Vigliotti&lt;BR /&gt;</description>
      <pubDate>Tue, 07 Jun 2005 02:43:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-to-take-quot-inquire-quot-effect-on-systartup-vms-com/m-p/3558687#M6001</guid>
      <dc:creator>Antoniov.</dc:creator>
      <dc:date>2005-06-07T02:43:57Z</dc:date>
    </item>
    <item>
      <title>Re: how to take "INQUIRE" effect on systartup_vms.com procedure?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-to-take-quot-inquire-quot-effect-on-systartup-vms-com/m-p/3558688#M6002</link>
      <description>I see one (and only) legitimate use of input from OPA0: in systartup:&lt;BR /&gt;to abort some waiting loop on a resource.&lt;BR /&gt;Example: we have a disk containing utilities , MSCP served by one node. We want to mount this disk early in systartup, but want to be able to continue startup if the disk is not available for some reason. We have a loop trying to mount, and if not available, do a READ (not INQUIRE) from opa0: using /time_out and /end-of_file to abort the loop and continue systartup.&lt;BR /&gt;</description>
      <pubDate>Tue, 07 Jun 2005 02:51:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-to-take-quot-inquire-quot-effect-on-systartup-vms-com/m-p/3558688#M6002</guid>
      <dc:creator>Joseph Huber_1</dc:creator>
      <dc:date>2005-06-07T02:51:40Z</dc:date>
    </item>
    <item>
      <title>Re: how to take "INQUIRE" effect on systartup_vms.com procedure?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-to-take-quot-inquire-quot-effect-on-systartup-vms-com/m-p/3558689#M6003</link>
      <description>That's what I implemented in 1997. Customer had a dual-datacenter FDDI based cluster with two HS211 servers - two AlphaServer 1000 connected to a DSSI-based storage which servers the disks via FDDI. Data is shadowed between datacenters.&lt;BR /&gt;&lt;BR /&gt;Cold boot of the cluster went like this:&lt;BR /&gt;&lt;BR /&gt;- boot first server in first data center&lt;BR /&gt;&lt;BR /&gt;- server waits for one of the servers in the other datacenter to come up. This has to be confirmed by one of the operators.&lt;BR /&gt;&lt;BR /&gt;- server(s) continue to boot and mount the shadow sets&lt;BR /&gt;&lt;BR /&gt;If we allowed a single server a full boot it would break the shadow sets if the other DC was down. The operator can also request a full boot even if the other datacenter is not available. Customer agreed on a completely manual process.&lt;BR /&gt;&lt;BR /&gt;There was no quorum disk or fifth voting member involved. My excuse is that I got involved rather late in the project when the hardware was already being delivered by somebody else who did not have much experience with clustering. Also, the operators did not have much VMS experience.</description>
      <pubDate>Tue, 07 Jun 2005 03:04:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-to-take-quot-inquire-quot-effect-on-systartup-vms-com/m-p/3558689#M6003</guid>
      <dc:creator>Uwe Zessin</dc:creator>
      <dc:date>2005-06-07T03:04:17Z</dc:date>
    </item>
    <item>
      <title>Re: how to take "INQUIRE" effect on systartup_vms.com procedure?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-to-take-quot-inquire-quot-effect-on-systartup-vms-com/m-p/3558690#M6004</link>
      <description>I have a developing machine where I add or remove some scsi disks.&lt;BR /&gt;In systartup_vms.com I use f$getdvi function like this&lt;BR /&gt;$ IF F$GETDVI("DKA100","EXISTS")&lt;BR /&gt;$ THEN&lt;BR /&gt;$ MOUNT DKA100: ...&lt;BR /&gt;$ ENDIF&lt;BR /&gt; &lt;BR /&gt;Antonio Vigliotti&lt;BR /&gt;</description>
      <pubDate>Tue, 07 Jun 2005 03:23:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-to-take-quot-inquire-quot-effect-on-systartup-vms-com/m-p/3558690#M6004</guid>
      <dc:creator>Antoniov.</dc:creator>
      <dc:date>2005-06-07T03:23:33Z</dc:date>
    </item>
    <item>
      <title>Re: how to take "INQUIRE" effect on systartup_vms.com procedure?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-to-take-quot-inquire-quot-effect-on-systartup-vms-com/m-p/3558691#M6005</link>
      <description>And if you want to have the possibility to execute the mount procedure (here SYSTARTUP_VMS) as well as at system startup also in interactive mode not using the console then you can make this in the following way:&lt;BR /&gt;$ INPUT_DEV := TT:&lt;BR /&gt;$ if f$getjpi("","PRCNAM") .eqs. "STARTUP" then INPUT_DEV := OPA0:&lt;BR /&gt;$ open/read/write CHN_OPA0 'INPUT_DEV'&lt;BR /&gt;... and so on as described&lt;BR /&gt;Cheers&lt;BR /&gt;</description>
      <pubDate>Tue, 07 Jun 2005 10:21:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-to-take-quot-inquire-quot-effect-on-systartup-vms-com/m-p/3558691#M6005</guid>
      <dc:creator>Eberhard Wacker</dc:creator>
      <dc:date>2005-06-07T10:21:30Z</dc:date>
    </item>
    <item>
      <title>Re: how to take "INQUIRE" effect on systartup_vms.com procedure?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-to-take-quot-inquire-quot-effect-on-systartup-vms-com/m-p/3558692#M6006</link>
      <description>Joseph,&lt;BR /&gt;&lt;BR /&gt;_that_ is exactly what we are using it for.&lt;BR /&gt;Actually, not even from SYSSTARUP_VMS, but from SYLOGICALS.&lt;BR /&gt;&lt;BR /&gt;We attempt to have our cluster as common as possible, even in multi-architecture and/or multi-site.&lt;BR /&gt;Except for SYLOGICALS, EVERYTHING, including SYSTARTUP_VMS, is therefor on a common disk, other than the system disk(s).&lt;BR /&gt;Obviously, there is a need for an emergency escape if somehow that device is not available or not mountable.&lt;BR /&gt;That we test first, and the emergency escape allows to specify another disk, or to do a dedicated, minimalistic, boot from the system disk.&lt;BR /&gt;&lt;BR /&gt;READ OPA0/TIMEOUT is that escape.&lt;BR /&gt;&lt;BR /&gt;Proost.&lt;BR /&gt;&lt;BR /&gt;Have one on me.&lt;BR /&gt;&lt;BR /&gt;jpe&lt;BR /&gt;</description>
      <pubDate>Tue, 07 Jun 2005 12:32:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-to-take-quot-inquire-quot-effect-on-systartup-vms-com/m-p/3558692#M6006</guid>
      <dc:creator>Jan van den Ende</dc:creator>
      <dc:date>2005-06-07T12:32:20Z</dc:date>
    </item>
    <item>
      <title>Re: how to take "INQUIRE" effect on systartup_vms.com procedure?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-to-take-quot-inquire-quot-effect-on-systartup-vms-com/m-p/3558693#M6007</link>
      <description>Greetings&lt;BR /&gt;Bob,&lt;BR /&gt;&lt;BR /&gt;&amp;gt;why would anybody put that command into &amp;gt;SYSTARTUP_VMS.COM? &lt;BR /&gt;I thought he mean general statup files, such as sylogin.com&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;He didn't say it was systartup but sy</description>
      <pubDate>Tue, 07 Jun 2005 15:19:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-to-take-quot-inquire-quot-effect-on-systartup-vms-com/m-p/3558693#M6007</guid>
      <dc:creator>comarow</dc:creator>
      <dc:date>2005-06-07T15:19:24Z</dc:date>
    </item>
    <item>
      <title>Re: how to take "INQUIRE" effect on systartup_vms.com procedure?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-to-take-quot-inquire-quot-effect-on-systartup-vms-com/m-p/3558694#M6008</link>
      <description>I was also thining of sylogin.&lt;BR /&gt;&lt;BR /&gt;However, many people put escape clauses in their startups, often with a timer, so they can escape and make changes.</description>
      <pubDate>Wed, 08 Jun 2005 22:57:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-to-take-quot-inquire-quot-effect-on-systartup-vms-com/m-p/3558694#M6008</guid>
      <dc:creator>comarow</dc:creator>
      <dc:date>2005-06-08T22:57:14Z</dc:date>
    </item>
    <item>
      <title>Re: how to take "INQUIRE" effect on systartup_vms.com procedure?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-to-take-quot-inquire-quot-effect-on-systartup-vms-com/m-p/3558695#M6009</link>
      <description>&amp;gt; He didn't say it was systartup but sy&lt;BR /&gt;&lt;BR /&gt;Yes, he did. It's in the thread title and in his message.</description>
      <pubDate>Thu, 09 Jun 2005 00:43:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-to-take-quot-inquire-quot-effect-on-systartup-vms-com/m-p/3558695#M6009</guid>
      <dc:creator>Uwe Zessin</dc:creator>
      <dc:date>2005-06-09T00:43:42Z</dc:date>
    </item>
  </channel>
</rss>

