I am using MariaDB 5.5.65 with a single-master, multiple-slave replication setup.
Here's a snippet from my.cnf:
binlog_format=ROW
log-bin=/data/mysql/pccodb22-binlog
expire_logs_days=10
max_binlog_size=1024M
server-id = 2
binlog-ignore-db=mysql
Thing is, I forgot to add
binlog-ignore-db=information_schema
binlog-ignore-db=performance_schema
to the config. Is this safe to do with a live replication setup, or do I have to mysqldump --master-data --all-databases all over again?