Hi Steve,
Yeah, it's important to let us know you're using Windows! You need to log in as the administrative user you used to install RabbitMQ. Then, as that user, create the %AppData%\RabbitMQ\rabbitmq-env-conf.bat file with this content:
set SERVER_ADDITIONAL_ERL_ARGS=-mnesia dc_dump_limit VALUE -mnesia dump_log_write_threshold VALUE -mnesia dump_log_time_threshold VALUE
Then, open the "RabbitMQ Command Prompt (sbin dir)" start menu item and run these commands in the shell that comes up:
.\rabbitmq-service.bat stop
.\rabbitmq-service.bat remove
.\rabbitmq-service.bat install
.\rabbitmq-service.bat start
After RabbitMQ starts, you can confirm settings this way:
.\rabbitmqctl.bat eval "application:get_env(mnesia, dc_dump_limit)."
It should show the VALUE from the configuration file. Repeat for each setting you customize.
Let me know how this process works.
Thanks,
Luke