Showing entries 35203 to 35212 of 45385
« 10 Newer Entries | 10 Older Entries »
Does MySQL Send Passwords In the Clear?

I was asked this question recently, and I thought it was a great little tidbit of knowledge to pass along. The short answer is “no”. The slightly longer answer was written up by Jan Kneschke when dealing with a forum post about proxy + connection pooling.

From http://forums.mysql.com/read.php?146,169265,169700

The clear-text password is _never_ transfered in the authentication phase.

On the network we have:
* client connects to server (no data)
* server sends a seed (40 char, one-time, random)
* client sends 40 char hash of (seed + PASSWORD(clear-text-password))
* server compares against the hash(seed + SELECT password FROM mysql.user WHERE username = )

That way we never have the password as clear-text on the wire. (only in SET PASSWORD or GRANT statements).

MySQL Conference Sessions

At this year’s MySQL Conference & Expo, taking place in Santa Clara, California in mid-April, I’m giving two sessions:

  • Best Practices for Database Administrators
  • Database Security Using White-Hat Google Hacking

You can see more info about me here, including descriptions of the workshops.

I look forward to seeing many of you there. Make sure you say hello!

MySQL: Finally an ability to trace/profile

Finally! The ability to look a little closer into what's happening with SHOW PROFILEHere’s how it works:mysql> set profiling=1;mysql> select count(*) from mysql.user;+----------+| count(*) |+----------+| 5 |+----------+1 row in set (0.00 sec)mysql> show profile;+--------------------------------+----------+| Status | Duration |+--------------------------------+-----

Hands-on CouchDB Workshop at XTech

Dear Readers,

I have a favour to ask. Please register for the first hands-on workshop about programming CouchDB.

Here is the story:

With my slight NADD infection I have, of course, set up a Google Alert on CouchDB. A few weeks ago, an alert came in that surprised me. Fortunately in a good way. The call for papers of the 2008 edition of XTech, a (duh) tech conference in Dublin, Ireland, asked specifically for CouchDB related submission.

How cool is that?

I sent in a whole bunch of proposals, just to make sure one gets through and it …

[Read more]
Hands-on CouchDB Workshop at XTech

Dear Readers,

I have a favour to ask. Please register for the first hands-on workshop about programming CouchDB.

Here is the story:

With my slight NADD infection I have, of course, set up a Google Alert on CouchDB. A few weeks ago, an alert came in that surprised me. Fortunately in a good way. The call for papers of the 2008 edition of XTech, a (duh) tech conference in Dublin, Ireland, asked specifically for CouchDB related submission.

How cool is that?

I sent in a whole bunch of proposals, just to make sure one gets through and it …

[Read more]
Hands-on CouchDB Workshop at XTech

Dear Readers,

I have a favour to ask. Please register for the first hands-on workshop about programming CouchDB.

Here is the story:

With my slight NADD infection I have, of course, set up a Google Alert on CouchDB. A few weeks ago, an alert came in that surprised me. Fortunately in a good way. The call for papers of the 2008 edition of XTech, a (duh) tech conference in Dublin, Ireland, asked specifically for CouchDB related submission.

How cool is that?

I sent in a whole bunch of proposals, just to make sure one gets through and it …

[Read more]
UDFs at the MySQL User's conference

The MySQL User's conference will be held in less than a month from now!!!

This year there is quite a good number of sessions on adding your own functions and procedures, such as:

[Read more]
Free beer!

There will be a MySQL meetup on the start date for all of the US employees this next Monday, March 24th, at 7PM at the Elysian in Seattle.

We will provide beer, quesadillas and nachos, and giving away t-shirts (first come first serve). Come find out all about the integration of Sun and MySQL.

Summer of Code - Get ready with your proposals

The Summer of Code is back.

Students, if you want to apply for a project with MySQL, be aware of the timeline.

March 17-24: Would-be student participants discuss application ideas with mentoring organizations.
March 24 ~12 noon PDT / 19:00 UTC Student application period opens.
March 31
5:00 PM PDT /
00:00 UTC April 1, 2008
Student application deadline.


What you need to do now, before the submission for application opens, is to discuss the ideas already published or suggest new ones using the mailing list.
This year there is an interesting …

[Read more]
Join MySQL and Sun for a Cocktail Party in San Francisco

Just a quick note to let folks in the Bay Area know about a cocktail party celebrating the Sun acquisition of MySQL. Come meet both MySQL and Sun folks, ask them questions, and most importantly, just have fun. The reception is at Jillian's @ The Metreon, 101 Fourth Street, San Francisco, and starts at 5:00pm. You can download a flyer that has directions to the venue.

Showing entries 35203 to 35212 of 45385
« 10 Newer Entries | 10 Older Entries »