<?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: SFTP, RSYNC or SCP  not working via SAS Enterprise Guide 8.3 execution in Administration and Deployment</title>
    <link>https://communities.sas.com/t5/Administration-and-Deployment/SFTP-RSYNC-or-SCP-not-working-via-SAS-Enterprise-Guide-8-3/m-p/914867#M27982</link>
    <description>&lt;P&gt;This is a Kerberos error that is the result of mismatched library versions. As &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt; mentioned, this is likely the result of your library path setting (value of LD_LIBRARY_PATH environment variable) including a path that contains a different version of the Kerberos libraries that does not contain the k5_internalize_principal symbol being called by &lt;EM&gt;/lib64/libgssapi_krb5.so.2&lt;/EM&gt;.&lt;/P&gt;</description>
    <pubDate>Wed, 07 Feb 2024 14:57:23 GMT</pubDate>
    <dc:creator>gwootton</dc:creator>
    <dc:date>2024-02-07T14:57:23Z</dc:date>
    <item>
      <title>SFTP, RSYNC or SCP  not working via SAS Enterprise Guide 8.3 execution</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/SFTP-RSYNC-or-SCP-not-working-via-SAS-Enterprise-Guide-8-3/m-p/914807#M27978</link>
      <description>&lt;P&gt;HI&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;After in place upgrade to RHEL 7.9 to 8.9 (having SAS 9.4 M7 installed), post upgrade any file transfer protocols related SAS program with filename&amp;nbsp; SFTP or&amp;nbsp; X or pipe protocol commands&amp;nbsp; only are not working &amp;amp; encountering below error.&lt;BR /&gt;&lt;STRONG&gt;Note&lt;/STRONG&gt;: Password less authentication is in place , key exchange done between source &amp;amp; destination.&lt;/P&gt;
&lt;P&gt;&lt;U&gt;Error&lt;/U&gt;:&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;/usr/bin/ssh:symbol lookup error: /lib64/libgssapi_krb5.so.2: undefined symbol: k5_internalize_principal, version krb5_3_MIT lost connection&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;However, on Linux server command line OS commands&amp;nbsp;rsync /sftp /scp are working fine.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sample codes that are not working:&lt;/P&gt;
&lt;PRE&gt;filename myfile sftp '/users/xxxx/test.dat' host="unixhost1" options="-oPort=4117";
data _null_;
   infile myfile truncover;
   input a $25.;;
run;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE class=" language-sas"&gt;&lt;U&gt;Error&lt;/U&gt;:

&lt;FONT color="#FF0000"&gt;/usr/bin/ssh:symbol lookup error: /lib64/libgssapi_krb5.so.2: undefined symbol: k5_internalize_principal, version krb5_3_MIT lost connection&lt;/FONT&gt;&lt;/CODE&gt;&lt;/PRE&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;/*Password less authentication setup and working fine */
%let rsynccmd= rsync -avph /dir/filename user@hostname:/dir/path;

filename oscmd pipe "&amp;amp;rsynccmd";

data _null_;
infile oscmd;
input;
put _infile_;
run;


&lt;U&gt;Error&lt;/U&gt;:

