Monkey HTTP Daemon - mod_mysql ------------------------------ To give MySQL Support to Monkey you must follow the next steps: 1) Configure monkey with MySQL support: # ./configure --load-mod_mysql 2) Compile # make 3) Create a Database for monkey in MySQL Server: # mysqladmin create monkey_logs -u root -p 4) Create struct monkey database in MySQL Server: # mysql monkey_logs < mysql.sql -u root -p 5) Edit conf/modules.conf and add the next text: Enabled Yes User user Password user_password DBname database_name For security reasons i recommend create another user to mysql_logs database in MySQL, it's not good idea use root user for all. Ed.-