Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Install VirtualBox from: https://www.virtualbox.org/wiki/Downloads or Vmware Player/workstation from : http://www.vmware.com/products/
  2. Download the Centos ISO From: http://centos.org/
  3. After you have installed VirtualBox or Vmware Create a New Host and Load the ISO. If you require further steps on how to install CENTOS Go here : http://www.tecmint.com/centos-6-3-step-by-step-installation-guide-with-screenshots/
  4. During the installation process Stop at the Filesystem Page. In this section instead of using LVM's you will have to create standard partitions for the application and data storage part. You can still use a LVM for the root dir.
    A. Create two standard partitions one will have the application files and logs and the other will host the data.(Screenshots soon)
    B. The other partition can be the LVM for the / and /home. (Later on you will need to change the location of the logs from /var/log to the standard partitions.)
  5. Finish Installing the OS.
  6. log-in to your vm and modify /etc/hosts so your can resolve hostnames for the VM's.

    Code Block
    vim /etc/hosts and add the hostname and ip. You will need to modify this later on to add the extra nodes.
    
  7. Turn iptables off during boot.

    Code Block
    chkconfig iptables off
    
  8. Turn selinux off.

    Code Block
    vim /selinux/config and change 'SELINUX=enforcing' to 'disable'
  9. (Optional) Update CENTOS to the latest packages. I do this part due to security concerns. If you do not want to update the whole host then at least update openssl to the latest package. It can cause issues if using an older version.