Author Archives: Roopendra - Page 10
What’s new in ansible 1.6
Below are the list of new changes , Modules in Ansible Major features/changes in Ansible : The deprecated legacy variable templating system has been finally removed. Use {{ foo }}…
Getting Started with FuelPHP
Getting Started with FuelPHP FuelPHP is a simple, flexible, community driven PHP 5 web framework. It was born out of the frustrations people have with the current available frameworks and…
Writing custom module in ansible
While Writing custom module in ansible in ansible you need to setup ansible ; If you are not aware from it you can follow step by step instruction in my…
Elasticsearch Features
Distributed and Highly Available Search Engine. Each index is fully sharded with a configurable number of shards. Each shard can have one or more replicas. Read / Search operations performed…
Getting started with Elasticsearch
Getting started with Elasticsearch What is Elasticsearch? Elasticsearch is a search server based on Lucene. It provides a distributed, multitenant-capable full-text search engine with a RESTful web interface and schema-free…
Index mysql table into elasticsearch
Index MySQL Data into Elasticsearch This article will demonstrate step by step guideline to index MySQL data into Elasticsearch. Until the Elasticsearch version we have different river was there to…
Variable of variable in ansible playbook
While developing Ansible playbook for my on project I have some one usecase regarding use variable of variable in ansible playbook. So I found some workaround as I described in…
Getting Started with Ansible
Getting Started with Ansible What is Ansible? Ansible is Simple IT automation tools that managing your server infrastructure, Including Code Deploys, Handling services on your remote server, Installations and configurations…
Count matching occurrences in php array
You can Count matching occurrences in php array using php array function array_count_values() Syntax: array array_count_values ( array $array ) array_count_values() returns an array using the values of array as keys…
Validate URL in PHP
You can validate URL in PHP using regular expression or using validate filters Validate URL in PHP using regular expression: Example:- <?php // Write you regular expression pattern to match…