I know that this is somewhat off-topic but I thought someone here may have encountered this already and be able to direct me with a subtle (or not so subtle) RTFM. BTW, I have looked up all references in the MySQL manual and searched/read the MySQL site docs as well as a few Google searches.

I upgraded to MySQL-Max 4.02-alpha (Solaris binary) today and everything seems fine except--I was hoping to take advantage of the SSL support advertised in the MySQL manual:

In MySQL 4.0, the mysqld server daemon process can itself use Secure Sockets Layer (SSL), thus enabling secure traffic to MySQL databases from, say, a Windows application residing outside the firewall.
Another excerpt from the manual states that you can determine whether on not the installation of MySQL you are using has the SSL support by:
To get secure connections to work with MySQL you must do the following:
  1. Install the openssl library. We have tested MySQL with openssl 0.9.6. http://www.openssl.org/.
  2. Configure MySQL with  --with-vio --with-openssl.
  3. If you are using an old MySQL installation, you have to update your mysql.user table with some new columns. You can do this by running the  mysql_fix_privilege_tables.sh script.
  4. You can check if a running mysqld server supports openssl by examining if  SHOW VARIABLES LIKE 'have_openssl' returns 'YES'.
Well, I have openssl (OpenSSL 0x0090603f) installed, the variable 'have_openssl' returns 'NO' and when I use  --with-vio or  --with-openssl I get the messages:
ERROR: unknown option '--with-vio' ERROR: unknown option '--with-openssl'

Any info on this would be appreciated. The next step provided that this isn't a stupid question would be to contact MySQL. I just wanted some input from the Monastery first. As always, TIA.

Note: This is for development purposes, not production.

--Jim

Edited: ~Thu Aug 1 13:53:59 2002 (GMT) by footpad: Moved to Meditations.


In reply to OT: MySQL 4.02 (alpha) by jlongino

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.