Your Daily Source for Apache News and Information  
Breaking News Preferences Contribute Triggers Link Us Search About
Apache Today [Your Apache News Source] To internet.com

Apache HTTPD Links
The Apache FAQ
The Apache Software Foundation
Apache Project
Apache Module Registry
The Jakarta Project
Apache XML Project
ApacheCon
PHP Server Side Scripting
Apache-Perl Integration Project
The Java Apache Project
Apache-Related Projects
The Linux Channel at internet.com
Apache Today
Linux Today
Linuxnewbie.org
Just Linux
Linux Planet
Enterprise Linux Today
BSD Today
Linux Apps
All Linux Devices
BSD Central
Linux Programming
Linux Central
Linux Start
PHPBuilder
SITE DESCRIPTIONS
Apache Guide: Apache Authentication, Part 3
Aug 7, 2000, 03 :32 UTC (23 Talkback[s]) (21415 reads) (Other stories by Rich Bowen)

By

In my last article, I talked about using databases for authentication, and I introduced mod_auth_dbm as a possible way to do that.

This week, we'll look at MySQL, a very popular database server, and using mod_auth_mysql to use MySQL to store your authentication information.

A little about MySQL

MySQL is a wonderful database server, which is distributed under the GPL, and is available from http://www.mysql.com/ MySQL is lightweight and fast. It lacks some of the features of larger, more expensive database servers, such as stored procedures, triggers, and various other things, but it contains most of the functionality needed for most small to medium projects. And, it contains some cool stuff like a regular expression language that can be used in SQL statements.

Because MySQL is free, and because it is just such a great database, it is the favorite database in use by folks on *nix operating systems--particularly folks with small budgets. And it also runs on Windows.

mod_auth_mysql

mod_auth_mysql lets you put your usernames and passwords in a MySQL database, and authenticate directly against that. There are a number of advantages to this, in addition to the obvious one of speed of data access. If, for example, you are already storing user information in a database table, it would be irritating to have to store the username and password in another location (the htpasswd file). You would have to maintain the data in two places, and if you let them get out of sync, users would be unable to log in. With mod_auth_mysq, however, you can authenticate directly against the databsae, and keep your authentication information just one place. Usernames and passwords can be updated with a SQL query, with no messing around in text files. And users' group membership can be easily altered.

Installation and Configuration

You can get mod_auth_mysql, and learn more about it, at http://bourbon.netvision.net.il/mod_auth_mysql/

mod_auth_mysql can be compiled as a DSO (Dynamic Shared Object), and then included in the server with a configuration directive. For more details on this, please see earlier articles in which we discuss DSOs.

To configure mod_auth_mysql, you need to tell it what database you want to authenticate against, and what fields in which table contain the relevant information.

The following are the configuration directives that you'll need to know about:

Auth_MySQL_Info [host] [user] [password]

This directive tells where your server is running, and what username and password are necessary to get data from the database. This directive is only necessary if the server is running somewhere other than localhost, or if access is via some user other than the httpd user.

If all of your authentication will be done against the same database, you'll probably want to set the following directive:

Auth_MySQL_General_DB [database_name]

If you'll be authenticating different directories or files against different databases, you can leave this out, and set the database in the various directories.

