No valid crumb was included in the request Date posted: 18-07-2018 When you work on Jenkins deployment, you might see “No valid crumb was included in the request” error. We can resolve this issue by disable CSRF protection. Fix:- Login to Jenkins  Goto Manage Jenkins >> Configure Global Security >> CSRF Protection… Continue Reading No valid crumb was included in the request | jenkins | Pheonixsolutions

Ansible automation – Logging user-data script output for EC2 Date Posted: 06-10-2017 When you write ansible playbooks, you may want to log the user_data output of EC2 instance launch. To achieve this, add these below codes at the top of your script vi user_data.sh #!/bin/bash -e exec > >(tee /var/log/user-data.log|logger… Continue Reading Ansible automation – Logging user-data script output for EC2

Install Jenkins on Ubuntu 16 Date Posted: 02-07-2017 Jenkins is a deployment application tool which is used for continuous integration and deployment. In this post, we will explain on how to install jenkins on Ubuntu 16. Prerequisites: Ubuntu Host Allow Incoming port 8080. Implementation: Consider this is a fresh ubuntu server… Continue Reading Install Jenkins on Ubuntu 16

Date Posted: 17-03-2017 Docker is a most handy devops tool used nowdays. In this post, we explains few things about docker starts from installation. We tested docker on ubuntu machine. The docker command whatever we deals in the post will be same all linux flavors. Installation and few other command… Continue Reading Overview of Docker|Docker Commands