<?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 Disabling Concurrent Logon Sessions on EG in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Disabling-Concurrent-Logon-Sessions-on-EG/m-p/193710#M14745</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #222222; font-family: arial, sans-serif; font-size: 12.8000001907349px; background-color: #ffffff;"&gt;The link below has the instruction for disabling Concurrent Logon Sessions for Web Applications. Is it possible to do the same for EG? If so, is there any link or document related to it?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #222222; font-family: arial, sans-serif; font-size: 12.8000001907349px; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #222222; font-family: arial, sans-serif; font-size: 12.8000001907349px; background-color: #ffffff;"&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/bimtag/65708/HTML/default/viewer.htm#n0qk5mb1ftpckcn17unt7ptvxp3z.htm" title="http://support.sas.com/documentation/cdl/en/bimtag/65708/HTML/default/viewer.htm#n0qk5mb1ftpckcn17unt7ptvxp3z.htm"&gt;SAS(R) 9.3 Intelligence Platform: Middle-Tier Administration Guide, Third Edition&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 06 Aug 2015 13:19:06 GMT</pubDate>
    <dc:creator>turcay</dc:creator>
    <dc:date>2015-08-06T13:19:06Z</dc:date>
    <item>
      <title>Disabling Concurrent Logon Sessions on EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Disabling-Concurrent-Logon-Sessions-on-EG/m-p/193710#M14745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #222222; font-family: arial, sans-serif; font-size: 12.8000001907349px; background-color: #ffffff;"&gt;The link below has the instruction for disabling Concurrent Logon Sessions for Web Applications. Is it possible to do the same for EG? If so, is there any link or document related to it?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #222222; font-family: arial, sans-serif; font-size: 12.8000001907349px; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #222222; font-family: arial, sans-serif; font-size: 12.8000001907349px; background-color: #ffffff;"&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/bimtag/65708/HTML/default/viewer.htm#n0qk5mb1ftpckcn17unt7ptvxp3z.htm" title="http://support.sas.com/documentation/cdl/en/bimtag/65708/HTML/default/viewer.htm#n0qk5mb1ftpckcn17unt7ptvxp3z.htm"&gt;SAS(R) 9.3 Intelligence Platform: Middle-Tier Administration Guide, Third Edition&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Aug 2015 13:19:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Disabling-Concurrent-Logon-Sessions-on-EG/m-p/193710#M14745</guid>
      <dc:creator>turcay</dc:creator>
      <dc:date>2015-08-06T13:19:06Z</dc:date>
    </item>
    <item>
      <title>Re: Disabling Concurrent Logon Sessions on EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Disabling-Concurrent-Logon-Sessions-on-EG/m-p/193711#M14746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Does anybody have knowledge about this question ? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Aug 2015 23:15:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Disabling-Concurrent-Logon-Sessions-on-EG/m-p/193711#M14746</guid>
      <dc:creator>turcay</dc:creator>
      <dc:date>2015-08-06T23:15:32Z</dc:date>
    </item>
    <item>
      <title>Re: Disabling Concurrent Logon Sessions on EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Disabling-Concurrent-Logon-Sessions-on-EG/m-p/193712#M14747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have customized the startup script that is called by the spawner when a workspace session is launched.&lt;/P&gt;&lt;P&gt;(/...../WorkspaceServer_usermods.sh)&lt;/P&gt;&lt;P&gt;It checks for similar processes run by the same user, and if a certain number of lines is exceeded, terminates without starting SAS.&lt;/P&gt;&lt;P&gt;See here:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LIMIT=4&lt;/P&gt;&lt;P&gt;COUNT=`ps -ef|grep bridge|grep spawned|grep $USER|wc -l`&lt;/P&gt;&lt;P&gt;if [[ $COUNT -gt $LIMIT ]]&lt;/P&gt;&lt;P&gt;then&lt;/P&gt;&lt;P&gt;&amp;nbsp; #document the fact in the user's home directory in a log file&lt;/P&gt;&lt;P&gt;&amp;nbsp; date &amp;gt;&amp;gt; $HOME/.limit.log&lt;/P&gt;&lt;P&gt;&amp;nbsp; exit 1&lt;/P&gt;&lt;P&gt;fi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Aug 2015 06:21:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Disabling-Concurrent-Logon-Sessions-on-EG/m-p/193712#M14747</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2015-08-07T06:21:06Z</dc:date>
    </item>
    <item>
      <title>Re: Disabling Concurrent Logon Sessions on EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Disabling-Concurrent-Logon-Sessions-on-EG/m-p/193713#M14748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Nice solution!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Aug 2015 12:33:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Disabling-Concurrent-Logon-Sessions-on-EG/m-p/193713#M14748</guid>
      <dc:creator>ChrisHemedinger</dc:creator>
      <dc:date>2015-08-07T12:33:30Z</dc:date>
    </item>
    <item>
      <title>Re: Disabling Concurrent Logon Sessions on EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Disabling-Concurrent-Logon-Sessions-on-EG/m-p/193714#M14749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When you can get your hands on the EGUIDE profile.... &lt;A href="http://support.sas.com/kb/51/225.html" title="http://support.sas.com/kb/51/225.html"&gt;51225 - How to set the number of parallel processes that SAS® Enterprise Guide® can execute&lt;/A&gt; &lt;/P&gt;&lt;P&gt;Would advice Kurts approach . As I see Chris is a liking that one also I am getting hope this kind of approaches are getting accepted by SAS (often being blocked).&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Aug 2015 12:43:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Disabling-Concurrent-Logon-Sessions-on-EG/m-p/193714#M14749</guid>
      <dc:creator>jakarman</dc:creator>
      <dc:date>2015-08-07T12:43:13Z</dc:date>
    </item>
    <item>
      <title>Re: Disabling Concurrent Logon Sessions on EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Disabling-Concurrent-Logon-Sessions-on-EG/m-p/873374#M42827</link>
      <description>Hi Kurt, Can we change your Unix script for Windows OS env., or how to run on Windows Server this script (in order to prevent same user same time in diferent hosts)</description>
      <pubDate>Tue, 02 May 2023 14:08:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Disabling-Concurrent-Logon-Sessions-on-EG/m-p/873374#M42827</guid>
      <dc:creator>Ersun</dc:creator>
      <dc:date>2023-05-02T14:08:22Z</dc:date>
    </item>
    <item>
      <title>Re: Disabling Concurrent Logon Sessions on EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Disabling-Concurrent-Logon-Sessions-on-EG/m-p/873519#M42846</link>
      <description>&lt;P&gt;The script as written won't work on Windows. The command "ps -ef" is a Unix only command. The equivalent command in Windows is tasklist. This command will get a list of currently executing SAS sessions:&lt;/P&gt;
