Skip to main content

Posts

Showing posts from April, 2017

Vacation pictures of my trip to indonesia - pt. 1

On my first trip to Indonesia i was here for almost three weeks and we had the luxury of seeing parts of the country. For a few days we went to Ahmed on Bali, a popular diving spot. Where you can find the liberty wreck. After that we went back to the main island Java, where we went to Batu. In this small town you will find one of the largest Zoo's where you can walk literally for hours.

Managing computers with mcollective

MCollective or 'Marionette Collective ' is a framework to distribute parallel commands to a cluster of computers. You can basicly compare it to remote execution except the framework is organized to work the commands in parallel. Via a simple plugin structure of ruby it is relatively easy to write your own commands. Marionette Collective works on top of a message queue broker, you can pick different flavors for the broker but the most common adoption appears to be activemq. Other brokers such as rabbitmq are supported as well. With MCollective there are basicly two configations 'server' and 'client', contrary to terminology, 'server.cfg' is used for the deamon service. In this configuration file you configure what queue on the broker the deamon connects to receive commands. In the 'server.cfg' you configure the queue on the broker to send the commands. So in short: server.cfg is for the command-line client,  client.cfg is for the deamon proces