--
You received this message because you are subscribed to the Google Groups "rabbitmq-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rabbitmq-user...@googlegroups.com.
To post to this group, send email to rabbitm...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "rabbitmq-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rabbitmq-user...@googlegroups.com.
To post to this group, send email to rabbitm...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
$ rabbitmqctl eval 'init:get_argument(config).'
error--
You received this message because you are subscribed to the Google Groups "rabbitmq-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rabbitmq-user...@googlegroups.com.
To post to this group, send email to rabbitm...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "rabbitmq-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rabbitmq-user...@googlegroups.com.
To post to this group, send email to rabbitm...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Now, when I run `rabbitmqctl eval 'case init:get_argument(config) of error -> "none"; {ok, [Paths]} -> hd(Paths) end.'` on my own dev laptop, it indeed returns "none".However, the Management web GUI displays "Config file /usr/local/etc/rabbitmq/rabbitmq.config (not found)", so somehow it knows the path "/usr/local/etc/rabbitmq/rabbitmq.config", even though the file hasn't been created. I need to be able to get this path ("/usr/local/etc/rabbitmq/rabbitmq.config" in the case of my dev laptop) instead of "none", just like Management web GUI gets it.
--
You received this message because you are subscribed to the Google Groups "rabbitmq-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rabbitmq-user...@googlegroups.com.
To post to this group, send email to rabbitm...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Many thanks Michael! I ran on my OS X machine: rabbitmqctl eval 'rabbit:config_files().' and got this result ["/usr/local/etc/rabbitmq/rabbitmq.config (not found)"]The plural name rabbit:config_files would seem to imply that this function might return more than one config file path in the array? How is this possible? Can there really be more than one rabbitmq.config file?
--
You received this message because you are subscribed to the Google Groups "rabbitmq-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rabbitmq-user...@googlegroups.com.
To post to this group, send email to rabbitm...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
[{Application, [{Par, Val}]} | File].Thank you. I am guessing that the multiple config files might be the result of the extended sys.config syntax that permits additional config files to be specified in sys.config per http://erlang.org/doc/man/config.html? E.g.,[{Application, [{Par, Val}]} | File].
--
You received this message because you are subscribed to the Google Groups "rabbitmq-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rabbitmq-user...@googlegroups.com.
To post to this group, send email to rabbitm...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.