<?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: Netcopy in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/netcopy/m-p/3815252#M77319</link>
    <description>Miles,&lt;BR /&gt;&lt;BR /&gt;you can add "SYSMAN SET TIMEOUT time_limit"&lt;BR /&gt;before DO copy or Jan's "DO @ADMIN_DEV:[ADMIN]DMSCRIPT_HOOK" command.&lt;BR /&gt;&lt;BR /&gt;If any node takes extra time to respond for the SYSMAN command, this SET TIMEOUT command gives the specified time limit to execute the sysman command for each node. otherwise the command execution will be skipped on some node. You can use /PAUSE or /CONFIRM qualifiers also with DO command.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Archunan &lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Thu, 29 Jun 2006 15:39:13 GMT</pubDate>
    <dc:creator>Arch_Muthiah</dc:creator>
    <dc:date>2006-06-29T15:39:13Z</dc:date>
    <item>
      <title>Netcopy</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/netcopy/m-p/3815247#M77314</link>
      <description>I created a script that needs to run on all of our 70 systems. Can someone show me what commands I would use to copy it over to all node. The file is in our ADMIN_DEV:[ADMIN]DMSCRIPT_HOOK.COM&lt;BR /&gt;&lt;BR /&gt;The directory is universal on all our systems.&lt;BR /&gt;&lt;BR /&gt;I am assumin I would have to creat a com file and then execute it? &lt;BR /&gt;&lt;BR /&gt;Thanks!&lt;BR /&gt;</description>
      <pubDate>Thu, 29 Jun 2006 11:50:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/netcopy/m-p/3815247#M77314</guid>
      <dc:creator>vmsserbo</dc:creator>
      <dc:date>2006-06-29T11:50:01Z</dc:date>
    </item>
    <item>
      <title>Re: Netcopy</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/netcopy/m-p/3815248#M77315</link>
      <description>Miles,&lt;BR /&gt;&lt;BR /&gt;Personally, given the choice, I would use either DECnet Task to Task capabilities, presuming that I had network access to all of the systems. Another option is to copy the files to the remote systems and use the SET ENVIRONMENT command in SYSMAN to execute it.&lt;BR /&gt;&lt;BR /&gt;In either case, you need to code this as a command file.&lt;BR /&gt;&lt;BR /&gt;- Bob Gezelter, &lt;A href="http://www.rlgsc.com" target="_blank"&gt;http://www.rlgsc.com&lt;/A&gt;</description>
      <pubDate>Thu, 29 Jun 2006 12:01:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/netcopy/m-p/3815248#M77315</guid>
      <dc:creator>Robert Gezelter</dc:creator>
      <dc:date>2006-06-29T12:01:05Z</dc:date>
    </item>
    <item>
      <title>Re: Netcopy</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/netcopy/m-p/3815249#M77316</link>
      <description>You need the node name and a userid and password for each node, unless some proxy access has been configured.&lt;BR /&gt;Basically for decnet access&lt;BR /&gt;&lt;BR /&gt;$ copy ADMIN_DEV:[ADMIN]DMSCRIPT_HOOK.COM -&lt;BR /&gt; nodea"myusername password"::ADMIN_DEV:[ADMIN]&lt;BR /&gt;&lt;BR /&gt;Nodea is the name of a host. The trick is the username and password inside the string.&lt;BR /&gt;&lt;BR /&gt;for FTP you can&lt;BR /&gt;&lt;BR /&gt;$ ftp nodename /username="myusername"/ password="password"&lt;BR /&gt;cd ADMIN_DEV:[ADMIN]&lt;BR /&gt;put DMSCIPT_HOOK.COM&lt;BR /&gt;bye&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;03:00 hours AEST.&lt;BR /&gt;My 2 cents.</description>
      <pubDate>Thu, 29 Jun 2006 12:01:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/netcopy/m-p/3815249#M77316</guid>
      <dc:creator>Thomas Ritter</dc:creator>
      <dc:date>2006-06-29T12:01:07Z</dc:date>
    </item>
    <item>
      <title>Re: Netcopy</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/netcopy/m-p/3815250#M77317</link>
      <description>Do you have r-services setup with proxies?&lt;BR /&gt;Do you have decnet between the systems with proxies?&lt;BR /&gt;&lt;BR /&gt;If you have the decnet or r-services then you can perform the function with either the proxies setup or by passing the account &amp;amp; password.&lt;BR /&gt;&lt;BR /&gt;Quick example:&lt;BR /&gt;Node1 - original file resides here&lt;BR /&gt;node2 - where you want to put it&lt;BR /&gt;&lt;BR /&gt;copy ADMIN_DEV:[ADMIN]DMSCRIPT_HOOK.COM node2::ADMIN_DEV:[ADMIN]DMSCRIPT_HOOK.COM&lt;BR /&gt;(this is with decnet and proxies - assuming account has default permissions to write to admin_dev:[admin])&lt;BR /&gt;&lt;BR /&gt;copy ADMIN_DEV:[ADMIN]DMSCRIPT_HOOK.COM node2"account password"::ADMIN_DEV:[ADMIN]DMSCRIPT_HOOK.COM&lt;BR /&gt;(this is with decnet without proxies)&lt;BR /&gt;&lt;BR /&gt;rcp /log /username="account" /password="password" ":ADMIN_DEV:[ADMIN]DMSCRIPT_HOOK.COM" node2:ADMIN_DEV:[ADMIN]DMSCRIPT_HOOK.COM&lt;BR /&gt;&lt;BR /&gt;(rcp is where I have the least knowledge.  I end up having to play with it each time)&lt;BR /&gt;&lt;BR /&gt;Overall you can do this copy or rcp for each of the 70 different machines.  Doing in one command file with an output log file would show which copy functions errored.</description>
      <pubDate>Thu, 29 Jun 2006 12:07:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/netcopy/m-p/3815250#M77317</guid>
      <dc:creator>Peter Zeiszler</dc:creator>
      <dc:date>2006-06-29T12:07:42Z</dc:date>
    </item>
    <item>
      <title>Re: Netcopy</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/netcopy/m-p/3815251#M77318</link>
      <description>Miles,&lt;BR /&gt;&lt;BR /&gt;as far as I can see the "needs to run" is the most important part of your question.&lt;BR /&gt;&lt;BR /&gt;I will assume the scripts have already been copied (the previous answers can help you there.&lt;BR /&gt;&lt;BR /&gt;Using DECnet, you will need sysman:&lt;BR /&gt;For easy use, have the same account with the same password on all systems (_IF_ your security policy allows that, otherwise, expand the following to use multiple invocations) and &lt;BR /&gt;$ DEFINE/TABLE=SYSMAN$NODE_TABLE ALL_NODES &lt;NODE1&gt;&lt;BR /&gt;$ MCR SYSMAN&lt;BR /&gt;SET ENVIRONMENT/NODE=ALL_NODES&lt;BR /&gt;&lt;THE_PASSWORD&gt;&lt;BR /&gt;DO @ADMIN_DEV:[ADMIN]DMSCRIPT_HOOK&lt;BR /&gt;EXIT&lt;BR /&gt;&lt;BR /&gt;To capture the output, &lt;BR /&gt;$ DEFINE SYS$OUTPUT/USER &lt;FILENAME&gt;&lt;BR /&gt;just before the MCR SYSMAN.&lt;BR /&gt;&lt;BR /&gt;Using rsh:&lt;BR /&gt;SET TCPIP PROXIES, and&lt;BR /&gt;&lt;BR /&gt;$ RSH /USER=&lt;USRNAM&gt; &lt;REMOTENODE&gt; @ADMIN_DEV:[ADMIN]DMSCRIPT_HOOK&lt;BR /&gt;&lt;BR /&gt;and repeat for all nodes.&lt;BR /&gt;&lt;BR /&gt;hth&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;/REMOTENODE&gt;&lt;/USRNAM&gt;&lt;/FILENAME&gt;&lt;/THE_PASSWORD&gt;&lt;/NODE1&gt;</description>
      <pubDate>Thu, 29 Jun 2006 14:23:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/netcopy/m-p/3815251#M77318</guid>
      <dc:creator>Jan van den Ende</dc:creator>
      <dc:date>2006-06-29T14:23:35Z</dc:date>
    </item>
    <item>
      <title>Re: Netcopy</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/netcopy/m-p/3815252#M77319</link>
      <description>Miles,&lt;BR /&gt;&lt;BR /&gt;you can add "SYSMAN SET TIMEOUT time_limit"&lt;BR /&gt;before DO copy or Jan's "DO @ADMIN_DEV:[ADMIN]DMSCRIPT_HOOK" command.&lt;BR /&gt;&lt;BR /&gt;If any node takes extra time to respond for the SYSMAN command, this SET TIMEOUT command gives the specified time limit to execute the sysman command for each node. otherwise the command execution will be skipped on some node. You can use /PAUSE or /CONFIRM qualifiers also with DO command.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Archunan &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 29 Jun 2006 15:39:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/netcopy/m-p/3815252#M77319</guid>
      <dc:creator>Arch_Muthiah</dc:creator>
      <dc:date>2006-06-29T15:39:13Z</dc:date>
    </item>
    <item>
      <title>Re: Netcopy</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/netcopy/m-p/3815253#M77320</link>
      <description>One option not mentioned is SUBMIT/REMOTE (after the file copied). Read the HELP and see. Id probably use SYSMAN with a logical name that defines the list of nodes.</description>
      <pubDate>Fri, 30 Jun 2006 03:19:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/netcopy/m-p/3815253#M77320</guid>
      <dc:creator>Ian Miller.</dc:creator>
      <dc:date>2006-06-30T03:19:29Z</dc:date>
    </item>
  </channel>
</rss>

