Posts

Showing posts with the label management

Searchlight weekly report - Stein R-26

Image
It's been a busy week so there's not much work has been done this week (Stein R26, Oct 08-12). Here is some news from the community this week that somewhat affects the Searchlight project: Assigning new liaisons to projects : basically, the TC will assign who takes care of which project. That person will update on this  page the project's statuses, important activities etc. Proposed changes for library releases : in short, for each cycle-with-intermediary library deliverable, if it was not released during that milestone timeframe, the release team would automatically generate a release request early in the week of the milestone deadline. Proposed changes for cycle-with-milestones deliverables : to summarize the discussion: No longer be required to request a release for each milestone Beta releases would be optional Release candidates would still require a tag. Need PTL or release liaison's "+1" Requiring a person for each team to add their name t...

Manage your RabbitMQ message broker via the web interface

Image
Yes, you heard it right. There's a web interface to manage/monitor your RabbitMQ message broker. And it's buit-in. You just need to enable it: $ sudo rabbitmq-plugins enable rabbitmq_management $ sudo service rabbitmq-server restart Then use your administrator account to login into the web interface at http://localhost:15672 If you don't set up your administrator account yes, you can create it by: $ sudo rabbitmqctl add_user myadmin mypasswd $ sudo rabbitmqctl set_user_tags myadmin administrator $ sudo rabbitmqctl set_permissions -p / myadmin ".*" ".*" ".*" You will see the gorgeous dashboard: References: [0] http://www.rabbitmq.com/management.html [1] http://stackoverflow.com/questions/22850546/cant-access-rabbitmq-web-management-interface-after-fresh-install