<?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: Is there a method to restart object spawners on all GRID nodes via command from master node? in Administration and Deployment</title>
    <link>https://communities.sas.com/t5/Administration-and-Deployment/Is-there-a-method-to-restart-object-spawners-on-all-GRID-nodes/m-p/208491#M3078</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;You can write a script to start/stop SAS services , remotely , see SC ( Service Control Manager ) for Windows environment.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dorel.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 28 Aug 2015 04:25:56 GMT</pubDate>
    <dc:creator>dorel_olteanu</dc:creator>
    <dc:date>2015-08-28T04:25:56Z</dc:date>
    <item>
      <title>Is there a method to restart object spawners on all GRID nodes via command from master node?</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Is-there-a-method-to-restart-object-spawners-on-all-GRID-nodes/m-p/208490#M3077</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We have a GRID environment with 7 compute nodes.&amp;nbsp; It's tedious to remote into each node and restart the object spawner service.&amp;nbsp; Is there a command to use from the master node or an option SAS Management Console that will restart that service on all nodes?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Aug 2015 12:46:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Is-there-a-method-to-restart-object-spawners-on-all-GRID-nodes/m-p/208490#M3077</guid>
      <dc:creator>dgower</dc:creator>
      <dc:date>2015-08-27T12:46:02Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a method to restart object spawners on all GRID nodes via command from master node?</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Is-there-a-method-to-restart-object-spawners-on-all-GRID-nodes/m-p/208491#M3078</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;You can write a script to start/stop SAS services , remotely , see SC ( Service Control Manager ) for Windows environment.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dorel.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Aug 2015 04:25:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Is-there-a-method-to-restart-object-spawners-on-all-GRID-nodes/m-p/208491#M3078</guid>
      <dc:creator>dorel_olteanu</dc:creator>
      <dc:date>2015-08-28T04:25:56Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a method to restart object spawners on all GRID nodes via command from master node?</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Is-there-a-method-to-restart-object-spawners-on-all-GRID-nodes/m-p/208492#M3079</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need a script something like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; #! /bin/ksh&lt;/P&gt;&lt;P&gt;action=status # Or pass as $1 parameter&lt;/P&gt;&lt;P&gt;remotepath=/opt/sas/ServerConfig/Lev1/SASApp&amp;nbsp; # For example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for node in node1 node2 node3 node4 node5 node6 node7 ; do &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;$ ssh sasaccount@hostname "$remotepath/ObjectSpawner.sh $action" &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;done&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You will need to create an ssh key pair and put the ssh public key in $HOME/.ssh on each node first then test ssh to each node from sasaccount@masternode&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 30 Aug 2015 14:21:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Is-there-a-method-to-restart-object-spawners-on-all-GRID-nodes/m-p/208492#M3079</guid>
      <dc:creator>acfarrer</dc:creator>
      <dc:date>2015-08-30T14:21:51Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a method to restart object spawners on all GRID nodes via command from master node?</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Is-there-a-method-to-restart-object-spawners-on-all-GRID-nodes/m-p/832303#M25006</link>
      <description>&lt;P&gt;I know this is an old post but I am following a similar path to do regular status checks.&lt;/P&gt;
&lt;P&gt;I am passing paths, values etc in ksh to ssh into several servers to check the ObjectSpawner status:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;ssh -tt $servernm ksh -c "$Path/ObjectSpawner.sh status" &amp;gt;&amp;gt;/folder/objectspawners.txt&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;All I get in my text file is a lovely : &lt;FONT color="#0000FF"&gt;&lt;STRONG&gt;Usage: ObjectSpawner.sh {-}{start|stop|status|restart}&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What I should see is a "ObjectSpawner is started"&lt;/P&gt;
&lt;P&gt;Why does it not read my "status" param?&lt;/P&gt;</description>
      <pubDate>Thu, 08 Sep 2022 13:34:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Is-there-a-method-to-restart-object-spawners-on-all-GRID-nodes/m-p/832303#M25006</guid>
      <dc:creator>Lenvdb</dc:creator>
      <dc:date>2022-09-08T13:34:58Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a method to restart object spawners on all GRID nodes via command from master node?</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Is-there-a-method-to-restart-object-spawners-on-all-GRID-nodes/m-p/832305#M25007</link>
      <description>If you remove the "ksh -c" part, does it work?</description>
      <pubDate>Thu, 08 Sep 2022 13:42:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Is-there-a-method-to-restart-object-spawners-on-all-GRID-nodes/m-p/832305#M25007</guid>
      <dc:creator>gwootton</dc:creator>
      <dc:date>2022-09-08T13:42:01Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a method to restart object spawners on all GRID nodes via command from master node?</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Is-there-a-method-to-restart-object-spawners-on-all-GRID-nodes/m-p/832306#M25008</link>
      <description>&lt;P&gt;yep - just tried it and it worked&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Bless you !!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Sep 2022 13:44:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Is-there-a-method-to-restart-object-spawners-on-all-GRID-nodes/m-p/832306#M25008</guid>
      <dc:creator>Lenvdb</dc:creator>
      <dc:date>2022-09-08T13:44:06Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a method to restart object spawners on all GRID nodes via command from master node?</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Is-there-a-method-to-restart-object-spawners-on-all-GRID-nodes/m-p/832808#M25026</link>
      <description>Would suggest developing simple Ansible playbooks to automate admin tasks!</description>
      <pubDate>Mon, 12 Sep 2022 02:54:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Is-there-a-method-to-restart-object-spawners-on-all-GRID-nodes/m-p/832808#M25026</guid>
      <dc:creator>AnandVyas</dc:creator>
      <dc:date>2022-09-12T02:54:24Z</dc:date>
    </item>
  </channel>
</rss>