&lt;FONT color="#FF0000"&gt;/usr/bin/ssh:symbol lookup error: /lib64/libgssapi_krb5.so.2: undefined symbol: k5_internalize_principal, version krb5_3_MIT lost connection&lt;/FONT&gt;&lt;/CODE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Feb 2024 03:21:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/SFTP-RSYNC-or-SCP-not-working-via-SAS-Enterprise-Guide-8-3/m-p/914807#M27978</guid>
      <dc:creator>Tom007</dc:creator>
      <dc:date>2024-02-07T03:21:00Z</dc:date>
    </item>
    <item>
      <title>Re: SFTP, RSYNC or SCP  not working via SAS Enterprise Guide 8.3 execution</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/SFTP-RSYNC-or-SCP-not-working-via-SAS-Enterprise-Guide-8-3/m-p/914809#M27979</link>
      <description>&lt;P&gt;You are using single quotes which won't resolve your embedded macro variable. Try double quotes:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;filename oscmd pipe "&amp;amp;rsyncmd";&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 07 Feb 2024 03:12:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/SFTP-RSYNC-or-SCP-not-working-via-SAS-Enterprise-Guide-8-3/m-p/914809#M27979</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2024-02-07T03:12:35Z</dc:date>
    </item>
    <item>
      <title>Re: SFTP, RSYNC or SCP  not working via SAS Enterprise Guide 8.3 execution</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/SFTP-RSYNC-or-SCP-not-working-via-SAS-Enterprise-Guide-8-3/m-p/914810#M27980</link>
      <description>&lt;P&gt;Thanks SASKiwi for your attention and response, I did double check the code there is double quotes I updated in my query also.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Issue remains with same error.&lt;/P&gt;</description>
      <pubDate>Wed, 07 Feb 2024 03:23:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/SFTP-RSYNC-or-SCP-not-working-via-SAS-Enterprise-Guide-8-3/m-p/914810#M27980</guid>
      <dc:creator>Tom007</dc:creator>
      <dc:date>2024-02-07T03:23:09Z</dc:date>
    </item>
    <item>
      <title>Re: SFTP, RSYNC or SCP  not working via SAS Enterprise Guide 8.3 execution</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/SFTP-RSYNC-or-SCP-not-working-via-SAS-Enterprise-Guide-8-3/m-p/914826#M27981</link>
      <description>&lt;P&gt;Run the &lt;FONT face="courier new,courier"&gt;set&lt;/FONT&gt; command from the commandline and from within SAS, and look for differences in the output. I suspect a missing library path.&lt;/P&gt;</description>
      <pubDate>Wed, 07 Feb 2024 07:06:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/SFTP-RSYNC-or-SCP-not-working-via-SAS-Enterprise-Guide-8-3/m-p/914826#M27981</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2024-02-07T07:06:57Z</dc:date>
    </item>
    <item>
      <title>Re: SFTP, RSYNC or SCP  not working via SAS Enterprise Guide 8.3 execution</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/SFTP-RSYNC-or-SCP-not-working-via-SAS-Enterprise-Guide-8-3/m-p/914867#M27982</link>
      <description>&lt;P&gt;This is a Kerberos error that is the result of mismatched library versions. As &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt; mentioned, this is likely the result of your library path setting (value of LD_LIBRARY_PATH environment variable) including a path that contains a different version of the Kerberos libraries that does not contain the k5_internalize_principal symbol being called by &lt;EM&gt;/lib64/libgssapi_krb5.so.2&lt;/EM&gt;.&lt;/P&gt;</description>
      <pubDate>Wed, 07 Feb 2024 14:57:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/SFTP-RSYNC-or-SCP-not-working-via-SAS-Enterprise-Guide-8-3/m-p/914867#M27982</guid>
      <dc:creator>gwootton</dc:creator>
      <dc:date>2024-02-07T14:57:23Z</dc:date>
    </item>
    <item>
      <title>Re: SFTP, RSYNC or SCP  not working via SAS Enterprise Guide 8.3 execution</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/SFTP-RSYNC-or-SCP-not-working-via-SAS-Enterprise-Guide-8-3/m-p/915626#M27999</link>
      <description>&lt;P&gt;Hello &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/12101"&gt;@Tom007&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;One approach to resolving your issue could be using public key authentication. &lt;BR /&gt;The solution to this ticket has the sample code that should help&lt;/P&gt;
