I have RabbitMQ running on my test server. The log file has grown into 20 GB and i would like to clear it. I even have a scheduler to delete it timely but it is not working due to below issue.
Issue: If i delete the log file either manually or via a scheudled script, the file automatically gets restored. How do i get this fixed?
Rabbitmq.Config file looks like below,
[
{rabbit, [
{ssl_listeners, [1111]},
{ssl_options, [{cacertfile,"D:\\RabbitMQ Server\\Certs\\certname.cer"},
{certfile,"D:\\RabbitMQ Server\\Certs\\cer_cername_host.cer"},
{keyfile,"D:\\RabbitMQ Server\\Certs\\cer_cername_host.pfx"},
{verify,verify_peer},
{fail_if_no_peer_cert,false}]}
]}
].