I am using the following command to start reading mysqlbinlog.
mysqlbinlog -t -v -v --base64-output=DECODE-ROWS -h my_host -ppasswd -R mysql-bin.000960 -j 1052323996
I would expect the output to continue to the next log file, since I am using -t
, but mysqlbinlog
just exits.
How can I make this command continue to output log entries, like a tail -f
would?
Thank you