<?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: SSL_connect(ssl) issue during HPUX system startup in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/ssl-connect-ssl-issue-during-hpux-system-startup/m-p/4185119#M322874</link>
    <description>&amp;gt;Since my product will be installed many customer places, I do not want to change the ln name in the customer place. And also I tried to rename the S99prngd.r link to S991prngd.r. But no use. the normal "mv" does not work properly.&lt;BR /&gt;&lt;BR /&gt;Ok, unless you have some very good documentation with your product.&lt;BR /&gt;&lt;BR /&gt;I would have thought mv would work fine on symlinks:&lt;BR /&gt;$ ln -s /var/tmp XX&lt;BR /&gt;$ ll XX&lt;BR /&gt;lrwxrwxr-x  8 Apr 23 04:08 XX@ -&amp;gt; /var/tmp&lt;BR /&gt;$ mv XX YY&lt;BR /&gt;$ ll YY&lt;BR /&gt;lrwxrwxr-x  8 Apr 23 04:08 YY@ -&amp;gt; /var/tmp&lt;BR /&gt;&lt;BR /&gt;# ls&lt;BR /&gt;S991rngd.rc&lt;BR /&gt;# ls S991rngd.rc&lt;BR /&gt;S991rngd.rc not found&lt;BR /&gt;# ls -ltr&lt;BR /&gt;lrwx------ 1 root sys 31 Apr 23 12:43 91prngd.rc -&amp;gt; /sbin/init.d/prngd.rc&lt;BR /&gt;&lt;BR /&gt;Double huh?  Can you do: ll -Ltrb&lt;BR /&gt;(I think you have some backspaces in the name of the .rc script.)&lt;BR /&gt;&lt;BR /&gt;&amp;gt;And I found the following string in the /etc/rc.log file,&lt;BR /&gt;Output from "/sbin/rc3.d/S99prngd.rc^[[D^[[D^[[D^[[D^[[D^[[D^[[D^[[D1 start":&lt;BR /&gt;&lt;BR /&gt;That's probably what they are.&lt;BR /&gt;&lt;BR /&gt;&amp;gt;And it has some special characters like [[^D and ls &amp;amp; ls -ltr commands give different outputs.&lt;BR /&gt;&lt;BR /&gt;Using ll -b will keep them honest.&lt;BR /&gt;&lt;BR /&gt;&amp;gt;Is there any special/options for rename a link?&lt;BR /&gt;&lt;BR /&gt;No, just mv(1).&lt;BR /&gt;&lt;BR /&gt;&amp;gt;I want to start my application exactly last. Is there any other way?&lt;BR /&gt;&lt;BR /&gt;Well, Szzzpmpagt but I don't think you really want to do that.  :-)</description>
    <pubDate>Wed, 23 Apr 2008 10:26:13 GMT</pubDate>
    <dc:creator>Dennis Handly</dc:creator>
    <dc:date>2008-04-23T10:26:13Z</dc:date>
    <item>
      <title>SSL_connect(ssl) issue during HPUX system startup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssl-connect-ssl-issue-during-hpux-system-startup/m-p/4185114#M322869</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I have configured my application to start as service during startup(boot time). I put the link /sbin/rc3.d/S999pmpagt for starting boot time. In general, my agent application will contact the server via SSL(https). In normal case, if I start my application every thing working fine. But if my application getting started during boot time(via service), it cannot connect with my server via SSL(https). I got "-1" from the "SSL_connect(ssl)" method during startup. I am sure, there is no issue either in the certificate or server. Because, everything working fine for normal cases. Can somebody help me to resolve this issue ?&lt;BR /&gt;&lt;BR /&gt;Thanks in advance for your help.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Ramesh</description>
      <pubDate>Wed, 23 Apr 2008 05:29:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssl-connect-ssl-issue-during-hpux-system-startup/m-p/4185114#M322869</guid>
      <dc:creator>J Ramesh Kumar</dc:creator>
      <dc:date>2008-04-23T05:29:39Z</dc:date>
    </item>
    <item>
      <title>Re: SSL_connect(ssl) issue during HPUX system startup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssl-connect-ssl-issue-during-hpux-system-startup/m-p/4185115#M322870</link>
      <description>Is it running fine if you kill it after ur system boot up and then u restart it??&lt;BR /&gt;&lt;BR /&gt;If this is the case you may have to check if some dependent service is starting is staring before/after this during system boot up.&lt;BR /&gt;BR,&lt;BR /&gt;Kapil</description>
      <pubDate>Wed, 23 Apr 2008 05:47:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssl-connect-ssl-issue-during-hpux-system-startup/m-p/4185115#M322870</guid>
      <dc:creator>Kapil Jha</dc:creator>
      <dc:date>2008-04-23T05:47:43Z</dc:date>
    </item>
    <item>
      <title>Re: SSL_connect(ssl) issue during HPUX system startup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssl-connect-ssl-issue-during-hpux-system-startup/m-p/4185116#M322871</link>
      <description>Hi Kapil,&lt;BR /&gt;&lt;BR /&gt;Thanks for the help. Yes. One of the dependent process (S99prngd.rc) was started after my application.  &lt;BR /&gt;&lt;BR /&gt;My application link name is "S999pmpagt". I expect that my application should be triggered last, because my app no is 999 and prngd.rc number is 99. But prngd.rc is triggered before my application. So as a workaround I have changed my link name as "S9pmpagt". Now, my application triggered last. I know, my application link name is violating standards. But I don't have any other way. Will it leads to any problem in future ?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Ramesh&lt;BR /&gt;</description>
      <pubDate>Wed, 23 Apr 2008 09:03:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssl-connect-ssl-issue-during-hpux-system-startup/m-p/4185116#M322871</guid>
      <dc:creator>J Ramesh Kumar</dc:creator>
      <dc:date>2008-04-23T09:03:21Z</dc:date>
    </item>
    <item>
      <title>Re: SSL_connect(ssl) issue during HPUX system startup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssl-connect-ssl-issue-during-hpux-system-startup/m-p/4185117#M322872</link>
      <description>&amp;gt;One of the dependent process (S99prngd.rc) was started after my application.&lt;BR /&gt;&lt;BR /&gt;This should really be renamed to S099prngd.rc or S990prngd.rc.&lt;BR /&gt;&lt;BR /&gt;&amp;gt;My application link name is "S999pmpagt". I expect that my application should be triggered last,&lt;BR /&gt;&lt;BR /&gt;Do you have to be exactly last?&lt;BR /&gt;&lt;BR /&gt;&amp;gt;S99prngd.rc number is 99.&lt;BR /&gt;&lt;BR /&gt;Can you rename that one?&lt;BR /&gt;&lt;BR /&gt;&amp;gt;So as a workaround I have changed my link name as "S9pmpagt".&lt;BR /&gt;&lt;BR /&gt;Why not S99zpmpagt?&lt;BR /&gt;</description>
      <pubDate>Wed, 23 Apr 2008 09:12:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssl-connect-ssl-issue-during-hpux-system-startup/m-p/4185117#M322872</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2008-04-23T09:12:52Z</dc:date>
    </item>
    <item>
      <title>Re: SSL_connect(ssl) issue during HPUX system startup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssl-connect-ssl-issue-during-hpux-system-startup/m-p/4185118#M322873</link>
      <description>Hi Dennis Handly,&lt;BR /&gt;&lt;BR /&gt;Thanks for your suggestions.&lt;BR /&gt;&lt;BR /&gt;&amp;gt;&amp;gt;&amp;gt;This should really be renamed to S099prngd.rc or S990prngd.rc.&lt;BR /&gt;&lt;BR /&gt;Since my product will be installed many customer places, I do not want to change the ln name in the customer place. And also I tried to rename the S99prngd.r link to S991prngd.r. But no use. the normal "mv" does not work properly.&lt;BR /&gt;&lt;BR /&gt;# ls&lt;BR /&gt;....&lt;BR /&gt;S991rngd.rc&lt;BR /&gt;S9pmpagt&lt;BR /&gt;....&lt;BR /&gt;# ls S991rngd.rc&lt;BR /&gt;S991rngd.rc not found&lt;BR /&gt;# ls -ltr&lt;BR /&gt;...&lt;BR /&gt;total 0&lt;BR /&gt;lrwx------   1 root       sys             31 Apr 23 12:43 91prngd.rc -&amp;gt; /sbin/init.d/prngd.rc&lt;BR /&gt;lrwx------   1 root       sys             19 Apr 23 15:29 S9pmpagt -&amp;gt; /sbin/init.d/pmpagt&lt;BR /&gt;...&lt;BR /&gt;#&lt;BR /&gt;&lt;BR /&gt;And I found the following string in the /etc/rc.log file,&lt;BR /&gt;&lt;BR /&gt;.........&lt;BR /&gt;Starting PRNGD (Pseudo Random Number Generator Daemon)&lt;BR /&gt;Output from "/sbin/rc3.d/S99prngd.rc^[[D^[[D^[[D^[[D^[[D^[[D^[[D^[[D1 start":&lt;BR /&gt;----------------------------&lt;BR /&gt;PRNGD (Pseudo Random Number Generator Daemon) started&lt;BR /&gt;..........&lt;BR /&gt;&lt;BR /&gt;Please note that, the rc.log has existing name even though I changed name using mv command. And it has some special characters like [[^D and ls &amp;amp; ls -ltr commands give different outputs. So I totally confused. The mv command collapse the existing link. That why I just wanted to rename my application instead of existing application name. Is there any special/options for rename a link ?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;gt;&amp;gt;&amp;gt;Do you have to be exactly last?&lt;BR /&gt;&lt;BR /&gt;Yes. I want to start my application exactly last. Is there any other way ?&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Ramesh</description>
      <pubDate>Wed, 23 Apr 2008 09:53:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssl-connect-ssl-issue-during-hpux-system-startup/m-p/4185118#M322873</guid>
      <dc:creator>J Ramesh Kumar</dc:creator>
      <dc:date>2008-04-23T09:53:16Z</dc:date>
    </item>
    <item>
      <title>Re: SSL_connect(ssl) issue during HPUX system startup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssl-connect-ssl-issue-during-hpux-system-startup/m-p/4185119#M322874</link>
      <description>&amp;gt;Since my product will be installed many customer places, I do not want to change the ln name in the customer place. And also I tried to rename the S99prngd.r link to S991prngd.r. But no use. the normal "mv" does not work properly.&lt;BR /&gt;&lt;BR /&gt;Ok, unless you have some very good documentation with your product.&lt;BR /&gt;&lt;BR /&gt;I would have thought mv would work fine on symlinks:&lt;BR /&gt;$ ln -s /var/tmp XX&lt;BR /&gt;$ ll XX&lt;BR /&gt;lrwxrwxr-x  8 Apr 23 04:08 XX@ -&amp;gt; /var/tmp&lt;BR /&gt;$ mv XX YY&lt;BR /&gt;$ ll YY&lt;BR /&gt;lrwxrwxr-x  8 Apr 23 04:08 YY@ -&amp;gt; /var/tmp&lt;BR /&gt;&lt;BR /&gt;# ls&lt;BR /&gt;S991rngd.rc&lt;BR /&gt;# ls S991rngd.rc&lt;BR /&gt;S991rngd.rc not found&lt;BR /&gt;# ls -ltr&lt;BR /&gt;lrwx------ 1 root sys 31 Apr 23 12:43 91prngd.rc -&amp;gt; /sbin/init.d/prngd.rc&lt;BR /&gt;&lt;BR /&gt;Double huh?  Can you do: ll -Ltrb&lt;BR /&gt;(I think you have some backspaces in the name of the .rc script.)&lt;BR /&gt;&lt;BR /&gt;&amp;gt;And I found the following string in the /etc/rc.log file,&lt;BR /&gt;Output from "/sbin/rc3.d/S99prngd.rc^[[D^[[D^[[D^[[D^[[D^[[D^[[D^[[D1 start":&lt;BR /&gt;&lt;BR /&gt;That's probably what they are.&lt;BR /&gt;&lt;BR /&gt;&amp;gt;And it has some special characters like [[^D and ls &amp;amp; ls -ltr commands give different outputs.&lt;BR /&gt;&lt;BR /&gt;Using ll -b will keep them honest.&lt;BR /&gt;&lt;BR /&gt;&amp;gt;Is there any special/options for rename a link?&lt;BR /&gt;&lt;BR /&gt;No, just mv(1).&lt;BR /&gt;&lt;BR /&gt;&amp;gt;I want to start my application exactly last. Is there any other way?&lt;BR /&gt;&lt;BR /&gt;Well, Szzzpmpagt but I don't think you really want to do that.  :-)</description>
      <pubDate>Wed, 23 Apr 2008 10:26:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssl-connect-ssl-issue-during-hpux-system-startup/m-p/4185119#M322874</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2008-04-23T10:26:13Z</dc:date>
    </item>
    <item>
      <title>Re: SSL_connect(ssl) issue during HPUX system startup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssl-connect-ssl-issue-during-hpux-system-startup/m-p/4185120#M322875</link>
      <description>&amp;gt;And also I tried to rename the S99prngd.r link to S991prngd.r. But no use. the normal "mv" does not work properly.&lt;BR /&gt;&lt;BR /&gt;In that case, why do not you recreate the links. Remove the old names and re-create it again.&lt;BR /&gt;&lt;BR /&gt;ln -s /sbin/init.d/prngd.rc /sbin/rc3.d/newname&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Rasheed Tamton.</description>
      <pubDate>Wed, 23 Apr 2008 10:38:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssl-connect-ssl-issue-during-hpux-system-startup/m-p/4185120#M322875</guid>
      <dc:creator>Rasheed Tamton</dc:creator>
      <dc:date>2008-04-23T10:38:59Z</dc:date>
    </item>
    <item>
      <title>Re: SSL_connect(ssl) issue during HPUX system startup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssl-connect-ssl-issue-during-hpux-system-startup/m-p/4185121#M322876</link>
      <description>&lt;!--!*#--&gt;&amp;gt;I expect that my application should be triggered last, because my app no is 999 and prngd.rc number is 99. But prngd.rc is triggered before my application.&lt;BR /&gt;&lt;BR /&gt;I would assume that the Pseudo Random Number Generating Daemon needs to be started before you can rig up any TLS/SSL connection if you don't have a better random numbers producing device (such as /dev/random) available.&lt;BR /&gt;I think that's because the involved cryptographic algorithms require enough entropy to find a pair of big mutual primes&lt;BR /&gt;(is this the correct translation for "teilerfremd"?).&lt;BR /&gt;If I remember correctly the OpenSSL calls resort to prngd when they can't find a better randomness source,&lt;BR /&gt;they even provide their own prngd&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;$ swlist -l file OpenSSL|grep prngd&lt;BR /&gt;  OpenSSL.openssl.OPENSSL-PRNG: /opt/openssl/prngd                     &lt;BR /&gt;  OpenSSL.openssl.OPENSSL-PRNG: /opt/openssl/prngd/man/man1/prngd.1                    &lt;BR /&gt;  OpenSSL.openssl.OPENSSL-PRNG: /opt/openssl/prngd/prngd                       &lt;BR /&gt;  OpenSSL.openssl.OPENSSL-PRNG: /opt/openssl/prngd/prngd.conf                  &lt;BR /&gt;  OpenSSL.openssl.OPENSSL-PRNG: /sbin/init.d/prngd.rc                  &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I can recall that for HP-UX there was a kernel patch that provides /dev/random &lt;BR /&gt;For instance on one of our boxes I found this:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;$ /usr/sbin/swlist -l product|grep -i random&lt;BR /&gt;  RandomNumGen          B.11.11.07     HP-UX 11.11 Strong Random Number Generator Kernel Enablement &lt;BR /&gt;  RandomNumGenDyn       B.11.11.09     HP-UX 11.11 Strong Random Number Generator product &lt;BR /&gt;</description>
      <pubDate>Wed, 23 Apr 2008 13:30:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssl-connect-ssl-issue-during-hpux-system-startup/m-p/4185121#M322876</guid>
      <dc:creator>Ralph Grothe</dc:creator>
      <dc:date>2008-04-23T13:30:53Z</dc:date>
    </item>
    <item>
      <title>Re: SSL_connect(ssl) issue during HPUX system startup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssl-connect-ssl-issue-during-hpux-system-startup/m-p/4185122#M322877</link>
      <description>Hi All,&lt;BR /&gt;&lt;BR /&gt;Thanks for all of your help in resolving my problem. I used delete &amp;amp; recreate the link which works fine for me. &lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Ramesh</description>
      <pubDate>Mon, 28 Apr 2008 05:46:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssl-connect-ssl-issue-during-hpux-system-startup/m-p/4185122#M322877</guid>
      <dc:creator>J Ramesh Kumar</dc:creator>
      <dc:date>2008-04-28T05:46:38Z</dc:date>
    </item>
  </channel>
</rss>

