<?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: PROC S3 Procedure Questions in Administration and Deployment</title>
    <link>https://communities.sas.com/t5/Administration-and-Deployment/PROC-S3-Procedure-Questions/m-p/466932#M13304</link>
    <description>&lt;P&gt;I have played a little with this using SAS 9.4m5, not sure if there are any changes from 9.4m4.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Basically I was experimenting with just storing PROC S3 format configuration files in users home directories.&amp;nbsp; For each bucket they need to access have them create a file text file in the .ssh directory with the name of the bucket can content like:&lt;/P&gt;
&lt;PRE&gt;ssl=yes
keyID=key1
secret=key2
region=useast
&lt;/PRE&gt;
&lt;P&gt;Then they can do something like:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;* Copy file to S3 ;
%let bucket=mybucket;
proc s3 config="~/.ssh/&amp;amp;bucket";
  put "myfile" "/&amp;amp;bucket/myfile";
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Fri, 01 Jun 2018 16:58:56 GMT</pubDate>
    <dc:creator>Tom</dc:creator>
    <dc:date>2018-06-01T16:58:56Z</dc:date>
    <item>
      <title>PROC S3 Procedure Questions</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/PROC-S3-Procedure-Questions/m-p/466053#M13272</link>
      <description>&lt;P&gt;&lt;SPAN&gt;SAS Current version: 9.04.01M4P110916&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is the SAS/ACCESS Interface to Amazon Redshift required to use the PROC S3 procedure to connect to a S3 bucket?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There are several SAS programmers that require access to the S3 bucket. Is there one config file for all SAS programmers or need to add the config file in each SAS programmer /home/username Linux directory?&lt;/P&gt;</description>
      <pubDate>Wed, 30 May 2018 14:44:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/PROC-S3-Procedure-Questions/m-p/466053#M13272</guid>
      <dc:creator>Jlochoa</dc:creator>
      <dc:date>2018-05-30T14:44:08Z</dc:date>
    </item>
    <item>
      <title>Re: PROC S3 Procedure Questions</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/PROC-S3-Procedure-Questions/m-p/466213#M13277</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/35708"&gt;@Jlochoa&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If the programmers are using a centralized account (the same credentials) then a single directory would be fine. If they each have their own accounts they will need to have individual directories so that their keys are not shared.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best wishes,&lt;BR /&gt;Jeff&lt;/P&gt;</description>
      <pubDate>Wed, 30 May 2018 19:37:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/PROC-S3-Procedure-Questions/m-p/466213#M13277</guid>
      <dc:creator>JBailey</dc:creator>
      <dc:date>2018-05-30T19:37:12Z</dc:date>
    </item>
    <item>
      <title>Re: PROC S3 Procedure Questions</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/PROC-S3-Procedure-Questions/m-p/466914#M13301</link>
      <description>&lt;P&gt;Hi Jeff,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is there a way to set server side encryption in the Proc S3 config file or some other way. The S3 bucket requires this encryption.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;jose&lt;/P&gt;</description>
      <pubDate>Fri, 01 Jun 2018 16:21:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/PROC-S3-Procedure-Questions/m-p/466914#M13301</guid>
      <dc:creator>Jlochoa</dc:creator>
      <dc:date>2018-06-01T16:21:48Z</dc:date>
    </item>
    <item>
      <title>Re: PROC S3 Procedure Questions</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/PROC-S3-Procedure-Questions/m-p/466932#M13304</link>
      <description>&lt;P&gt;I have played a little with this using SAS 9.4m5, not sure if there are any changes from 9.4m4.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Basically I was experimenting with just storing PROC S3 format configuration files in users home directories.&amp;nbsp; For each bucket they need to access have them create a file text file in the .ssh directory with the name of the bucket can content like:&lt;/P&gt;
&lt;PRE&gt;ssl=yes
keyID=key1
secret=key2
region=useast
&lt;/PRE&gt;
&lt;P&gt;Then they can do something like:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;* Copy file to S3 ;
%let bucket=mybucket;
proc s3 config="~/.ssh/&amp;amp;bucket";
  put "myfile" "/&amp;amp;bucket/myfile";
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 01 Jun 2018 16:58:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/PROC-S3-Procedure-Questions/m-p/466932#M13304</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2018-06-01T16:58:56Z</dc:date>
    </item>
    <item>
      <title>Re: PROC S3 Procedure Questions</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/PROC-S3-Procedure-Questions/m-p/468745#M13358</link>
      <description>&lt;P&gt;Hi Tom,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I created the .ssh directory in my /home/username directory and added the tks3.conf file. Unfortunately, the access denied error message in the log file&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ERROR: Could not put file.&lt;/P&gt;
&lt;DIV class="sasError" id="sasLogError2_1528472432785"&gt;ERROR: Access Denied&lt;/DIV&gt;</description>
      <pubDate>Fri, 08 Jun 2018 15:41:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/PROC-S3-Procedure-Questions/m-p/468745#M13358</guid>
      <dc:creator>Jlochoa</dc:creator>
      <dc:date>2018-06-08T15:41:28Z</dc:date>
    </item>
    <item>
      <title>Re: PROC S3 Procedure Questions</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/PROC-S3-Procedure-Questions/m-p/664493#M19277</link>
      <description>&lt;P&gt;The .tks3.conf file does not go in the .ssh directory. It should be in your home directory.&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jun 2020 21:32:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/PROC-S3-Procedure-Questions/m-p/664493#M19277</guid>
      <dc:creator>jeclev</dc:creator>
      <dc:date>2020-06-23T21:32:05Z</dc:date>
    </item>
  </channel>
</rss>

