RE: cipher strings usable under GRANT command

2002-03-27 Thread Chuck Roberts
sql,query What are all the cipher strings possible using the GRANT command and the CIPHER clause? The docs only give one example. - Before posting, please check: http://www.mysql.com/manual.php (the manual) http://lis

How to use SSL on Win2000 client?

2002-03-27 Thread Chuck Roberts
We have Solaris 2.8 running Mysql 3.23.49. We are building a database with an Access 2002 front end on Win98/95 or Win2000, which would run over the internet. My problem is, how do we encrypt the communications between the front-end and the back-end (mysql)? Mysql supports SSl but Access does not.

RE: MySQL, MyODBC and MS Access

2002-03-25 Thread Chuck Roberts
> -Original Message- > From: Mark Stringham [mailto:[EMAIL PROTECTED]] > Sent: Friday, March 22, 2002 2:51 PM > To: Chuck Roberts > Cc: Mysql; Mark Stringham > Subject: RE: MySQL, MyODBC and MS Access > > > Chuck - > I am looking for a way for both

RE: MySQL, MyODBC and MS Access

2002-03-22 Thread Chuck Roberts
I'm doing something similar, with an Access front-end and mysql back-end. > -Original Message- > From: Mark Stringham [mailto:[EMAIL PROTECTED]] > Sent: Friday, March 22, 2002 3:11 AM > To: MySQL > Subject: MySQL, MyODBC and MS Access > > > > I have a project where I may need to connect a

RE: ssl question part 2

2002-03-20 Thread Chuck Roberts
See section 4.3.1 "Grant and Revoke syntax" and 4.3.8 "Using secure connections". There is a very good version of the docs in frame format at http://www.bitbybit.dk/mysqlfaq . I highly recommend it. > -Original Message- > From: Chris Hanes [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, Marc

SOLUTION: can't run mysql_install_db on Solaris 2.8

2002-03-15 Thread Chuck Roberts
Found the fix! What happened to me is I had used Winzip to unzip and untar the files on a Win2000 machine, then copied those files to the server. However, I found GNU tar, installed it, deleted my old mysql directory, and used GNU tar to untar the file in /usr/local. After that mysql_install_db w

RE: Mysql/Solaris: can't run configure or mysql_install_db

2002-03-11 Thread Chuck Roberts
> -Original Message- > From: Egor Egorov [mailto:[EMAIL PROTECTED]] > Sent: Saturday, March 09, 2002 6:08 AM > To: [EMAIL PROTECTED] > Subject: Mysql/Solaris: can't run configure or mysql_install_db > > > Chuck, > Friday, March 08, 2002, 5:56:59 PM, you wrote: > > CR> Hi. We have Solaris

Digest messages coming as attachments

2002-03-08 Thread Chuck Roberts
I use Outlook 2000 to read my email. I subscribed to the Mysql digest list. Each message is attached to the digest as a separate message, the subjects unsorted. Is there a way to sort the subjects so I can find the right message number associated with the message in the table of contents in the em

Creating user and group mysql on Solaris

2002-03-08 Thread Chuck Roberts
We have Solaris 2.8 and here is what we did to create the mysql user and group: - First add the group: groupadd mysql - Next add the user: useradd mysql -g mysql This also adds the user to the group mysql. - Put the user root in the mysql group: usermod -G mysql root

Mysql/Solaris: can't run configure or mysql_install_db

2002-03-08 Thread Chuck Roberts
Hi. We have Solaris 2.8 and just got Mysql 3.23. We installed the files and are now trying to run the mysql/configure or mysql/scripts/mysql_install_db scripts but I get an error "Command not found." I logged in as "chuck", then did "su" and logged in as superuser before running this command. I al

Does Mysql have alias?

2002-03-05 Thread Chuck Roberts
I was wondering if Mysql has aliases, that is, a short command representing a long MySql command. Say I want to do a "show status", so I map an alias to "ss" and do "ss" when I want to do a show status. - Before posting, please