&lt;PRE&gt;tasklist /FI "IMAGENAME eq SAS.EXE" /V&lt;/PRE&gt;
&lt;P&gt;The list contains user names which could be filtered further. I'll leave it up to you to investigate further. I'm sure you have IT experts in your organisation that could script a solution. If it involves different hosts then that is going to be tricky...&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 03 May 2023 03:42:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Disabling-Concurrent-Logon-Sessions-on-EG/m-p/873519#M42846</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2023-05-03T03:42:01Z</dc:date>
    </item>
    <item>
      <title>Re: Disabling Concurrent Logon Sessions on EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Disabling-Concurrent-Logon-Sessions-on-EG/m-p/873533#M42848</link>
      <description>&lt;P&gt;I am not weighing in on this much, just that Windows can run a lot of unix scripts. It has a unix subsystem (&lt;SPAN&gt;Windows Subsystem for Linux (WSL))&lt;/SPAN&gt;. That said, PowerShell should be able to handle this w/o any issues. Process lists are pretty standard in the .NET world. I use them a lot. A quick search showed Get-Process. Either a script or PowerShell should work with similar logic.&lt;/P&gt;</description>
      <pubDate>Wed, 03 May 2023 05:58:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Disabling-Concurrent-Logon-Sessions-on-EG/m-p/873533#M42848</guid>
      <dc:creator>AlanC</dc:creator>
      <dc:date>2023-05-03T05:58:42Z</dc:date>
    </item>
  </channel>
</rss>

