<?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: DCL and SYSMAN in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/dcl-and-sysman/m-p/4214939#M90127</link>
    <description>Procedural use of SYSMAN has always seemed somewhat precarious for my personal tastes.&lt;BR /&gt;&lt;BR /&gt;In addition to RCOM mentioned earlier, the TELL.COM (freeware) or analogous DECnet tool such as XQPTYPE, or maybe node-specific batch queues might be a better choice here, depending on what you're up to.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://mvb.saic.com/freeware/freewarev60/tell/" target="_blank"&gt;http://mvb.saic.com/freeware/freewarev60/tell/&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://mvb.saic.com/freeware/freewarev80/hoffman_examples/xqtype.com" target="_blank"&gt;http://mvb.saic.com/freeware/freewarev80/hoffman_examples/xqtype.com&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Wed, 11 Jun 2008 15:50:18 GMT</pubDate>
    <dc:creator>Hoff</dc:creator>
    <dc:date>2008-06-11T15:50:18Z</dc:date>
    <item>
      <title>DCL and SYSMAN</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-and-sysman/m-p/4214934#M90122</link>
      <description>When executing SYSMAN in a command procedure, the SET E/C command outputs to the terminal&lt;BR /&gt;&lt;BR /&gt; Clusterwide on local cluster&lt;BR /&gt;        Username GPEREIRA     will be used on nonlocal nodes&lt;BR /&gt;&lt;BR /&gt;how can I have this not display? &lt;BR /&gt;&lt;BR /&gt;Here is an example of what I am doing:  &lt;BR /&gt;&lt;BR /&gt;$ SET NOON&lt;BR /&gt;$ message_setting = F$ENVIRONMENT("MESSAGE")&lt;BR /&gt;$ set message /nofacility /noseverity /noidentification /notext&lt;BR /&gt;$ mcr sysman&lt;BR /&gt;do set message /nofacility /noseverity /noidentification /notext&lt;BR /&gt;set e/c&lt;BR /&gt;set prof/def=sysmgr$scratch&lt;BR /&gt;do @last_lta_device&lt;BR /&gt;exit&lt;BR /&gt;$ message_setting = F$ENVIRONMENT("MESSAGE")&lt;BR /&gt;$exit&lt;BR /&gt;</description>
      <pubDate>Wed, 11 Jun 2008 14:59:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-and-sysman/m-p/4214934#M90122</guid>
      <dc:creator>Gilbert Pereira</dc:creator>
      <dc:date>2008-06-11T14:59:46Z</dc:date>
    </item>
    <item>
      <title>Re: DCL and SYSMAN</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-and-sysman/m-p/4214935#M90123</link>
      <description>Hello&lt;BR /&gt;&lt;BR /&gt;your 2 commands before&lt;BR /&gt;$ mcr sysman&lt;BR /&gt;are executed on the local node, not on the other Cluster nodes, so it is not used&lt;BR /&gt;&lt;BR /&gt;Your command&lt;BR /&gt;&lt;BR /&gt;do set message /...&lt;BR /&gt;is a command doing set message and terminating, so nothing happens, and it is not executed in the context of the next commands.&lt;BR /&gt;&lt;BR /&gt;May be there is a Sysman logical name for this, but I am not aware of it.&lt;BR /&gt;&lt;BR /&gt;You could try to use RCOM, an improved Sysman, written long ago by Nick Brown. &lt;BR /&gt;&lt;BR /&gt;Why do you want to avoid this display ?&lt;BR /&gt;</description>
      <pubDate>Wed, 11 Jun 2008 15:15:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-and-sysman/m-p/4214935#M90123</guid>
      <dc:creator>labadie_1</dc:creator>
      <dc:date>2008-06-11T15:15:30Z</dc:date>
    </item>
    <item>
      <title>Re: DCL and SYSMAN</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-and-sysman/m-p/4214936#M90124</link>
      <description>Gilbert,&lt;BR /&gt;&lt;BR /&gt;this text is not a message, but simply direct output from the SYSMAN utility. You could use&lt;BR /&gt;&lt;BR /&gt;$ DEFINE/USER SYS$OUTPUT NLA0:&lt;BR /&gt;&lt;BR /&gt;before invoking SYSMAN, but then the rest of the output provided by the commands executed in SYSMAN would also not display on ther terminal.&lt;BR /&gt;&lt;BR /&gt;You could also direct SYS$OUTPUT to a file and then read and parse the file and only output the information your use should see.&lt;BR /&gt;&lt;BR /&gt;Volker.</description>
      <pubDate>Wed, 11 Jun 2008 15:16:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-and-sysman/m-p/4214936#M90124</guid>
      <dc:creator>Volker Halle</dc:creator>
      <dc:date>2008-06-11T15:16:03Z</dc:date>
    </item>
    <item>
      <title>Re: DCL and SYSMAN</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-and-sysman/m-p/4214937#M90125</link>
      <description>I find a reference to RCOM here&lt;BR /&gt;&lt;A href="http://www.decus.org/libcatalog/document_html/vs0181_16.html" target="_blank"&gt;http://www.decus.org/libcatalog/document_html/vs0181_16.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 11 Jun 2008 15:26:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-and-sysman/m-p/4214937#M90125</guid>
      <dc:creator>labadie_1</dc:creator>
      <dc:date>2008-06-11T15:26:00Z</dc:date>
    </item>
    <item>
      <title>Re: DCL and SYSMAN</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-and-sysman/m-p/4214938#M90126</link>
      <description>&lt;!--!*#--&gt;Gilbert,&lt;BR /&gt;&lt;BR /&gt;Each DO command you use in SYSMAN is executed in a new process, even when you have SET ENVIRONMENT to a single node. Therefore any DO command whose only purpose is to affect the process environement is useless because that process is gone as soon as that DO command completes.&lt;BR /&gt;&lt;BR /&gt;You must combine these DO commands with your other DO command in a command file.&lt;BR /&gt;&lt;BR /&gt;$ TYPE TEMP.COM&lt;BR /&gt;$ set message /nofacility /noseverity /noidentification /notext&lt;BR /&gt;$ @last_lta_device&lt;BR /&gt;$ exit&lt;BR /&gt;&lt;BR /&gt;$ mcr sysman&lt;BR /&gt;set enviroment/cluster&lt;BR /&gt;set profile/default=sysmgr$scratch&lt;BR /&gt;do @temp.com&lt;BR /&gt;exit</description>
      <pubDate>Wed, 11 Jun 2008 15:35:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-and-sysman/m-p/4214938#M90126</guid>
      <dc:creator>Jess Goodman</dc:creator>
      <dc:date>2008-06-11T15:35:44Z</dc:date>
    </item>
    <item>
      <title>Re: DCL and SYSMAN</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-and-sysman/m-p/4214939#M90127</link>
      <description>Procedural use of SYSMAN has always seemed somewhat precarious for my personal tastes.&lt;BR /&gt;&lt;BR /&gt;In addition to RCOM mentioned earlier, the TELL.COM (freeware) or analogous DECnet tool such as XQPTYPE, or maybe node-specific batch queues might be a better choice here, depending on what you're up to.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://mvb.saic.com/freeware/freewarev60/tell/" target="_blank"&gt;http://mvb.saic.com/freeware/freewarev60/tell/&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://mvb.saic.com/freeware/freewarev80/hoffman_examples/xqtype.com" target="_blank"&gt;http://mvb.saic.com/freeware/freewarev80/hoffman_examples/xqtype.com&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 11 Jun 2008 15:50:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-and-sysman/m-p/4214939#M90127</guid>
      <dc:creator>Hoff</dc:creator>
      <dc:date>2008-06-11T15:50:18Z</dc:date>
    </item>
    <item>
      <title>Re: DCL and SYSMAN</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-and-sysman/m-p/4214940#M90128</link>
      <description>Gilbert,&lt;BR /&gt;&lt;BR /&gt;  PIPE is your friend.&lt;BR /&gt;&lt;BR /&gt;  You can pipe commands into SYSMAN, capture the output and do whatever you like with it. This can be especially useful if you want to substitute symbols into your SYSMAN commands, or process the output.&lt;BR /&gt;&lt;BR /&gt;  Consider:&lt;BR /&gt;&lt;BR /&gt;$ PIPE @generate_sysman_commands | -&lt;BR /&gt;       MCR SYSMAN @SYS$PIPE: | -&lt;BR /&gt;       @parse_sysman_output&lt;BR /&gt;&lt;BR /&gt;Your output parser could skip everything up to %SYSMAN-I-OUTPUT, then do whatever you want with the remainder of the output.&lt;BR /&gt;&lt;BR /&gt;I've included an example procedure that demonstrates the principle. It accepts commands as P1 through P7, executes all commands on all nodes across the cluster, tags each line of output with the node it came from, and sorts the output into blocks from each node. The extraneous output from SYSMAN SET commands is skipped.</description>
      <pubDate>Thu, 12 Jun 2008 00:25:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-and-sysman/m-p/4214940#M90128</guid>
      <dc:creator>John Gillings</dc:creator>
      <dc:date>2008-06-12T00:25:24Z</dc:date>
    </item>
  </channel>
</rss>

