Friday, February 10, 2017

Openstack Newton on CentOS 7 using packstack




1. Prerequisites

1.1 Hardware requirement 4GB RAM
1.2 $systemctl disable firewalld$systemctl stop firewalld$systemctl disable NetworkManager$systemctl stop NetworkManager$systemctl enable network$systemctl start network

2. Setup software repositories

2.1  yum install -y centos-release-openstack-newton





2.2 update the OS

yum update -y


3. Install packstack





4. Generate the answer file using packstack







5. Edit the answers.txt file and enable the required features..


6. Install openstack using the answer file



7.  Once the installation is complete , login to horizon using http://IP-address/dashboard
u: admin
p: password set for horizon in answer file







Saturday, November 5, 2016

Docker Installation on Fedora 24

Docker Installation on Linux - Fedora 24

1.  Update the fedora packages,

        #  dnf update


2.  Create the docker.repo file and add the following entries;

[dockerrepo]
name=Docker Repository
baseurl=https://yum.dockerproject.org/repo/main/fedora//
enabled=1
gpgcheck=1
gpgkey=https://yum.dockerproject.org/gpg





3. Now install the docker-engine 







4.  Now enable the docker service and start the docker.




5.  To test docker installation,











Docker Installation on Fedora 24

Docker Installation on Linux - Fedora 24

1.  Update the fedora packages,

        #  dnf update


2.  Create the docker.repo file and add the following entries;

[dockerrepo]
name=Docker Repository
baseurl=https://yum.dockerproject.org/repo/main/fedora//
enabled=1
gpgcheck=1
gpgkey=https://yum.dockerproject.org/gpg






3. Now install the docker-engine 




4.  Now enable the docker service and start the docker.



5.  To test docker installation,










Wednesday, October 19, 2016

VMware vcenter 5.5 - single sing on and Active directory Integration


How to add a user/group in ActiveDirectoy to VMware Single Sign on


1. Login to VMware vsphere web client
and go to vcenter servers and select the respective vcenter server and go to that page



2. Go to Manage >> Permissions >> Click "+" to add new user or group



3. Click "Add" button to select the users/groups




 4.  Select the "domain" and using the search tab search for the user/group.
Once selected click "ok" to add.


5. Once completed, you can login to the vcenter using the added AD user.

Note : Assumption is that the server hostname is created and added under the same AD.

Wednesday, October 5, 2016

Puppet module install on puppetmaster


Puppet module install on puppet master from puppetforge online repository.


If your Puppet master server is behind a proxy server, set the following, replacing <PROXY IP> and <PROXY PORT> with the proxy’s IP address and port:

export http_proxy=http://<PROXY IP>:<PROXY PORT>
export https_proxy=http://<PROXY IP>:<PROXY PORT>



  1. To search for a puppet module , run the following command from the puppet master server.
puppet module search < module_name >

eg: 

puppet module search apache






 2. To  install the puppet module from the search result

puppet module install puppetlabs-apache



3.  The installed modules file can be found in the location /etc/puppetlabs/code/environments/production/modules/ [for puppet enterprise edition]




Tuesday, July 26, 2016

splunk installation on windows




1. Go to the splunk.com and download the Splunk Enterprise package for windows


2.  Click on the windows tab to download the windows installer




3.  Click on the  .msi file to start the installation

4. When the installation window opens , click on the install tab to start the installation




5. installation in progress






 6. Once installation is complete, start the splunk
      go to  http://<ipaddress>:8001/ to access the splunk





7.  To start from command prompt,

 go C:\Program Files\Splunk\bin

and run the command,
                               
                              splunk start






Tuesday, July 5, 2016

Install python xlrd package in windows


1. Download the xlrd  .tar.gz package from
https://pypi.python.org/pypi/xlrd


2. Unzip and untar the file and go to the location where the setup.py file is location and run the command to install xlrd package

               python setup.py install