Archive for March, 2010

Article by Aashish
# yum install httpd* mysql* -y
*** Install Module Needed for Authentication from MySQL databases. ***
# yum install mod_auth_mysql -y
*** Create a database which contains a table holding the username and passwd ***
#mysql -u root -p
password:
mysql> create database httpd;
mysql> use httpd;
mysql> create user ‘apache’@’localhost’ identified by ‘apache’;
mysql> create table users( user_name char(30) NOT NULL, [...]

This howto will show you howto store your users in LDAP and authenticate some of the services against it. I will not show howto install particular packages, as it is distribution/system dependant. I will focus on “pure” configuration of all componenets needed to have LDAP authentication/storage of users.

TYPES OF MYSQL REPLICATION

*

Statement-based Replication
*

Row-based Replication
*

Mixed

To change the type of Replication modify my.cnf configuration file and change


Recent Posts