&lt;P&gt;&lt;A href="https://communities.sas.com/t5/SAS-Programming/Move-files-between-server-using-SFTP/td-p/350673" target="_blank"&gt;https://communities.sas.com/t5/SAS-Programming/Move-files-between-server-using-SFTP/td-p/350673&lt;/A&gt; &lt;/P&gt;</description>
      <pubDate>Mon, 12 Feb 2024 17:28:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/SFTP-RSYNC-or-SCP-not-working-via-SAS-Enterprise-Guide-8-3/m-p/915626#M27999</guid>
      <dc:creator>Sajid01</dc:creator>
      <dc:date>2024-02-12T17:28:10Z</dc:date>
    </item>
    <item>
      <title>Re: SFTP, RSYNC or SCP  not working via SAS Enterprise Guide 8.3 execution</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/SFTP-RSYNC-or-SCP-not-working-via-SAS-Enterprise-Guide-8-3/m-p/915727#M28004</link>
      <description>&lt;P&gt;Thank you&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt;&amp;nbsp;for you recommendation.&lt;BR /&gt;&lt;BR /&gt;After RHEL 8.9 upgrade , As a work around&amp;nbsp;unset $LD_LIBRARY_PATH ; set $/usr/bin; is working for protocols in SAS Code having like X command , pipe command via SAS Enterprise Guide 8.3. Where as sas batch mode and crontab no issues (no need to unset/set).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Our Aim to execute as before without unset &amp;amp; set like before upgrade.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;However, this is not behavior during OS RHEL 7.9, SAS code having the scp/ rsync/ sftp commands absolutely works fine in with X command , pipe command Enterprise Guide 8.3 , sas batch mode &amp;amp; crontab.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Feb 2024 23:18:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/SFTP-RSYNC-or-SCP-not-working-via-SAS-Enterprise-Guide-8-3/m-p/915727#M28004</guid>
      <dc:creator>Tom007</dc:creator>
      <dc:date>2024-02-12T23:18:53Z</dc:date>
    </item>
    <item>
      <title>Re: SFTP, RSYNC or SCP  not working via SAS Enterprise Guide 8.3 execution</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/SFTP-RSYNC-or-SCP-not-working-via-SAS-Enterprise-Guide-8-3/m-p/915729#M28005</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/131732"&gt;@Sajid01&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for looking into my issue and providing your thoughts , I appreciate your time and suggestion.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We have made sure the public key authentication b/w source and destination hosts, via OS command line testing, connection work seamless without password prompt.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Even by examples works fine in OS Command line and even embedded in sas code in batch mode or crontab schedule sas job&lt;BR /&gt;&lt;BR /&gt;rsync -v&amp;nbsp; /source_path/file_name&amp;nbsp; &lt;A href="mailto:userid@fullqualified" target="_blank"&gt;userid@FQDN:/destination_path/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;scp -p&amp;nbsp;&amp;nbsp; /source_path/file_name&amp;nbsp; &lt;A href="mailto:userid@fullqualified" target="_blank"&gt;userid@FQDN:/destination_path/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Issue encountering same via SAS Enterprise Guide 8.3 code execution, no error in log file, nor file isn't getting transferred to destination host.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When we user pipe command, following is error:&amp;nbsp;&lt;FONT color="#FF0000"&gt;&lt;SPAN&gt;&lt;SPAN class="ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak"&gt;ssh: symbol lookup error: /&lt;STRONG&gt;lib64/libgssapi_krb5.so.2&lt;/STRONG&gt;: undefined symbol: k5_internalize_principal, version krb5_3_MIT&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;%let rsynccmd= rsync -v source_path/baseball.sas7bdat &lt;A href="mailto:userid@fullqualified" target="_blank"&gt;userid@FQDN:/destination_path&lt;/A&gt;;&lt;/P&gt;
