<?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 Kerberos Authentication  via SAS EG in Administration and Deployment</title>
    <link>https://communities.sas.com/t5/Administration-and-Deployment/Kerberos-Authentication-via-SAS-EG/m-p/495302#M14289</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We are connecting to MSSQL server using Windows Authentication mode and we are succeeded in connecting to that.&amp;nbsp; But we do have a problem whenever we issue the libname statement in SAS EG stating Kerberos ticket expiration&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Have identified that whenever we login to SSH first and then issue the libname, we don't see any issue in the connection. But when we connect to SAS EG first and then if we issue the libname statement , we do face issue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kerberos ticket is getting generated/renewed whenever we login to SSH under tmp directory but not getting generated using SAS EG(at first).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there any SAS configuration file to update Kerberos ticket renewal to rectify this issue??&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Helan Nivas G&lt;/P&gt;</description>
    <pubDate>Thu, 13 Sep 2018 14:20:08 GMT</pubDate>
    <dc:creator>helannivas88</dc:creator>
    <dc:date>2018-09-13T14:20:08Z</dc:date>
    <item>
      <title>Kerberos Authentication  via SAS EG</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Kerberos-Authentication-via-SAS-EG/m-p/495302#M14289</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We are connecting to MSSQL server using Windows Authentication mode and we are succeeded in connecting to that.&amp;nbsp; But we do have a problem whenever we issue the libname statement in SAS EG stating Kerberos ticket expiration&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Have identified that whenever we login to SSH first and then issue the libname, we don't see any issue in the connection. But when we connect to SAS EG first and then if we issue the libname statement , we do face issue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kerberos ticket is getting generated/renewed whenever we login to SSH under tmp directory but not getting generated using SAS EG(at first).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there any SAS configuration file to update Kerberos ticket renewal to rectify this issue??&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Helan Nivas G&lt;/P&gt;</description>
      <pubDate>Thu, 13 Sep 2018 14:20:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Kerberos-Authentication-via-SAS-EG/m-p/495302#M14289</guid>
      <dc:creator>helannivas88</dc:creator>
      <dc:date>2018-09-13T14:20:08Z</dc:date>
    </item>
    <item>
      <title>Re: Kerberos Authentication  via SAS EG</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Kerberos-Authentication-via-SAS-EG/m-p/495305#M14290</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/182470"&gt;@helannivas88&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You have to configure PAM authentication as described in this SAS note:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/kb/49/432.html" target="_self"&gt;http://support.sas.com/kb/49/432.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;After that, please make sure that "PAM_SETCREDENTIALS=TRUE" is uncommented in your /&amp;lt;SASHome&amp;gt;/SASFoundation/9.4/utilities/bin/sasauth.conf. Also, do not forget to restart the object spawner.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Besides of all of, you have to set KRB5CCNAME, you can do that through this script in WorkspaceServer_usermods.sh:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;workspace_user=$(whoami)
workspace_user_ccaches=$(find /tmp -maxdepth 1 -user ${workspace_user} -type f -name "krb5cc_*" -printf '%T@ %p\n' | sort -k 1nr | sed 's/^[^ ]* //' | head -n 1)

if test ! -z "$workspace_user_ccaches"; then
            echo "Most recent krb5 ccache found for '${workspace_user}' at '${workspace_user_ccaches}'."
            echo "Cache last modified: $(stat -c%y ${workspace_user_ccaches})"
            export KRB5CCNAME=$workspace_user_ccaches
            echo "KRB5CCNAME has been set to ${KRB5CCNAME}."
else
            echo "No krb5 credentials caches were found in /tmp for '${workspace_user}'."
fi&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 13 Sep 2018 14:25:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Kerberos-Authentication-via-SAS-EG/m-p/495305#M14290</guid>
      <dc:creator>alexal</dc:creator>
      <dc:date>2018-09-13T14:25:52Z</dc:date>
    </item>
    <item>
      <title>Re: Kerberos Authentication  via SAS EG</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Kerberos-Authentication-via-SAS-EG/m-p/509813#M14851</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As I said earlier and after updating the script in workspaceserver_usermods.sh, it works perfectly in master (Grid controller) and not in Grid node.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But our environment are shared across both the servers (i.e.) the configuration is shared between master and Node.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But not sure why&amp;nbsp;the&amp;nbsp;ticket are not behaving same like Grid Controller.Can you please let me know the reason on this. Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Helan Nivas G&lt;/P&gt;</description>
      <pubDate>Fri, 02 Nov 2018 11:03:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Kerberos-Authentication-via-SAS-EG/m-p/509813#M14851</guid>
      <dc:creator>helannivas88</dc:creator>
      <dc:date>2018-11-02T11:03:46Z</dc:date>
    </item>
    <item>
      <title>Re: Kerberos Authentication  via SAS EG</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Kerberos-Authentication-via-SAS-EG/m-p/509825#M14852</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/182470"&gt;@helannivas88&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Have a look here:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/kb/57/943.html" target="_blank"&gt;http://support.sas.com/kb/57/943.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/kb/55/312.html" target="_blank"&gt;http://support.sas.com/kb/55/312.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Nov 2018 11:48:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Kerberos-Authentication-via-SAS-EG/m-p/509825#M14852</guid>
      <dc:creator>nhvdwalt</dc:creator>
      <dc:date>2018-11-02T11:48:51Z</dc:date>
    </item>
  </channel>
</rss>

