SSL, mysql 4, windows, perl

SSL, mysql 4, windows, perl

am 25.11.2002 17:21:56 von Ken

Hi:

Newbie to the lists - searched the archives but didn't find many
answers.... I apologize if this has been asked and answered already - if
so, please point me to the article.

I'm trying to determine if it is possible to run mysql 4.x (or 3.x) on a
windows 2000 machine and have a perl script running across the Internet
also on a windows 2000 machine that communicates with the server using
ssl/ssh. I've got connectivity working using the perl modules, but can't
figure out how to encrypt the data as it travels over the internet.

Is there a guide that someone could point me to? Any advice would be
greatly appreciated!

Thanks
Ken


------------------------------------------------------------ ---------
Please check "http://www.mysql.com/Manual_chapter/manual_toc.html" before
posting. To request this thread, e-mail msql-mysql-modules-thread1974@lists.mysql.com

To unsubscribe, send a message to the address shown in the
List-Unsubscribe header of this message. If you cannot see it,
e-mail msql-mysql-modules-unsubscribe@lists.mysql.com instead.

Re: SSL, mysql 4, windows, perl

am 25.11.2002 17:32:44 von Ken

Got the (seemingly obvious and simple!!) answer from Andreas.
Great job guys!

At 11:25 AM 11/25/2002, Andreas Gietl wrote:
>On Monday 25 November 2002 17:21, Ken wrote:
>
>in mysql-4.X and newer DBD-version you can use
>
> $dsn = "DBI:mysql:::;mysql_compression=1;mysql_ssl=1";
> $dbh = DBI->connect($dsn, $user, $password);
>
>do create a connection ssl-encrypted.
>
> > Hi:
> >
> > Newbie to the lists - searched the archives but didn't find many
> > answers.... I apologize if this has been asked and answered already - if
> > so, please point me to the article.
> >
> > I'm trying to determine if it is possible to run mysql 4.x (or 3.x) on a
> > windows 2000 machine and have a perl script running across the Internet
> > also on a windows 2000 machine that communicates with the server using
> > ssl/ssh. I've got connectivity working using the perl modules, but can't
> > figure out how to encrypt the data as it travels over the internet.
> >
> > Is there a guide that someone could point me to? Any advice would be
> > greatly appreciated!
> >
> > Thanks
> > Ken
> >
> >
> > ------------------------------------------------------------ ---------
> > Please check "http://www.mysql.com/Manual_chapter/manual_toc.html" before
> > posting. To request this thread, e-mail
> > msql-mysql-modules-thread1974@lists.mysql.com
> >
> > To unsubscribe, send a message to the address shown in the
> > List-Unsubscribe header of this message. If you cannot see it,
> > e-mail msql-mysql-modules-unsubscribe@lists.mysql.com instead.
>
>--
>e-admin internet gmbh
>Andreas Gietl tel +49 941 3810884
>Ludwig-Thoma-Strasse 35 fax +49 941 3810891
>93051 Regensburg mobil +49 171 6070008
>
>PGP/GPG-Key unter http://www.e-admin.de/gpg.html


------------------------------------------------------------ ---------
Please check "http://www.mysql.com/Manual_chapter/manual_toc.html" before
posting. To request this thread, e-mail msql-mysql-modules-thread1975@lists.mysql.com

To unsubscribe, send a message to the address shown in the
List-Unsubscribe header of this message. If you cannot see it,
e-mail msql-mysql-modules-unsubscribe@lists.mysql.com instead.

Re: SSL, mysql 4, windows, perl

am 25.11.2002 17:32:44 von Ken

Got the (seemingly obvious and simple!!) answer from Andreas.
Great job guys!

