From: Tony S. <tsh...@os...> - 2007-04-14 05:08:49
|
Well, I did that, did a make clean, make, make install, umount /dev/fuse0, and then mount_fusefs /dev/fuse0 /mysqlfs mysqlfs -ohost=localhost -ouser=mysqlfs -opassword=mysqlfs -odatabase=mysqlfs, I get the exact some result, and still nothing in the mysqlfs.log file. ??? Michal Ludvig wrote: > Tony Shadwick wrote: >> I'm still trying to debug this...I turned on verbose logging of mysql, >> hoping to find the answer to what's going on, but I'm afraid the logs >> are somewhat greek to me: >> >> manager# cd /mysqlfs/ >> manager# touch new >> touch: new: No such file or directory >> manager# cat /var/log/mysql.log >> /usr/local/libexec/mysqld, Version: 5.0.37-log (FreeBSD port: >> mysql-server-5.0.37). started with: > > Turn on MySQLfs logging instead. > > On the top of log.c it reads: > > //int log_types_mask = LOG_ERROR | LOG_INFO | LOG_DEBUG; > int log_types_mask = LOG_ERROR | LOG_INFO; > //int log_debug_mask = LOG_D_CALL | LOG_D_SQL | LOG_D_OTHER; > //int log_debug_mask = LOG_D_CALL; > int log_debug_mask = 0; > > Instead make it: > > int log_types_mask = LOG_ERROR | LOG_INFO | LOG_DEBUG; > //int log_types_mask = LOG_ERROR | LOG_INFO; > int log_debug_mask = LOG_D_CALL | LOG_D_SQL | LOG_D_OTHER; > //int log_debug_mask = LOG_D_CALL; > //int log_debug_mask = 0; > > Yes I know this should be a command line switch and not a compile time > setting ;-) > > Michal > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share your > opinions on IT & business topics through brief surveys-and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > Mysqlfs-general mailing list > Mys...@li... > https://lists.sourceforge.net/lists/listinfo/mysqlfs-general |