The execution of the "curl" command performed from the Control-M/Agent owner account fails with the error: curl: (48) An unknown option was passed in to libcurl Checking for "curl" version you get the following: myserver% curl -V myserver% ldd /usr/bin/curl |
CTM-3554 has been created for this issue and is implemented in version 9.0.21 Apply the latest available version to fix the issue. In the short term, you can temporarily modify the LD_LIBRARY_PATH before executing each curl command like the following example (based on C Shell): setenv LD_LIBRARY_PATH /usr/lib64:$LD_LIBRARY_PATH ; <your original curl command here> For reference, this is the output of the "curl -V" command that is using the operating system library (real versions may vary among different systems): myserver% curl -V curl 7.29.0 (x86_64-redhat-linux-gnu) libcurl/7.29.0 NSS/3.44 zlib/1.2.7 libidn/1.28 libssh2/1.8.0 Protocols: dict file ftp ftps gopher http https imap imaps ldap ldaps pop3 pop3s rtsp scp sftp smtp smtps telnet tftp Features: AsynchDNS GSS-Negotiate IDN IPv6 Largefile NTLM NTLM_WB SSL libz unix-sockets The list of Protocols and Features is wider. |