At 11:25 AM 11/25/2002, Andreas Gietl wrote:
>On Monday 25 November 2002 17:21, Ken wrote:
>
>in mysql-4.X and newer DBD-version you can use
>
> $dsn = "DBI:mysql:::;mysql_compression=1;mysql_ssl=1";
> $dbh = DBI->connect($dsn, $user, $password);
>
>do create a connection ssl-encrypted.
>
> > Hi:
> >
> > Newbie to the lists - searched the archives but didn't find many
> > answers.... I apologize if this has been asked and answered already - if
> > so, please point me to the article.
> >
> > I'm trying to determine if it is possible to run mysql 4.x (or 3.x) on a
> > windows 2000 machine and have a perl script running across the Internet
> > also on a windows 2000 machine that communicates with the server using
> > ssl/ssh. I've got connectivity working using the perl modules, but can't
> > figure out how to encrypt the data as it travels over the internet.
> >
> > Is there a guide that someone could point me to? Any advice would be
> > greatly appreciated!
> >
> > Thanks
> > Ken
> >
> >
> > ------------------------------------------------------------ ---------
> > Please check "http://www.mysql.com/Manual_chapter/manual_toc.html" before
> > posting. To request this thread, e-mail
> > msql-mysql-modules-thread1974@lists.mysql.com
> >
> > To unsubscribe, send a message to the address shown in the
> > List-Unsubscribe header of this message. If you cannot see it,
> > e-mail msql-mysql-modules-unsubscribe@lists.mysql.com instead.
>
>--
>e-admin internet gmbh
>Andreas Gietl tel +49 941 3810884
>Ludwig-Thoma-Strasse 35 fax +49 941 3810891
>93051 Regensburg mobil +49 171 6070008
>
>PGP/GPG-Key unter http://www.e-admin.de/gpg.html


------------------------------------------------------------ ---------
Please check "http://www.mysql.com/Manual_chapter/manual_toc.html" before
posting. To request this thread, e-mail msql-mysql-modules-thread1975@lists.mysql.com

To unsubscribe, send a message to the address shown in the
List-Unsubscribe header of this message. If you cannot see it,
e-mail msql-mysql-modules-unsubscribe@lists.mysql.com instead.

Re: SSL, mysql 4, windows, perl

am 25.11.2002 17:32:44 von Ken

Got the (seemingly obvious and simple!!) answer from Andreas.
Great job guys!

At 11:25 AM 11/25/2002, Andreas Gietl wrote:
>On Monday 25 November 2002 17:21, Ken wrote:
>
>in mysql-4.X and newer DBD-version you can use
>
> $dsn = "DBI:mysql:::;mysql_compression=1;mysql_ssl=1";
> $dbh = DBI->connect($dsn, $user, $password);
>
>do create a connection ssl-encrypted.
>
> > Hi:
> >
> > Newbie to the lists - searched the archives but didn't find many
> > answers.... I apologize if this has been asked and answered already - if
> > so, please point me to the article.
> >
> > I'm trying to determine if it is possible to run mysql 4.x (or 3.x) on a
> > windows 2000 machine and have a perl script running across the Internet
> > also on a windows 2000 machine that communicates with the server using
> > ssl/ssh. I've got connectivity working using the perl modules, but can't
> > figure out how to encrypt the data as it travels over the internet.
> >
> > Is there a guide that someone could point me to? Any advice would be
> > greatly appreciated!
> >
> > Thanks
> > Ken
> >
> >
> > ------------------------------------------------------------ ---------
> > Please check "http://www.mysql.com/Manual_chapter/manual_toc.html" before
> > posting. To request this thread, e-mail
> > msql-mysql-modules-thread1974@lists.mysql.com
> >
> > To unsubscribe, send a message to the address shown in the
> > List-Unsubscribe header of this message. If you cannot see it,
> > e-mail msql-mysql-modules-unsubscribe@lists.mysql.com instead.
>
>--
>e-admin internet gmbh
>Andreas Gietl tel +49 941 3810884
>Ludwig-Thoma-Strasse 35 fax +49 941 3810891
>93051 Regensburg mobil +49 171 6070008
>
>PGP/GPG-Key unter http://www.e-admin.de/gpg.html


------------------------------------------------------------ ---------
Please check "http://www.mysql.com/Manual_chapter/manual_toc.html" before
posting. To request this thread, e-mail msql-mysql-modules-thread1975@lists.mysql.com

To unsubscribe, send a message to the address shown in the
List-Unsubscribe header of this message. If you cannot see it,
e-mail msql-mysql-modules-unsubscribe@lists.mysql.com instead.