I'm trying to connect JIRA Software to a server that already has multiple databases and some of them are on production.
As Atlassian mentioned in their documentation on Connecting JIRA to a Database, I have to change the innodb_log_files_size to be at least 2GB. Changing the log files size means that I need to shutdown mysqld, set the new log files size to 2GB, remove/backup the old files and let mysqld create new ones on start.
I have read that innodb log files includes tables structure and transactions information for the existing tables.
My question is that is it safe to do so on a production environment? Will I have any real-time errors when mysqld start again?
Thanks