&lt;P&gt;filename cmdpipe pipe "&amp;amp;rsynccmd";&lt;BR /&gt;data _null_;&lt;BR /&gt;infile cmdpipe;&lt;BR /&gt;input;&lt;BR /&gt;put _infile_;&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Feb 2024 23:32:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/SFTP-RSYNC-or-SCP-not-working-via-SAS-Enterprise-Guide-8-3/m-p/915729#M28005</guid>
      <dc:creator>Tom007</dc:creator>
      <dc:date>2024-02-12T23:32:31Z</dc:date>
    </item>
    <item>
      <title>Re: SFTP, RSYNC or SCP  not working via SAS Enterprise Guide 8.3 execution</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/SFTP-RSYNC-or-SCP-not-working-via-SAS-Enterprise-Guide-8-3/m-p/915731#M28006</link>
      <description>&lt;P&gt;&lt;U&gt;Workaround:&lt;/U&gt; When we remove below highlighted path from &lt;U&gt;sasenv.local&lt;/U&gt; from Foundation path of SAS. Then we are able to perform execute via SAS Enterprise Guide 8.3 successfully. &lt;BR /&gt;&lt;SPAN&gt;&lt;SPAN class="ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak"&gt;LD_LIBRARY_PATH=/opt/Progress/DataDirect/ODBC_80_64bit/lib:/usr/local/sap/IQ-16_1/lib64:/usr&lt;STRONG&gt;/local/nz/lib64&lt;/STRONG&gt;:/usr/local/nz/lib:;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;But the hitch is , this is impacting crontab scheduled jobs, encountering with below error&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;SPAN class="ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak"&gt;ERROR: Could not load /&amp;lt;SASHOME&amp;gt;/SASFoundation/9.4/sasexe/sasnza (40 images loaded)&lt;BR /&gt;ERROR: libnzodbc.so: wrong ELF class: ELFCLASS32&lt;BR /&gt;ERROR: The SAS/ACCESS Interface to Netezza cannot be loaded. The SASNZA&amp;nbsp;&amp;nbsp; code appendage could not be loaded.&lt;BR /&gt;ERROR: Error in the LIBNAME statement.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;For the above SASNZA error we are exporting the LD_LIBRARY_PATH in user's home .bash_profile&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;00 09 * * *&amp;nbsp; source ~/.bash_profile; /sashome/SASFoundation/9.4/sas&amp;nbsp; sasprogram.sas&amp;nbsp; -log&amp;nbsp; sasprogram.log&lt;/P&gt;</description>
      <pubDate>Mon, 12 Feb 2024 23:41:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/SFTP-RSYNC-or-SCP-not-working-via-SAS-Enterprise-Guide-8-3/m-p/915731#M28006</guid>
      <dc:creator>Tom007</dc:creator>
      <dc:date>2024-02-12T23:41:12Z</dc:date>
    </item>
    <item>
      <title>Re: SFTP, RSYNC or SCP  not working via SAS Enterprise Guide 8.3 execution</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/SFTP-RSYNC-or-SCP-not-working-via-SAS-Enterprise-Guide-8-3/m-p/915807#M28009</link>
      <description>&lt;P&gt;Hello&lt;BR /&gt;Try updating the LD_LIBRARY_PATH as follows&lt;/P&gt;
