Installing Chef Standalone Server

The following example will focus on standalone installation of Chef Server. Firstly, we will need to download the Chef Server package from http://downloads.chef.io/chef-server/ to which I will be installing the package on an Ubuntu Linux 14.04 operating system. Once the package is downloaded I uploaded the package to the standalone server and installed the package from the … More Installing Chef Standalone Server

Install RabbitMQ Server On Ubuntu

Add the following entry to /etc/apt/sources.list to use the RabbitMQ repository: deb http://www.rabbitmq.com/debian/ testing main To remove warnings about unsigned packages add the RabbitMQ public key to the trusted key list: wget http://www.rabbitmq.com/rabbitmq-signing-key-public.asc sudo apt-key add rabbitmq-signing-key-public.asc Update the respoitories and install RabbitMQ: sudo apt-get update sudo apt-get install rabbitmq-server To confirm the status of … More Install RabbitMQ Server On Ubuntu

Install MongoDB on CentOS

The following details the steps to deploy MongoDB on a CentOS using .rpm packages and basic configuration following deployment. For deploying MongoDB on alternative platforms, check  http://docs.mongodb.org/manual/installation/ for deployment steps. First of all we will need to configure the package management system to hold the configuration information for the MongoDB repository: by creating the following file … More Install MongoDB on CentOS