I am trying to have mysql transaction logging goto a script and the from the script I am writing the file to two locations (one mapped remote) for basic redundancy and possibly for extension/specialized parsing later.
With some applications I am able to use a pipe to the script i.e. --log="|/usr/local/bin/processScript"
MySQL however complains it is not able to find the file even with 755 permissions on the script.
I have also looked at FIFO files but I am not sure if they can do what I want to do. I really don't want to use any form of polling system.
Any ideas on what might be going on, or how to achieve this?