The following directives can appear either in your httpd.conf configuration file, or in the various directories in .htaccess files. (See Ken Coar's article about .htaccess files for more information.)

Note that you'll be using the usual directives to set up password protection on the directory:

        AuthType Basic
        AuthName "Members Only"
        require group admin

Auth_MySQL_DB [database_name]--Tells which database you are authenticating against.

Auth_MySQL_Password_Table [password_table_name]--Tells which table in that database contains the password information. Unless you specify, it is assumed that the username is contained in the field 'username', and the password is contained in a field 'password'. You can change this. (See below.)

Auth_MySQL_Group_Table [group_table_name]--Ordinarily, you'll probably just want to store the group field in the same table as the usernames and passwords, but if you need to store it in a different table, this is where you'll specify where that is.

Auth_MySQL_Username_Field [username_field_name]--If your username is a field other than 'username', you can specify that with this directive.

Auth_MySQL_Password_Field [password_field_name]--If your password is a field other than 'password', you can specify that with this directive.

Auth_MySQL_Group_Field [group_field_name]--If your group name is a field other than 'groups', you can specify that with this directive.

Auth_MySQL_Encrypted_Passwords on/off--Tells mod_auth_mysql whether the passwords are in the database encrypted, or plain-text. This is on by default - that is, it is assumed that your passwords are stored encrypted.

There are several other directives, but these are the main ones that you will be using most of the time. The following is an example .htaccess file that works for me:

        Auth_MySQL_Info localhost db_user db_password
        Auth_MySQL_DB   authentication
        Auth_Mysql_Password_Table       passwords
        AuthType Basic
        AuthName "Members Only"
        require valid-user

The above assumes that the username is in a field username, and the password is encrypted, and is stored in the field password.

Now What?

Once you have your .htaccess file set up as described above, you will get the password dialog as normal. There will be no difference to the user.

You can maintain your user and password lists via whatever database management tool you are used to using. There's no handy tool like dbmmanage for managing these accounts from the command line, but I'm working on one.

You can use Perl and DBI to talk to your database. In my next column, I'll be talking at greater length about using Perl to manage your password files. There are a plethora of ways to do this, so it really merits its own article.

Summary

mod_auth_mysql allows you to keep your users, passwords, and groups, in a MySQL database. MySQL is a lightweight, fast, free database server which is available for most popular operating systems.

Future columns

Please let me know if there are other topics that you'd like for me to talk about in future columns. You can send your suggestions to me at And please let me know what you think of my columns, at that same address. Many thanks for reading down this far!

--Rich

  Current Newswire:
Apache 2.0.32 beta is available

Everything Solaris: Apache: The Basics

Apache Jakarta James Mailserver v2.0a2 Released

PostgreSQL v7.2 Final Release

Daemon News: Multiple webservers behind one IP address

Zend Technologies launches Zend Studio 2.0

NuSphere first to enable development of PHP web services

Covalent Technologies raises $18 million in venture capital

Apache 1.3.23 released

wdvl: Build Your Own Database Driven Website Using PHP and MySQL: Part 4

 Talkback(s) Name  Date
I was disappointed that you didn't cover the use of a group table more. This ...   Using a group table   
  Aug 7, 2000, 11:47:40
Actually, I do this myself. I just got it working two weeks ago - the hardest ti ...   Re: Using a group table   
  Aug 7, 2000, 13:56:20
When I didn't include Auth_MySQL_Info, it said access deined: passwd not inc ...   Can't use Auth_MySQL_Info!   
  Aug 21, 2000, 08:18:31
Sounds like Auth_MySQL_Info is in an .htaccess file. I believe it must be in you ...   Re: Can't use Auth_MySQL_Info!   
  Aug 25, 2000, 17:57:44
i tried to follow the link to http://bourbon.netvision.net.il/mod_auth_mysql/ t ...   mod_auth_mysql   
  Oct 9, 2000, 03:35:58
> i tried to follow the link to http://bourbon.netvision.net.il/mod_auth_mysql/ ...   Re: mod_auth_mysql   
  Oct 19, 2000, 17:08:18
You can get mod_auth_mysql from ftp.southcom.com.au/.4/mysql/, it is a gzipped f ...   Re:Re: mod_auth_mysql   
  Jan 2, 2001, 00:41:20
Is there a version of mod_auth_mysql for the Windows version of Apache? Please e ...   mod_auth_mysql for Windows?   
  Oct 31, 2000, 09:42:33
Hello !I tried to get mod_auth_mysql from ftp://ftp.southcom.com.au/.4/mysql/ bu ...   Search for mod_auth_mysql   
  Jan 18, 2001, 16:54:15
You can get mod_auth_mysql from the mysql.com website under the contributed stuf ...   Re: Search for mod_auth_mysql   
  Aug 17, 2001, 22:54:19
I have been unable to get Apache to configure correctly using the suggested --ac ...   mod_auth_mysql enabled   
  Sep 10, 2001, 20:45:25
So this lets you assign a person to more than one group? Is group_name a key on ...   Group tables   
  Aug 7, 2000, 19:02:12
Yes, you can then put one user_name in multiple groups. Neither field is a uniqu ...   Re: Group tables   
  Aug 7, 2000, 22:00:35
 i am having difficulty in setting directory in windows using htpasswd and i can ...   using htpasswd in Windows   
  Feb 5, 2002, 06:02:26
Thanks for all your excellent comments about group tables. For some reason, I mi ...   Re: Re: Group tables   
  Aug 13, 2000, 01:35:16
Hello!I'll appreciate it very much if you (someone) could assist me. I'm ...   problems with mod_auth_mysql   
  Feb 7, 2002, 19:55:15
The default password field is 'passwd', not 'password'. I am us ...   Default password field   
  Aug 10, 2000, 18:06:52
If you enter your encrypted passwords into the database using the MySQL command ...   encryption format   
  Aug 10, 2000, 18:19:55
I used an MySQL password field type which automatically encrypts contents. I&#39 ...   Re: encryption format   
  Aug 18, 2000, 18:58:10
I ve installed apache from a source distribution quite a long time ago with DSO ...   compilation   
  Aug 11, 2000, 05:53:21
To be honest, I haven't been able to get the mod to compile as a dso with ap ...   Re: compilation   
  Aug 14, 2000, 13:59:44
Now, do you get how to compile the mod_auth_mysql module with DSO support? Kindl ...   Re: Re: compilation   
  Sep 21, 2001, 00:49:12
Would have been more helpful if a small working sample was provided as well. Oth ...   Code   
  Aug 18, 2000, 09:46:25
Enter your comments below.
Your Name: Your Email Address:


Subject: CC: [will also send this talkback to an E-Mail address]
Comments:

See our talkback-policy for or guidelines on talkback content.

About Triggers Media Kit Security Triggers Login


All times are recorded in UTC.
Linux is a trademark of Linus Torvalds.
Powered by Linux 2.4, Apache 1.3, and PHP 4
Copyright 2002 INT Media Group, Incorporated All Rights Reserved.
Legal Notices,  Licensing, Reprints, & Permissions,  Privacy Policy.
http://www.internet.com/