&lt;PRE&gt;LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/opt/Progress/DataDirect/ODBC_80_64bit/lib:/usr/local/sap/IQ-16_1/lib64:/usr/local/nz/lib64:/usr/local/nz/lib:;&lt;/PRE&gt;
&lt;P&gt;If that does not work add &lt;SPAN&gt;&lt;SPAN class="ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak"&gt; /&amp;lt;SASHOME&amp;gt;/SASFoundation/9.4/sasexe/sasnza&lt;/SPAN&gt;&lt;/SPAN&gt; to your path variable&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;${PATH}=${PATH}: /full_path_here/SASFoundation/9.4/sasexe/sasnzaSeek&amp;nbsp;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;It will be good if you can rope in the assistance of your local LInux Administrators. The local SAS/Linux Admins know your environment well and can be of great help.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Feb 2024 13:34:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/SFTP-RSYNC-or-SCP-not-working-via-SAS-Enterprise-Guide-8-3/m-p/915807#M28009</guid>
      <dc:creator>Sajid01</dc:creator>
      <dc:date>2024-02-13T13:34:27Z</dc:date>
    </item>
    <item>
      <title>Re: SFTP, RSYNC or SCP  not working via SAS Enterprise Guide 8.3 execution</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/SFTP-RSYNC-or-SCP-not-working-via-SAS-Enterprise-Guide-8-3/m-p/915809#M28010</link>
      <description>It sounds like "/local/nz/lib64" contains its own version of the kerberos libraries. I might try adding /lib64/ in front of it so that path is checked first. &lt;BR /&gt;As &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/131732"&gt;@Sajid01&lt;/a&gt; points out you should also include the existing definition of LD_LIBRARY_PATH (e.g. LD_LIBRARY_PATH=$LD_LIBRARY_PATH:..., otherwise you would overwrite what is already there.</description>
      <pubDate>Tue, 13 Feb 2024 13:55:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/SFTP-RSYNC-or-SCP-not-working-via-SAS-Enterprise-Guide-8-3/m-p/915809#M28010</guid>
      <dc:creator>gwootton</dc:creator>
      <dc:date>2024-02-13T13:55:13Z</dc:date>
    </item>
    <item>
      <title>Re: SFTP, RSYNC or SCP  not working via SAS Enterprise Guide 8.3 execution</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/SFTP-RSYNC-or-SCP-not-working-via-SAS-Enterprise-Guide-8-3/m-p/926512#M28464</link>
      <description>&lt;P&gt;thank you&amp;nbsp;&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/131732"&gt;@Sajid01&lt;/a&gt;&amp;nbsp;for the recommendation we did tweak the LD_LIBRARY_PATH as you mentioned but no luck and we omitted '/usr/local/nz/lib64' from the file /opt/sas/sashome/SASFoundation/9.4/bin/sasenv_local&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;which is allowing SAS users to perform the transfer protocols.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Appreciate your inputs.&lt;/P&gt;</description>
      <pubDate>Tue, 30 Apr 2024 18:06:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/SFTP-RSYNC-or-SCP-not-working-via-SAS-Enterprise-Guide-8-3/m-p/926512#M28464</guid>
      <dc:creator>Tom007</dc:creator>
      <dc:date>2024-04-30T18:06:48Z</dc:date>
    </item>
    <item>
      <title>Re: SFTP, RSYNC or SCP  not working via SAS Enterprise Guide 8.3 execution</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/SFTP-RSYNC-or-SCP-not-working-via-SAS-Enterprise-Guide-8-3/m-p/926515#M28465</link>
      <description>The error saying wrong ELF class is because /usr/local/nz/lib is still present, so it's finding the 32 bit drivers which are the wrong ELF class. &lt;BR /&gt;&lt;BR /&gt;The main issue here is you have two sets of Kerberos libraries, one in /lib64 and one in /usr/local/nz/lib64, and they are not compatible.&lt;BR /&gt;&lt;BR /&gt;Depending on which function you are using, the appropriate path would need to be first in LD_LIBRARY_PATH so it can find it's associated libraries and not the ones from the incompatible location.&lt;BR /&gt;&lt;BR /&gt;If LD_LIBRARY_PATH contains /lib64 before /usr/local/nz/lib64, the OS functions will work.&lt;BR /&gt;If LD_LIBRARY_PATH contains /usr/local/nz/lib64 before /lib64 (or /lib64 is omitted and implicit), then Netezza connectivity will work.&lt;BR /&gt;&lt;BR /&gt;So if your sasenv_local contains an LD_LIBRARY_PATH that includes /usr/local/nz/lib64 (which would be needed to get Netezza working) you would probably need to add an options statement to modify the LD_LIBRARY_PATH environment variable prior to running your OS functions. e.g.&lt;BR /&gt;&lt;BR /&gt;options set=LD_LIBRARY_PATH="/lib64/:%sysget(LD_LIBRARY_PATH)";</description>
      <pubDate>Tue, 30 Apr 2024 18:50:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/SFTP-RSYNC-or-SCP-not-working-via-SAS-Enterprise-Guide-8-3/m-p/926515#M28465</guid>
      <dc:creator>gwootton</dc:creator>
      <dc:date>2024-04-30T18:50:40Z</dc:date>
    </item>
  </channel>
</rss>

