<?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 AUTHDOMAIN issue in Administration and Deployment</title>
    <link>https://communities.sas.com/t5/Administration-and-Deployment/AUTHDOMAIN-issue/m-p/349684#M8270</link>
    <description>&lt;P&gt;Hello Team,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am using AuthDomain in one of my libname statement and it is perfectly working from SAS DI user written trasformation,when i run from front end. But the same job when i deploy to batch server it is not working. Saying as invalid credentials in LIbname statement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks In Advance for your help,&lt;/P&gt;
&lt;P&gt;Sandeep&lt;/P&gt;</description>
    <pubDate>Thu, 13 Apr 2017 07:59:01 GMT</pubDate>
    <dc:creator>sandeep_reddy</dc:creator>
    <dc:date>2017-04-13T07:59:01Z</dc:date>
    <item>
      <title>AUTHDOMAIN issue</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/AUTHDOMAIN-issue/m-p/349684#M8270</link>
      <description>&lt;P&gt;Hello Team,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am using AuthDomain in one of my libname statement and it is perfectly working from SAS DI user written trasformation,when i run from front end. But the same job when i deploy to batch server it is not working. Saying as invalid credentials in LIbname statement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks In Advance for your help,&lt;/P&gt;
&lt;P&gt;Sandeep&lt;/P&gt;</description>
      <pubDate>Thu, 13 Apr 2017 07:59:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/AUTHDOMAIN-issue/m-p/349684#M8270</guid>
      <dc:creator>sandeep_reddy</dc:creator>
      <dc:date>2017-04-13T07:59:01Z</dc:date>
    </item>
    <item>
      <title>Re: AUTHDOMAIN issue</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/AUTHDOMAIN-issue/m-p/349820#M8274</link>
      <description>Authdomain option works in batch mode.&lt;BR /&gt;something like this should work&lt;BR /&gt;%let idinfo=authdomain=  sever=... database=;&lt;BR /&gt;in procsql you can use the &amp;amp;idinfo macro</description>
      <pubDate>Thu, 13 Apr 2017 17:51:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/AUTHDOMAIN-issue/m-p/349820#M8274</guid>
      <dc:creator>thesasuser</dc:creator>
      <dc:date>2017-04-13T17:51:16Z</dc:date>
    </item>
    <item>
      <title>Re: AUTHDOMAIN issue</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/AUTHDOMAIN-issue/m-p/349971#M8282</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/10246"&gt;@sandeep_reddy&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would recommend you a review of the documentation about Authentication Domains&amp;nbsp;&lt;A href="http://support.sas.com/documentation/cdl/en/mcsecug/64770/HTML/default/viewer.htm#aboutum.htm#p18zm6n7c8eketn1ggs2opidsuzk" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/mcsecug/64770/HTML/default/viewer.htm#aboutum.htm#p18zm6n7c8eketn1ggs2opidsuzk&lt;/A&gt; and the "S&lt;SPAN&gt;AS Intelligence Platform: Security Administration Guide".&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;You will need that, the user that is executing the SAS process, would be registered in the SAS metadata with the right permissions and group memberships to access the Authentication Domain you selected. Plus, the process might need to know on what server/configuration level neecs to connect, in case you have more than 1 configuration level in your server running SAS.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So, additionally to ensure that your OS user&amp;nbsp;(batch user) is registered in your SAS Metadata (with the right permissions and group memberships), to ensure the implicit metadata connection and authentication, you can always add to your code the explicit connection to your metadata in your SAS code:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options metaserver="yourserver.com"                                         
        metaport=8561              
        metauser="your_metadata_user"                                     
        metapass="your_metadata_user_password"     
        metaprotocol=Bridge        
        metarepository=Foundation;  
                                 &lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Again, the user will need to be registered in the metadata and with the right group membership. In this case, you could use a internal SAS account or an external OS account.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope this helps!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;Juan&lt;/P&gt;</description>
      <pubDate>Fri, 14 Apr 2017 07:39:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/AUTHDOMAIN-issue/m-p/349971#M8282</guid>
      <dc:creator>JuanS_OCS</dc:creator>
      <dc:date>2017-04-14T07:39:52Z</dc:date>
    </item>
    <item>
      <title>Re: AUTHDOMAIN issue</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/AUTHDOMAIN-issue/m-p/350261#M8298</link>
      <description>&lt;P&gt;Further to what I have said yesterday, the following links&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.sas.com/content/sasdummy/2010/11/23/five-strategies-to-eliminate-passwords-from-your-sas-programs/" target="_blank"&gt;http://blogs.sas.com/content/sasdummy/2010/11/23/five-strategies-to-eliminate-passwords-from-your-sas-programs/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/acreldb/63647/HTML/default/viewer.htm#a003175613.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/acreldb/63647/HTML/default/viewer.htm#a003175613.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/kb/38/204.html" target="_blank"&gt;http://support.sas.com/kb/38/204.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 15 Apr 2017 14:56:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/AUTHDOMAIN-issue/m-p/350261#M8298</guid>
      <dc:creator>thesasuser</dc:creator>
      <dc:date>2017-04-15T14:56:52Z</dc:date>
    </item>
  </channel>
</rss>

